pnfs: defer release of pages in layoutget
authorIdan Kedar <idank@tonian.com>
Thu, 2 Aug 2012 08:47:10 +0000 (11:47 +0300)
committerBen Hutchings <ben@decadent.org.uk>
Wed, 12 Sep 2012 02:36:50 +0000 (03:36 +0100)
commit01bc11a7721b979abfbff0539084318c52444db4
tree43e3bc27c576d90ac33e7f4d7b9cebdd6e03e6f6
parent6af55b4401610228dec74fa2c1c3add42f71e038
pnfs: defer release of pages in layoutget

commit 8554116e17eef055d9dd58a94b3427cb2ad1c317 upstream.

we have encountered a bug whereby reading a lot of files (copying
fedora's /bin) from a pNFS mount and hitting Ctrl+C in the middle caused
a general protection fault in xdr_shrink_bufhead. this function is
called when decoding the response from LAYOUTGET. the decoding is done
by a worker thread, and the caller of LAYOUTGET waits for the worker
thread to complete.

hitting Ctrl+C caused the synchronous wait to end and the next thing the
caller does is to free the pages, so when the worker thread calls
xdr_shrink_bufhead, the pages are gone. therefore, the cleanup of these
pages has been moved to nfs4_layoutget_release.

Signed-off-by: Idan Kedar <idank@tonian.com>
Signed-off-by: Benny Halevy <bhalevy@tonian.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
fs/nfs/nfs4proc.c
fs/nfs/pnfs.c
fs/nfs/pnfs.h