| .. | .. |
|---|
| 14 | 14 | struct svc_fh fh; |
|---|
| 15 | 15 | struct iattr attrs; |
|---|
| 16 | 16 | int check_guard; |
|---|
| 17 | | - time_t guardtime; |
|---|
| 17 | + time64_t guardtime; |
|---|
| 18 | 18 | }; |
|---|
| 19 | 19 | |
|---|
| 20 | 20 | struct nfsd3_diropargs { |
|---|
| .. | .. |
|---|
| 151 | 151 | __be32 status; |
|---|
| 152 | 152 | struct svc_fh fh; |
|---|
| 153 | 153 | unsigned long count; |
|---|
| 154 | | - int eof; |
|---|
| 154 | + __u32 eof; |
|---|
| 155 | 155 | }; |
|---|
| 156 | 156 | |
|---|
| 157 | 157 | struct nfsd3_writeres { |
|---|
| .. | .. |
|---|
| 159 | 159 | struct svc_fh fh; |
|---|
| 160 | 160 | unsigned long count; |
|---|
| 161 | 161 | int committed; |
|---|
| 162 | + __be32 verf[2]; |
|---|
| 162 | 163 | }; |
|---|
| 163 | 164 | |
|---|
| 164 | 165 | struct nfsd3_renameres { |
|---|
| .. | .. |
|---|
| 223 | 224 | struct nfsd3_commitres { |
|---|
| 224 | 225 | __be32 status; |
|---|
| 225 | 226 | struct svc_fh fh; |
|---|
| 227 | + __be32 verf[2]; |
|---|
| 226 | 228 | }; |
|---|
| 227 | 229 | |
|---|
| 228 | 230 | struct nfsd3_getaclres { |
|---|
| .. | .. |
|---|
| 271 | 273 | |
|---|
| 272 | 274 | #define NFS3_SVC_XDRSIZE sizeof(union nfsd3_xdrstore) |
|---|
| 273 | 275 | |
|---|
| 276 | +int nfs3svc_decode_voidarg(struct svc_rqst *, __be32 *); |
|---|
| 274 | 277 | int nfs3svc_decode_fhandle(struct svc_rqst *, __be32 *); |
|---|
| 275 | 278 | int nfs3svc_decode_sattrargs(struct svc_rqst *, __be32 *); |
|---|
| 276 | 279 | int nfs3svc_decode_diropargs(struct svc_rqst *, __be32 *); |
|---|