diff options
author | David S. Miller <davem@davemloft.net> | 2011-03-02 17:31:35 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-02 17:31:35 -0500 |
commit | b23dd4fe42b455af5c6e20966b7d6959fa8352ea (patch) | |
tree | bf97323eae9a8d084170e573ff2c0c40bc72c3cd /net/atm | |
parent | 452edd598f60522c11f7f88fdbab27eb36509d1a (diff) |
ipv4: Make output route lookup return rtable directly.
Instead of on the stack.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm')
-rw-r--r-- | net/atm/clip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/atm/clip.c b/net/atm/clip.c index d257da50fcfb..810a1294eddb 100644 --- a/net/atm/clip.c +++ b/net/atm/clip.c | |||
@@ -520,9 +520,9 @@ static int clip_setentry(struct atm_vcc *vcc, __be32 ip) | |||
520 | unlink_clip_vcc(clip_vcc); | 520 | unlink_clip_vcc(clip_vcc); |
521 | return 0; | 521 | return 0; |
522 | } | 522 | } |
523 | error = ip_route_output_key(&init_net, &rt, &fl); | 523 | rt = ip_route_output_key(&init_net, &fl); |
524 | if (error) | 524 | if (IS_ERR(rt)) |
525 | return error; | 525 | return PTR_ERR(rt); |
526 | neigh = __neigh_lookup(&clip_tbl, &ip, rt->dst.dev, 1); | 526 | neigh = __neigh_lookup(&clip_tbl, &ip, rt->dst.dev, 1); |
527 | ip_rt_put(rt); | 527 | ip_rt_put(rt); |
528 | if (!neigh) | 528 | if (!neigh) |