diff options
author | Trond Myklebust <trond.myklebust@hammerspace.com> | 2022-03-21 18:20:16 +0100 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2022-03-22 20:52:55 +0100 |
commit | b2648015d4521de21ed3c9f48f718e023860b8c1 (patch) | |
tree | 4db55ad16bcc7d9dab2670bf0743a7b664a49de0 /net/sunrpc/socklib.c | |
parent | SUNRPC: Fix unx_lookup_cred() allocation (diff) | |
download | linux-b2648015d4521de21ed3c9f48f718e023860b8c1.tar.xz linux-b2648015d4521de21ed3c9f48f718e023860b8c1.zip |
SUNRPC: Make the rpciod and xprtiod slab allocation modes consistent
Make sure that rpciod and xprtiod are always using the same slab
allocation modes.
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'net/sunrpc/socklib.c')
-rw-r--r-- | net/sunrpc/socklib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sunrpc/socklib.c b/net/sunrpc/socklib.c index d52313af82bc..05b38bf68316 100644 --- a/net/sunrpc/socklib.c +++ b/net/sunrpc/socklib.c @@ -15,6 +15,7 @@ #include <linux/pagemap.h> #include <linux/udp.h> #include <linux/sunrpc/msg_prot.h> +#include <linux/sunrpc/sched.h> #include <linux/sunrpc/xdr.h> #include <linux/export.h> @@ -222,7 +223,7 @@ static int xprt_send_pagedata(struct socket *sock, struct msghdr *msg, { int err; - err = xdr_alloc_bvec(xdr, GFP_KERNEL); + err = xdr_alloc_bvec(xdr, rpc_task_gfp_mask()); if (err < 0) return err; |