diff options
| author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-06-03 01:45:47 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-06-04 18:56:03 -0400 |
| commit | c44649216522cd607a4027d2ebf4a8147d3fa94c (patch) | |
| tree | e46e153f3f3166353d9818e6b719f1c06b60d4be | |
| parent | ca55158c6ecb7832a6ad80ac44a14d23bab8cdfc (diff) | |
tcp: use correct net ns in cookie_v4_check()
Its better to make a route lookup in appropriate namespace.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/ipv4/syncookies.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/syncookies.c b/net/ipv4/syncookies.c index 5c24db4a3c91..9f6b22206c52 100644 --- a/net/ipv4/syncookies.c +++ b/net/ipv4/syncookies.c | |||
| @@ -347,7 +347,7 @@ struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb, | |||
| 347 | { .sport = th->dest, | 347 | { .sport = th->dest, |
| 348 | .dport = th->source } } }; | 348 | .dport = th->source } } }; |
| 349 | security_req_classify_flow(req, &fl); | 349 | security_req_classify_flow(req, &fl); |
| 350 | if (ip_route_output_key(&init_net, &rt, &fl)) { | 350 | if (ip_route_output_key(sock_net(sk), &rt, &fl)) { |
| 351 | reqsk_free(req); | 351 | reqsk_free(req); |
| 352 | goto out; | 352 | goto out; |
| 353 | } | 353 | } |
