diff options
author | NeilBrown <neilb@suse.de> | 2006-10-04 05:15:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 10:55:15 -0400 |
commit | 3cc03b164cf01c6f36e64720b58610d292fb26f7 (patch) | |
tree | b558e11a087945ad5b9a1a25483aa2acc8d93fbb /include/linux/sunrpc/svc.h | |
parent | 4452435948424e5322c2a2fefbdc2cf3732cc45d (diff) |
[PATCH] knfsd: Avoid excess stack usage in svc_tcp_recvfrom
.. by allocating the array of 'kvec' in 'struct svc_rqst'.
As we plan to increase RPCSVC_MAXPAGES from 8 upto 256, we can no longer
allocate an array of this size on the stack. So we allocate it in 'struct
svc_rqst'.
However svc_rqst contains (indirectly) an array of the same type and size
(actually several, but they are in a union). So rather than waste space, we
move those arrays out of the separately allocated union and into svc_rqst to
share with the kvec moved out of svc_tcp_recvfrom (various arrays are used at
different times, so there is no conflict).
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 'include/linux/sunrpc/svc.h')
-rw-r--r-- | include/linux/sunrpc/svc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h index 3669e91c43b8..cb0ed9beb227 100644 --- a/include/linux/sunrpc/svc.h +++ b/include/linux/sunrpc/svc.h | |||
@@ -192,6 +192,8 @@ struct svc_rqst { | |||
192 | struct page * *rq_respages; /* points into rq_pages */ | 192 | struct page * *rq_respages; /* points into rq_pages */ |
193 | int rq_resused; /* number of pages used for result */ | 193 | int rq_resused; /* number of pages used for result */ |
194 | 194 | ||
195 | struct kvec rq_vec[RPCSVC_MAXPAGES]; /* generally useful.. */ | ||
196 | |||
195 | __be32 rq_xid; /* transmission id */ | 197 | __be32 rq_xid; /* transmission id */ |
196 | u32 rq_prog; /* program number */ | 198 | u32 rq_prog; /* program number */ |
197 | u32 rq_vers; /* program version */ | 199 | u32 rq_vers; /* program version */ |