]> git.baikalelectronics.ru Git - kernel.git/commit
mptcp: Fix undefined mptcp_handle_ipv6_mapped for modular IPV6
authorGeert Uytterhoeven <geert@linux-m68k.org>
Thu, 30 Jan 2020 09:45:26 +0000 (10:45 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 30 Jan 2020 09:55:54 +0000 (10:55 +0100)
commitbb575d8c9e96b1ea290b5cdc1c395be868e9062c
treef5c4ca9e06fff955b7b60209172bd02d2df8c562
parent871026e68229fd0de397917ac4aaee4885d43f2b
mptcp: Fix undefined mptcp_handle_ipv6_mapped for modular IPV6

If CONFIG_MPTCP=y, CONFIG_MPTCP_IPV6=n, and CONFIG_IPV6=m:

    ERROR: "mptcp_handle_ipv6_mapped" [net/ipv6/ipv6.ko] undefined!

This does not happen if CONFIG_MPTCP_IPV6=y, as CONFIG_MPTCP_IPV6
selects CONFIG_IPV6, and thus forces CONFIG_IPV6 builtin.

As exporting a symbol for an empty function would be a bit wasteful, fix
this by providing a dummy version of mptcp_handle_ipv6_mapped() for the
CONFIG_MPTCP_IPV6=n case.

Rename mptcp_handle_ipv6_mapped() to mptcpv6_handle_mapped(), to make it
clear this is a pure-IPV6 function, just like mptcpv6_init().

Fixes: 67d38781cb8e960c ("mptcp: Handle MP_CAPABLE options for outgoing connections")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/mptcp.h
net/ipv6/tcp_ipv6.c
net/mptcp/subflow.c