diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2012-09-10 16:13:07 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-09-10 20:44:45 (GMT) |
commit | 1c463e57b32e3b6a3250fe75d1d56cb598d664e6 (patch) | |
tree | c22fd9178c405a81883295367f8dfc961e898abf /net | |
parent | 0b836ddde177bdd5790ade83772860940bd481ea (diff) | |
download | linux-fsl-qoriq-1c463e57b32e3b6a3250fe75d1d56cb598d664e6.tar.xz |
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>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/sock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/core/sock.c b/net/core/sock.c index 7f64467..3057920 100644 --- a/net/core/sock.c +++ b/net/core/sock.c @@ -1525,9 +1525,11 @@ void sock_edemux(struct sk_buff *skb) { struct sock *sk = skb->sk; +#ifdef CONFIG_INET if (sk->sk_state == TCP_TIME_WAIT) inet_twsk_put(inet_twsk(sk)); else +#endif sock_put(sk); } EXPORT_SYMBOL(sock_edemux); |