Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4135ab82 authored by Octavian Purdila's avatar Octavian Purdila Committed by David S. Miller
Browse files

tcp: tcp_conn_request: fix build error when IPv6 is disabled



Fixes build error introduced by commit 1fb6f159 (tcp: add
tcp_conn_request):

net/ipv4/tcp_input.c: In function 'pr_drop_req':
net/ipv4/tcp_input.c:5889:130: error: 'struct sock_common' has no member named 'skc_v6_daddr'

Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Signed-off-by: default avatarOctavian Purdila <octavian.purdila@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9e1a21b6
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -5885,9 +5885,11 @@ static inline void pr_drop_req(struct request_sock *req, __u16 port, int family)
	if (family == AF_INET)
		LIMIT_NETDEBUG(KERN_DEBUG pr_fmt("drop open request from %pI4/%u\n"),
			       &ireq->ir_rmt_addr, port);
	else
#if IS_ENABLED(CONFIG_IPV6)
	else if (family == AF_INET6)
		LIMIT_NETDEBUG(KERN_DEBUG pr_fmt("drop open request from %pI6/%u\n"),
			       &ireq->ir_v6_rmt_addr, port);
#endif
}

int tcp_conn_request(struct request_sock_ops *rsk_ops,