diff options
author | Alex Shi <alex.shi@linux.alibaba.com> | 2020-01-21 16:50:07 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-01-21 12:03:51 +0100 |
commit | aeaec7bcebd9c85372191fb42a4478d21972d99e (patch) | |
tree | 47327124ba1901c7616e1de38e6203e1f6241531 /net/ipv4 | |
parent | 339821f7d2d890a61cebeb9d085643668d4df6e4 (diff) | |
download | linux-stable-aeaec7bcebd9c85372191fb42a4478d21972d99e.tar.gz linux-stable-aeaec7bcebd9c85372191fb42a4478d21972d99e.tar.bz2 linux-stable-aeaec7bcebd9c85372191fb42a4478d21972d99e.zip |
tcp/ipv4: remove AF_INET_FAMILY
After commit 079096f103fa ("tcp/dccp: install syn_recv requests into ehash table")
the macro isn't used anymore. remove it.
Signed-off-by: Alex Shi <alex.shi@linux.alibaba.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Cc: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
Cc: netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/inet_connection_sock.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c index 6a691fd04398..a4db79b1b643 100644 --- a/net/ipv4/inet_connection_sock.c +++ b/net/ipv4/inet_connection_sock.c @@ -610,12 +610,6 @@ no_route: } EXPORT_SYMBOL_GPL(inet_csk_route_child_sock); -#if IS_ENABLED(CONFIG_IPV6) -#define AF_INET_FAMILY(fam) ((fam) == AF_INET) -#else -#define AF_INET_FAMILY(fam) true -#endif - /* Decide when to expire the request and when to resend SYN-ACK */ static inline void syn_ack_recalc(struct request_sock *req, const int thresh, const int max_retries, |