diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/nfsd/xdr.h | 12 | ||||
| -rw-r--r-- | include/linux/nfsd/xdr3.h | 14 |
2 files changed, 13 insertions, 13 deletions
diff --git a/include/linux/nfsd/xdr.h b/include/linux/nfsd/xdr.h index 67885d5e6e50..49ddf7903b92 100644 --- a/include/linux/nfsd/xdr.h +++ b/include/linux/nfsd/xdr.h | |||
| @@ -23,7 +23,7 @@ struct nfsd_sattrargs { | |||
| 23 | struct nfsd_diropargs { | 23 | struct nfsd_diropargs { |
| 24 | struct svc_fh fh; | 24 | struct svc_fh fh; |
| 25 | char * name; | 25 | char * name; |
| 26 | int len; | 26 | unsigned int len; |
| 27 | }; | 27 | }; |
| 28 | 28 | ||
| 29 | struct nfsd_readargs { | 29 | struct nfsd_readargs { |
| @@ -43,17 +43,17 @@ struct nfsd_writeargs { | |||
| 43 | struct nfsd_createargs { | 43 | struct nfsd_createargs { |
| 44 | struct svc_fh fh; | 44 | struct svc_fh fh; |
| 45 | char * name; | 45 | char * name; |
| 46 | int len; | 46 | unsigned int len; |
| 47 | struct iattr attrs; | 47 | struct iattr attrs; |
| 48 | }; | 48 | }; |
| 49 | 49 | ||
| 50 | struct nfsd_renameargs { | 50 | struct nfsd_renameargs { |
| 51 | struct svc_fh ffh; | 51 | struct svc_fh ffh; |
| 52 | char * fname; | 52 | char * fname; |
| 53 | int flen; | 53 | unsigned int flen; |
| 54 | struct svc_fh tfh; | 54 | struct svc_fh tfh; |
| 55 | char * tname; | 55 | char * tname; |
| 56 | int tlen; | 56 | unsigned int tlen; |
| 57 | }; | 57 | }; |
| 58 | 58 | ||
| 59 | struct nfsd_readlinkargs { | 59 | struct nfsd_readlinkargs { |
| @@ -65,13 +65,13 @@ struct nfsd_linkargs { | |||
| 65 | struct svc_fh ffh; | 65 | struct svc_fh ffh; |
| 66 | struct svc_fh tfh; | 66 | struct svc_fh tfh; |
| 67 | char * tname; | 67 | char * tname; |
| 68 | int tlen; | 68 | unsigned int tlen; |
| 69 | }; | 69 | }; |
| 70 | 70 | ||
| 71 | struct nfsd_symlinkargs { | 71 | struct nfsd_symlinkargs { |
| 72 | struct svc_fh ffh; | 72 | struct svc_fh ffh; |
| 73 | char * fname; | 73 | char * fname; |
| 74 | int flen; | 74 | unsigned int flen; |
| 75 | char * tname; | 75 | char * tname; |
| 76 | int tlen; | 76 | int tlen; |
| 77 | struct iattr attrs; | 77 | struct iattr attrs; |
diff --git a/include/linux/nfsd/xdr3.h b/include/linux/nfsd/xdr3.h index 89d9d6061a62..6fdb958043f0 100644 --- a/include/linux/nfsd/xdr3.h +++ b/include/linux/nfsd/xdr3.h | |||
| @@ -21,7 +21,7 @@ struct nfsd3_sattrargs { | |||
| 21 | struct nfsd3_diropargs { | 21 | struct nfsd3_diropargs { |
| 22 | struct svc_fh fh; | 22 | struct svc_fh fh; |
| 23 | char * name; | 23 | char * name; |
| 24 | int len; | 24 | unsigned int len; |
| 25 | }; | 25 | }; |
| 26 | 26 | ||
| 27 | struct nfsd3_accessargs { | 27 | struct nfsd3_accessargs { |
| @@ -48,7 +48,7 @@ struct nfsd3_writeargs { | |||
| 48 | struct nfsd3_createargs { | 48 | struct nfsd3_createargs { |
| 49 | struct svc_fh fh; | 49 | struct svc_fh fh; |
| 50 | char * name; | 50 | char * name; |
| 51 | int len; | 51 | unsigned int len; |
| 52 | int createmode; | 52 | int createmode; |
| 53 | struct iattr attrs; | 53 | struct iattr attrs; |
| 54 | __be32 * verf; | 54 | __be32 * verf; |
| @@ -57,7 +57,7 @@ struct nfsd3_createargs { | |||
| 57 | struct nfsd3_mknodargs { | 57 | struct nfsd3_mknodargs { |
| 58 | struct svc_fh fh; | 58 | struct svc_fh fh; |
| 59 | char * name; | 59 | char * name; |
| 60 | int len; | 60 | unsigned int len; |
| 61 | __u32 ftype; | 61 | __u32 ftype; |
| 62 | __u32 major, minor; | 62 | __u32 major, minor; |
| 63 | struct iattr attrs; | 63 | struct iattr attrs; |
| @@ -66,10 +66,10 @@ struct nfsd3_mknodargs { | |||
| 66 | struct nfsd3_renameargs { | 66 | struct nfsd3_renameargs { |
| 67 | struct svc_fh ffh; | 67 | struct svc_fh ffh; |
| 68 | char * fname; | 68 | char * fname; |
| 69 | int flen; | 69 | unsigned int flen; |
| 70 | struct svc_fh tfh; | 70 | struct svc_fh tfh; |
| 71 | char * tname; | 71 | char * tname; |
| 72 | int tlen; | 72 | unsigned int tlen; |
| 73 | }; | 73 | }; |
| 74 | 74 | ||
| 75 | struct nfsd3_readlinkargs { | 75 | struct nfsd3_readlinkargs { |
| @@ -81,13 +81,13 @@ struct nfsd3_linkargs { | |||
| 81 | struct svc_fh ffh; | 81 | struct svc_fh ffh; |
| 82 | struct svc_fh tfh; | 82 | struct svc_fh tfh; |
| 83 | char * tname; | 83 | char * tname; |
| 84 | int tlen; | 84 | unsigned int tlen; |
| 85 | }; | 85 | }; |
| 86 | 86 | ||
| 87 | struct nfsd3_symlinkargs { | 87 | struct nfsd3_symlinkargs { |
| 88 | struct svc_fh ffh; | 88 | struct svc_fh ffh; |
| 89 | char * fname; | 89 | char * fname; |
| 90 | int flen; | 90 | unsigned int flen; |
| 91 | char * tname; | 91 | char * tname; |
| 92 | int tlen; | 92 | int tlen; |
| 93 | struct iattr attrs; | 93 | struct iattr attrs; |
