diff options
author | NeilBrown <neilb@suse.de> | 2006-10-04 05:16:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 10:55:21 -0400 |
commit | 44c556000a31e8079cfbb9a42a7edb93ca6b589a (patch) | |
tree | cd4ee059c11fb1e30d9ef09d518715d9b329aa8f /fs/nfsd | |
parent | 6b54dae2b0defb30babb0fe87b13463b9f4b2907 (diff) |
[PATCH] knfsd: fix auto-sizing of nfsd request/reply buffers
totalram is measured in pages, not bytes, so PAGE_SHIFT must be used when
trying to find 1/4096 of RAM.
Cc: "J. Bruce Fields" <bfields@fieldses.org>
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/nfssvc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c index 0603baad5426..6fa6340a5fb8 100644 --- a/fs/nfsd/nfssvc.c +++ b/fs/nfsd/nfssvc.c | |||
@@ -209,7 +209,7 @@ int nfsd_create_serv(void) | |||
209 | * Of course, this is only a default. | 209 | * Of course, this is only a default. |
210 | */ | 210 | */ |
211 | nfsd_max_blksize = NFSSVC_MAXBLKSIZE; | 211 | nfsd_max_blksize = NFSSVC_MAXBLKSIZE; |
212 | i.totalram >>= 12; | 212 | i.totalram <<= PAGE_SHIFT - 12; |
213 | while (nfsd_max_blksize > i.totalram && | 213 | while (nfsd_max_blksize > i.totalram && |
214 | nfsd_max_blksize >= 8*1024*2) | 214 | nfsd_max_blksize >= 8*1024*2) |
215 | nfsd_max_blksize /= 2; | 215 | nfsd_max_blksize /= 2; |