[PATCH] knfsd: fix an NFSD bug with full sized, non-page-aligned reads.
commit79dab9e2b79871bdeb3ea23a882884a7a16d4c92
authorNeilBrown <neilb@suse.de>
Thu, 25 Jan 2007 04:35:08 +0000 (25 15:35 +1100)
committerChris Wright <chrisw@sous-sol.org>
Mon, 5 Feb 2007 16:31:43 +0000 (5 08:31 -0800)
tree6ab9bb3d797a2c038c53a9fa047dac7625af8158
parent65bd280c3e91096a291b77e5b2eed5a530851de7
[PATCH] knfsd: fix an NFSD bug with full sized, non-page-aligned reads.

NFSd assumes that largest number of pages that will be needed
for a request+response is 2+N where N pages is the size of the largest
permitted read/write request.  The '2' are 1 for the non-data part of
the request, and 1 for the non-data part of the reply.

However, when a read request is not page-aligned, and we choose to use
->sendfile to send it directly from the page cache, we may need N+1
pages to hold the whole reply.  This can overflow and array and cause
an Oops.

This patch increases size of the array for holding pages by one and
makes sure that entry is NULL when it is not in use.

Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
fs/nfsd/vfs.c
include/linux/sunrpc/svc.h
net/sunrpc/svcsock.c