net: fix net/core/sock.c build error
Fix net/core/sock.c build error when CONFIG_INET is not enabled: net/built-in.o: In function `sock_edemux': (.text+0xd396): undefined reference to `inet_twsk_put' Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0b836ddde1
commit
1c463e57b3
@ -1525,9 +1525,11 @@ void sock_edemux(struct sk_buff *skb)
|
|||||||
{
|
{
|
||||||
struct sock *sk = skb->sk;
|
struct sock *sk = skb->sk;
|
||||||
|
|
||||||
|
#ifdef CONFIG_INET
|
||||||
if (sk->sk_state == TCP_TIME_WAIT)
|
if (sk->sk_state == TCP_TIME_WAIT)
|
||||||
inet_twsk_put(inet_twsk(sk));
|
inet_twsk_put(inet_twsk(sk));
|
||||||
else
|
else
|
||||||
|
#endif
|
||||||
sock_put(sk);
|
sock_put(sk);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(sock_edemux);
|
EXPORT_SYMBOL(sock_edemux);
|
||||||
|
Loading…
Reference in New Issue
Block a user