diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2008-03-03 07:44:34 -0500 |
---|---|---|
committer | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2008-03-04 01:18:23 -0500 |
commit | 5e5f3f0f801321078c897a5de0b4b4304f234da0 (patch) | |
tree | 58e6b37134328183eb3c0a49852c52c0368da21c /net/ipv6/ip6_output.c | |
parent | 8082c37cdc31fb0ed178d9d706bf7568ada0edd9 (diff) |
[IPV6] ADDRCONF: Convert ipv6_get_saddr() to ipv6_dev_get_saddr().
Since most users of ipv6_get_saddr() pass non-NULL as
dst argument, use ipv6_dev_get_saddr() directly.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Diffstat (limited to 'net/ipv6/ip6_output.c')
-rw-r--r-- | net/ipv6/ip6_output.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index a59d259cf97e..ff3971173e1e 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c | |||
@@ -919,7 +919,8 @@ static int ip6_dst_lookup_tail(struct sock *sk, | |||
919 | goto out_err_release; | 919 | goto out_err_release; |
920 | 920 | ||
921 | if (ipv6_addr_any(&fl->fl6_src)) { | 921 | if (ipv6_addr_any(&fl->fl6_src)) { |
922 | err = ipv6_get_saddr(*dst, &fl->fl6_dst, &fl->fl6_src); | 922 | err = ipv6_dev_get_saddr(ip6_dst_idev(*dst)->dev, |
923 | &fl->fl6_dst, &fl->fl6_src); | ||
923 | if (err) | 924 | if (err) |
924 | goto out_err_release; | 925 | goto out_err_release; |
925 | } | 926 | } |