diff options
| author | David S. Miller <davem@davemloft.net> | 2011-01-04 14:57:25 -0500 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-01-04 14:57:25 -0500 | 
| commit | dbbe68bb12b34f3e450da7a73c20e6fa1f85d63a (patch) | |
| tree | 10f8363cbf5e428c0cb5614959e37b67a7e0cfa2 /net/ipv4/route.c | |
| parent | 7b26e5ebd8b27b0126a84ae7f9a42aa8293d6c48 (diff) | |
| parent | 9fc3bbb4a752f108cf096d96640f3b548bbbce6c (diff) | |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Diffstat (limited to 'net/ipv4/route.c')
| -rw-r--r-- | net/ipv4/route.c | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index f1defb7d88e8..351dc4e85242 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c  | |||
| @@ -2626,8 +2626,12 @@ static int ip_route_output_slow(struct net *net, struct rtable **rp, | |||
| 2626 | } | 2626 | } | 
| 2627 | 2627 | ||
| 2628 | if (res.type == RTN_LOCAL) { | 2628 | if (res.type == RTN_LOCAL) { | 
| 2629 | if (!fl.fl4_src) | 2629 | if (!fl.fl4_src) { | 
| 2630 | fl.fl4_src = fl.fl4_dst; | 2630 | if (res.fi->fib_prefsrc) | 
| 2631 | fl.fl4_src = res.fi->fib_prefsrc; | ||
| 2632 | else | ||
| 2633 | fl.fl4_src = fl.fl4_dst; | ||
| 2634 | } | ||
| 2631 | dev_out = net->loopback_dev; | 2635 | dev_out = net->loopback_dev; | 
| 2632 | fl.oif = dev_out->ifindex; | 2636 | fl.oif = dev_out->ifindex; | 
| 2633 | res.fi = NULL; | 2637 | res.fi = NULL; | 
