Message ID | 20240916-ipv6_rpl_lwtunnel-dst_cache-v2-1-e36be2c3a437@linutronix.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 93c21077bb9ba08807c459982d440dbbee4c7af3 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net,v2] net: ipv6: select DST_CACHE from IPV6_RPL_LWTUNNEL | expand |
Hello: This patch was applied to netdev/net.git (main) by David S. Miller <davem@davemloft.net>: On Mon, 16 Sep 2024 20:57:13 +0200 you wrote: > The rpl sr tunnel code contains calls to dst_cache_*() which are > only present when the dst cache is built. > Select DST_CACHE to build the dst cache, similar to other kconfig > options in the same file. > Compiling the rpl sr tunnel without DST_CACHE will lead to linker > errors. > > [...] Here is the summary with links: - [net,v2] net: ipv6: select DST_CACHE from IPV6_RPL_LWTUNNEL https://git.kernel.org/netdev/net/c/93c21077bb9b You are awesome, thank you!
diff --git a/net/ipv6/Kconfig b/net/ipv6/Kconfig index 08d4b7132d4c..1c9c686d9522 100644 --- a/net/ipv6/Kconfig +++ b/net/ipv6/Kconfig @@ -323,6 +323,7 @@ config IPV6_RPL_LWTUNNEL bool "IPv6: RPL Source Routing Header support" depends on IPV6 select LWTUNNEL + select DST_CACHE help Support for RFC6554 RPL Source Routing Header using the lightweight tunnels mechanism.