diff options
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 272241f16fcb..767823764016 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c | |||
@@ -1869,7 +1869,7 @@ static struct timewait_sock_ops tcp_timewait_sock_ops = { | |||
1869 | .twsk_destructor= tcp_twsk_destructor, | 1869 | .twsk_destructor= tcp_twsk_destructor, |
1870 | }; | 1870 | }; |
1871 | 1871 | ||
1872 | static void inet_sk_rx_dst_set(struct sock *sk, const struct sk_buff *skb) | 1872 | void inet_sk_rx_dst_set(struct sock *sk, const struct sk_buff *skb) |
1873 | { | 1873 | { |
1874 | struct dst_entry *dst = skb_dst(skb); | 1874 | struct dst_entry *dst = skb_dst(skb); |
1875 | 1875 | ||
@@ -1877,6 +1877,7 @@ static void inet_sk_rx_dst_set(struct sock *sk, const struct sk_buff *skb) | |||
1877 | sk->sk_rx_dst = dst; | 1877 | sk->sk_rx_dst = dst; |
1878 | inet_sk(sk)->rx_dst_ifindex = skb->skb_iif; | 1878 | inet_sk(sk)->rx_dst_ifindex = skb->skb_iif; |
1879 | } | 1879 | } |
1880 | EXPORT_SYMBOL(inet_sk_rx_dst_set); | ||
1880 | 1881 | ||
1881 | const struct inet_connection_sock_af_ops ipv4_specific = { | 1882 | const struct inet_connection_sock_af_ops ipv4_specific = { |
1882 | .queue_xmit = ip_queue_xmit, | 1883 | .queue_xmit = ip_queue_xmit, |