diff options
author | David S. Miller <davem@davemloft.net> | 2011-03-01 17:27:04 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-01 17:27:04 -0500 |
commit | 273447b352e69c327efdecfd6e1d6fe3edbdcd14 (patch) | |
tree | dae1e0778ca973c25b74fd3dc9728616d6e65b73 /net/ipv4/raw.c | |
parent | 5df65e5567a497a28067019b8ff08f98fb026629 (diff) |
ipv4: Kill can_sleep arg to ip_route_output_flow()
This boolean state is now available in the flow flags.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/raw.c')
-rw-r--r-- | net/ipv4/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c index e8e8613bcbcc..d7a2d1eaec09 100644 --- a/net/ipv4/raw.c +++ b/net/ipv4/raw.c | |||
@@ -564,7 +564,7 @@ static int raw_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, | |||
564 | } | 564 | } |
565 | 565 | ||
566 | security_sk_classify_flow(sk, &fl); | 566 | security_sk_classify_flow(sk, &fl); |
567 | err = ip_route_output_flow(sock_net(sk), &rt, &fl, sk, true); | 567 | err = ip_route_output_flow(sock_net(sk), &rt, &fl, sk); |
568 | } | 568 | } |
569 | if (err) | 569 | if (err) |
570 | goto done; | 570 | goto done; |