diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2020-10-23 21:41:09 +0200 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2021-03-22 15:18:58 +0100 |
commit | d9014b0f8fae11f22a3d356553844e06ddcdce4a (patch) | |
tree | 2a4c9ce617b3c41efc00d2e153cbdc8b37d8d42a /fs/nfsd/nfsproc.c | |
parent | NFSD: Update the NFSv2 diropres encoder to use struct xdr_stream (diff) | |
download | linux-d9014b0f8fae11f22a3d356553844e06ddcdce4a.tar.xz linux-d9014b0f8fae11f22a3d356553844e06ddcdce4a.zip |
NFSD: Update the NFSv2 READLINK result encoder to use struct xdr_stream
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'fs/nfsd/nfsproc.c')
-rw-r--r-- | fs/nfsd/nfsproc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/nfsd/nfsproc.c b/fs/nfsd/nfsproc.c index 2ae6409ee39e..f55080482997 100644 --- a/fs/nfsd/nfsproc.c +++ b/fs/nfsd/nfsproc.c @@ -151,13 +151,14 @@ nfsd_proc_readlink(struct svc_rqst *rqstp) { struct nfsd_fhandle *argp = rqstp->rq_argp; struct nfsd_readlinkres *resp = rqstp->rq_resp; - char *buffer = page_address(*(rqstp->rq_next_page++)); dprintk("nfsd: READLINK %s\n", SVCFH_fmt(&argp->fh)); /* Read the symlink. */ resp->len = NFS_MAXPATHLEN; - resp->status = nfsd_readlink(rqstp, &argp->fh, buffer, &resp->len); + resp->page = *(rqstp->rq_next_page++); + resp->status = nfsd_readlink(rqstp, &argp->fh, + page_address(resp->page), &resp->len); fh_put(&argp->fh); return rpc_success; |