Commit 46442b85 authored by Trond Myklebust's avatar Trond Myklebust
Browse files

SUNRPC/xprtrdma: Convert GFP_NOFS to GFP_KERNEL



Assume that the upper layers have set memalloc_nofs_save/restore as
appropriate.

Signed-off-by: default avatarTrond Myklebust <trond.myklebust@hammerspace.com>
parent 4c2883e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -130,7 +130,7 @@ int frwr_mr_init(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mr *mr)
	if (IS_ERR(frmr))
		goto out_mr_err;

	sg = kmalloc_array(depth, sizeof(*sg), GFP_NOFS);
	sg = kmalloc_array(depth, sizeof(*sg), GFP_KERNEL);
	if (!sg)
		goto out_list_err;

+2 −2
Original line number Diff line number Diff line
@@ -373,7 +373,7 @@ static int rpcrdma_ep_create(struct rpcrdma_xprt *r_xprt)
	struct rpcrdma_ep *ep;
	int rc;

	ep = kzalloc(sizeof(*ep), GFP_NOFS);
	ep = kzalloc(sizeof(*ep), GFP_KERNEL);
	if (!ep)
		return -ENOTCONN;
	ep->re_xprt = &r_xprt->rx_xprt;
@@ -746,7 +746,7 @@ rpcrdma_mrs_create(struct rpcrdma_xprt *r_xprt)
		struct rpcrdma_mr *mr;
		int rc;

		mr = kzalloc(sizeof(*mr), GFP_NOFS);
		mr = kzalloc(sizeof(*mr), GFP_KERNEL);
		if (!mr)
			break;