diff options
author | David S. Miller <davem@davemloft.net> | 2011-03-01 23:19:23 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-01 23:19:23 +0100 |
commit | 420d44daa7aa1cc847e9e527f0a27a9ce61768ca (patch) | |
tree | a5aab8c6b925ba3da1079b7262f7d6c504406eb8 /drivers/infiniband/hw/cxgb4/cm.c | |
parent | ipv4: Can final ip_route_connect() arg to boolean "can_sleep". (diff) | |
download | linux-420d44daa7aa1cc847e9e527f0a27a9ce61768ca.tar.xz linux-420d44daa7aa1cc847e9e527f0a27a9ce61768ca.zip |
ipv4: Make final arg to ip_route_output_flow to be boolean "can_sleep"
Since that is what the current vague "flags" argument means.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/infiniband/hw/cxgb4/cm.c')
-rw-r--r-- | drivers/infiniband/hw/cxgb4/cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c index 8b00e6c46f01..5542c994338d 100644 --- a/drivers/infiniband/hw/cxgb4/cm.c +++ b/drivers/infiniband/hw/cxgb4/cm.c @@ -331,7 +331,7 @@ static struct rtable *find_route(struct c4iw_dev *dev, __be32 local_ip, } }; - if (ip_route_output_flow(&init_net, &rt, &fl, NULL, 0)) + if (ip_route_output_flow(&init_net, &rt, &fl, NULL, false)) return NULL; return rt; } |