diff options
author | J. Bruce Fields <bfields@redhat.com> | 2013-11-19 17:32:43 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2013-11-19 18:06:54 -0500 |
commit | 365da4adebb1c012febf81019ad3dc5bb52e2a13 (patch) | |
tree | f538139477c4104f66321c0446e57332fed6289c /fs | |
parent | 987da4791052fa298b7cfcde4dea9f6f2bbc786b (diff) |
nfsd4: fix xdr decoding of large non-write compounds
This fixes a regression from 247500820ebd02ad87525db5d9b199e5b66f6636
"nfsd4: fix decoding of compounds across page boundaries". The previous
code was correct: argp->pagelist is initialized in
nfs4svc_deocde_compoundargs to rqstp->rq_arg.pages, and is therefore a
pointer to the page *after* the page we are currently decoding.
The reason that patch nevertheless fixed a problem with decoding
compounds containing write was a bug in the write decoding introduced by
5a80a54d21c96590d013378d8c5f65f879451ab4 "nfsd4: reorganize write
decoding", after which write decoding no longer adhered to the rule that
argp->pagelist point to the next page.
Cc: stable@vger.kernel.org
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfsd/nfs4xdr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index 088de1355e93..ee7237f99f54 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c | |||
@@ -141,8 +141,8 @@ xdr_error: \ | |||
141 | 141 | ||
142 | static void next_decode_page(struct nfsd4_compoundargs *argp) | 142 | static void next_decode_page(struct nfsd4_compoundargs *argp) |
143 | { | 143 | { |
144 | argp->pagelist++; | ||
145 | argp->p = page_address(argp->pagelist[0]); | 144 | argp->p = page_address(argp->pagelist[0]); |
145 | argp->pagelist++; | ||
146 | if (argp->pagelen < PAGE_SIZE) { | 146 | if (argp->pagelen < PAGE_SIZE) { |
147 | argp->end = argp->p + (argp->pagelen>>2); | 147 | argp->end = argp->p + (argp->pagelen>>2); |
148 | argp->pagelen = 0; | 148 | argp->pagelen = 0; |
@@ -1229,6 +1229,7 @@ nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write) | |||
1229 | len -= pages * PAGE_SIZE; | 1229 | len -= pages * PAGE_SIZE; |
1230 | 1230 | ||
1231 | argp->p = (__be32 *)page_address(argp->pagelist[0]); | 1231 | argp->p = (__be32 *)page_address(argp->pagelist[0]); |
1232 | argp->pagelist++; | ||
1232 | argp->end = argp->p + XDR_QUADLEN(PAGE_SIZE); | 1233 | argp->end = argp->p + XDR_QUADLEN(PAGE_SIZE); |
1233 | } | 1234 | } |
1234 | argp->p += XDR_QUADLEN(len); | 1235 | argp->p += XDR_QUADLEN(len); |