SUNRPC: Eliminate side effects from rpc_malloc
Currently rpc_malloc sets req->rq_buffer internally. Make this a more generic interface: return a pointer to the new buffer (or NULL) and make the caller set req->rq_buffer and req->rq_bufsize. This looks much more like kmalloc and eliminates the side effects. To fix a potential deadlock, this patch also replaces GFP_NOFS with GFP_NOWAIT in rpc_malloc. This prevents async RPCs from sleeping outside the RPC's task scheduler while allocating their buffer. Signed-off-by:Chuck Lever <chuck.lever@oracle.com> Signed-off-by:
Trond Myklebust <Trond.Myklebust@netapp.com>
Showing
- include/linux/sunrpc/sched.h 1 addition, 1 deletioninclude/linux/sunrpc/sched.h
- include/linux/sunrpc/xprt.h 1 addition, 1 deletioninclude/linux/sunrpc/xprt.h
- net/sunrpc/clnt.c 2 additions, 1 deletionnet/sunrpc/clnt.c
- net/sunrpc/sched.c 34 additions, 31 deletionsnet/sunrpc/sched.c
- net/sunrpc/xprt.c 1 addition, 1 deletionnet/sunrpc/xprt.c
Loading
Please register or sign in to comment