Loading fs/nfsd/nfsproc.c +1 −2 Original line number Diff line number Diff line Loading @@ -595,8 +595,7 @@ nfsd_proc_readdir(struct svc_rqst *rqstp) &resp->common, nfssvc_encode_entry); resp->count = resp->buffer - buffer; if (resp->offset) *resp->offset = htonl(offset); nfssvc_encode_nfscookie(resp, offset); fh_put(&argp->fh); return rpc_success; Loading fs/nfsd/nfsxdr.c +16 −2 Original line number Diff line number Diff line Loading @@ -614,6 +614,21 @@ nfssvc_encode_statfsres(struct svc_rqst *rqstp, __be32 *p) return 1; } /** * nfssvc_encode_nfscookie - Encode a directory offset cookie * @resp: readdir result context * @offset: offset cookie to encode * */ void nfssvc_encode_nfscookie(struct nfsd_readdirres *resp, u32 offset) { if (!resp->offset) return; *resp->offset = cpu_to_be32(offset); resp->offset = NULL; } int nfssvc_encode_entry(void *ccdv, const char *name, int namlen, loff_t offset, u64 ino, unsigned int d_type) Loading @@ -632,8 +647,7 @@ nfssvc_encode_entry(void *ccdv, const char *name, cd->common.err = nfserr_fbig; return -EINVAL; } if (cd->offset) *cd->offset = htonl(offset); nfssvc_encode_nfscookie(cd, offset); /* truncate filename */ namlen = min(namlen, NFS2_MAXNAMLEN); Loading fs/nfsd/xdr.h +1 −0 Original line number Diff line number Diff line Loading @@ -157,6 +157,7 @@ int nfssvc_encode_readres(struct svc_rqst *, __be32 *); int nfssvc_encode_statfsres(struct svc_rqst *, __be32 *); int nfssvc_encode_readdirres(struct svc_rqst *, __be32 *); void nfssvc_encode_nfscookie(struct nfsd_readdirres *resp, u32 offset); int nfssvc_encode_entry(void *, const char *name, int namlen, loff_t offset, u64 ino, unsigned int); Loading Loading
fs/nfsd/nfsproc.c +1 −2 Original line number Diff line number Diff line Loading @@ -595,8 +595,7 @@ nfsd_proc_readdir(struct svc_rqst *rqstp) &resp->common, nfssvc_encode_entry); resp->count = resp->buffer - buffer; if (resp->offset) *resp->offset = htonl(offset); nfssvc_encode_nfscookie(resp, offset); fh_put(&argp->fh); return rpc_success; Loading
fs/nfsd/nfsxdr.c +16 −2 Original line number Diff line number Diff line Loading @@ -614,6 +614,21 @@ nfssvc_encode_statfsres(struct svc_rqst *rqstp, __be32 *p) return 1; } /** * nfssvc_encode_nfscookie - Encode a directory offset cookie * @resp: readdir result context * @offset: offset cookie to encode * */ void nfssvc_encode_nfscookie(struct nfsd_readdirres *resp, u32 offset) { if (!resp->offset) return; *resp->offset = cpu_to_be32(offset); resp->offset = NULL; } int nfssvc_encode_entry(void *ccdv, const char *name, int namlen, loff_t offset, u64 ino, unsigned int d_type) Loading @@ -632,8 +647,7 @@ nfssvc_encode_entry(void *ccdv, const char *name, cd->common.err = nfserr_fbig; return -EINVAL; } if (cd->offset) *cd->offset = htonl(offset); nfssvc_encode_nfscookie(cd, offset); /* truncate filename */ namlen = min(namlen, NFS2_MAXNAMLEN); Loading
fs/nfsd/xdr.h +1 −0 Original line number Diff line number Diff line Loading @@ -157,6 +157,7 @@ int nfssvc_encode_readres(struct svc_rqst *, __be32 *); int nfssvc_encode_statfsres(struct svc_rqst *, __be32 *); int nfssvc_encode_readdirres(struct svc_rqst *, __be32 *); void nfssvc_encode_nfscookie(struct nfsd_readdirres *resp, u32 offset); int nfssvc_encode_entry(void *, const char *name, int namlen, loff_t offset, u64 ino, unsigned int); Loading