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/ipv4/udp.c | |
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/ipv4/udp.c')
-rw-r--r-- | net/ipv4/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index 8155d6eda376..790187b5c308 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c | |||
@@ -920,7 +920,7 @@ int udp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, | |||
920 | struct net *net = sock_net(sk); | 920 | struct net *net = sock_net(sk); |
921 | 921 | ||
922 | security_sk_classify_flow(sk, &fl); | 922 | security_sk_classify_flow(sk, &fl); |
923 | err = ip_route_output_flow(net, &rt, &fl, sk, 1); | 923 | err = ip_route_output_flow(net, &rt, &fl, sk, true); |
924 | if (err) { | 924 | if (err) { |
925 | if (err == -ENETUNREACH) | 925 | if (err == -ENETUNREACH) |
926 | IP_INC_STATS_BH(net, IPSTATS_MIB_OUTNOROUTES); | 926 | IP_INC_STATS_BH(net, IPSTATS_MIB_OUTNOROUTES); |