diff options
author | Denis V. Lunev <den@openvz.org> | 2008-01-23 01:07:34 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:11:07 -0500 |
commit | f206351a50ea86250fabea96b9af8d8f8fc02603 (patch) | |
tree | 014148d8b45db1995d98374ec3b30e635f243197 /net/atm/clip.c | |
parent | f1b050bf7a88910f9f00c9c8989c1bf5a67dd140 (diff) |
[NETNS]: Add namespace parameter to ip_route_output_key.
Needed to propagate it down to the ip_route_output_flow.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm/clip.c')
-rw-r--r-- | net/atm/clip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/clip.c b/net/atm/clip.c index 45e08620c8ca..86b885ec1cbd 100644 --- a/net/atm/clip.c +++ b/net/atm/clip.c | |||
@@ -534,7 +534,7 @@ static int clip_setentry(struct atm_vcc *vcc, __be32 ip) | |||
534 | unlink_clip_vcc(clip_vcc); | 534 | unlink_clip_vcc(clip_vcc); |
535 | return 0; | 535 | return 0; |
536 | } | 536 | } |
537 | error = ip_route_output_key(&rt, &fl); | 537 | error = ip_route_output_key(&init_net, &rt, &fl); |
538 | if (error) | 538 | if (error) |
539 | return error; | 539 | return error; |
540 | neigh = __neigh_lookup(&clip_tbl, &ip, rt->u.dst.dev, 1); | 540 | neigh = __neigh_lookup(&clip_tbl, &ip, rt->u.dst.dev, 1); |