On Tue, 2010-01-26 at 20:49 -0500, andros@xxxxxxxxxx wrote: > From: Andy Adamson <andros@xxxxxxxxxx> > > Signed-off-by: Andy Adamson <andros@xxxxxxxxxx> > --- > net/sunrpc/svc.c | 6 ++++++ > 1 files changed, 6 insertions(+), 0 deletions(-) > > diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c > index 538ca43..c9991e8 100644 > --- a/net/sunrpc/svc.c > +++ b/net/sunrpc/svc.c > @@ -506,6 +506,12 @@ svc_init_buffer(struct svc_rqst *rqstp, unsigned int size) > { > unsigned int pages, arghi; > > +#if defined(CONFIG_NFS_V4_1) > + /* bc_xprt uses fore channel allocated buffers */ > + if (rqstp->rq_server->bc_xprt) > + return 1; > +#endif /* CONFIG_NFS_V4_1 */ > + > pages = size / PAGE_SIZE + 1; /* extra page as we hold both request and reply. > * We assume one is at most one page > */ Can we replace this with a 'svc_is_backchannel(rqstp->rq_server)' type of test? That would make it a bit easier on the eyes. -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html