diff options
author | David S. Miller <davem@davemloft.net> | 2015-08-25 18:54:25 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-08-25 18:54:25 -0400 |
commit | b01d04aa511b78c795dd258bf8689a421a6b4d0c (patch) | |
tree | de812b2ad7abbb936667431c52144a53d3666a37 /net/rds | |
parent | 04e1b7341dc33abe4dd3f761e2e9137701e55684 (diff) |
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')
-rw-r--r-- | net/rds/ib_recv.c | 2 |
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) | |||
379 | struct ib_recv_wr *failed_wr; | 379 | struct ib_recv_wr *failed_wr; |
380 | unsigned int posted = 0; | 380 | unsigned int posted = 0; |
381 | int ret = 0; | 381 | int ret = 0; |
382 | int can_wait = gfp & __GFP_WAIT; | 382 | bool can_wait = !!(gfp & __GFP_WAIT); |
383 | u32 pos; | 383 | u32 pos; |
384 | 384 | ||
385 | /* the goal here is to just make sure that someone, somewhere | 385 | /* the goal here is to just make sure that someone, somewhere |