aboutsummaryrefslogtreecommitdiffstats
path: root/net/rds/ib_recv.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2015-08-25 15:54:25 -0700
committerDavid S. Miller <davem@davemloft.net>2015-08-25 15:54:25 -0700
commitb01d04aa511b78c795dd258bf8689a421a6b4d0c (patch)
treede812b2ad7abbb936667431c52144a53d3666a37 /net/rds/ib_recv.c
parentMAINTAINERS: update vmxnet3 driver maintainer (diff)
downloadlinux-dev-b01d04aa511b78c795dd258bf8689a421a6b4d0c.tar.xz
linux-dev-b01d04aa511b78c795dd258bf8689a421a6b4d0c.zip
rds: Fix improper gfp_t usage.
>> net/rds/ib_recv.c:382:28: sparse: incorrect type in initializer (different base types) net/rds/ib_recv.c:382:28: expected int [signed] can_wait net/rds/ib_recv.c:382:28: got restricted gfp_t net/rds/ib_recv.c:828:23: sparse: cast to restricted __le64 Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds/ib_recv.c')
-rw-r--r--net/rds/ib_recv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rds/ib_recv.c b/net/rds/ib_recv.c
index 3afdcbdd06b4..ed9b41e3b277 100644
--- a/net/rds/ib_recv.c
+++ b/net/rds/ib_recv.c
@@ -379,7 +379,7 @@ void rds_ib_recv_refill(struct rds_connection *conn, int prefill, gfp_t gfp)
struct ib_recv_wr *failed_wr;
unsigned int posted = 0;
int ret = 0;
- int can_wait = gfp & __GFP_WAIT;
+ bool can_wait = !!(gfp & __GFP_WAIT);
u32 pos;
/* the goal here is to just make sure that someone, somewhere