diff options
author | David S. Miller <davem@davemloft.net> | 2011-03-01 17:19:23 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-01 17:19:23 -0500 |
commit | 420d44daa7aa1cc847e9e527f0a27a9ce61768ca (patch) | |
tree | a5aab8c6b925ba3da1079b7262f7d6c504406eb8 /net/dccp | |
parent | abdf7e7239da270e68262728f125ea94b9b7d42d (diff) |
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 'net/dccp')
-rw-r--r-- | net/dccp/ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c index 8372d5c571a0..3d4b82f6adfd 100644 --- a/net/dccp/ipv4.c +++ b/net/dccp/ipv4.c | |||
@@ -475,7 +475,7 @@ static struct dst_entry* dccp_v4_route_skb(struct net *net, struct sock *sk, | |||
475 | }; | 475 | }; |
476 | 476 | ||
477 | security_skb_classify_flow(skb, &fl); | 477 | security_skb_classify_flow(skb, &fl); |
478 | if (ip_route_output_flow(net, &rt, &fl, sk, 0)) { | 478 | if (ip_route_output_flow(net, &rt, &fl, sk, false)) { |
479 | IP_INC_STATS_BH(net, IPSTATS_MIB_OUTNOROUTES); | 479 | IP_INC_STATS_BH(net, IPSTATS_MIB_OUTNOROUTES); |
480 | return NULL; | 480 | return NULL; |
481 | } | 481 | } |