kernel: fix rtcache compilation with 4.18+ with IPv6 support
authorRafał Miłecki <rafal@milecki.pl>
Thu, 4 Apr 2019 07:31:41 +0000 (09:31 +0200)
committerRafał Miłecki <rafal@milecki.pl>
Thu, 4 Apr 2019 08:59:11 +0000 (10:59 +0200)
commit9a92af46248ed885fd378dd566e55f88dcef3ea0
tree7f0d76c58141aa4e39a68f47431b6f2ffb0a2b64
parentb3d8b3ab8e6fc0c0355f0680fc1c5f9c90a0c35a
kernel: fix rtcache compilation with 4.18+ with IPv6 support

Please note that modified code isn't currently being compiled with
kernels 4.19+ due to the dropped CONFIG_NF_CONNTRACK_IPV6 in upstream
Linux. That requires a separated fix.

This fixes:
net/netfilter/nf_conntrack_rtcache.c: In function 'nf_rtcache_get_cookie':
net/netfilter/nf_conntrack_rtcache.c:82:11: error: 'const struct rt6_info' has no member named 'rt6i_node'; did you mean 'rt6i_idev'?
   if (rt->rt6i_node)
           ^~~~~~~~~
           rt6i_idev

IPv6 structs were reworked in upstream kernel by:
commit a64efe142f5e ("net/ipv6: introduce fib6_info struct and helpers")
commit 77634cc67dc1 ("net/ipv6: Remove unused code and variables for rt6_info")
commit 93c2fb253d17 ("net/ipv6: Rename fib6_info struct elements")

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
target/linux/generic/backport-4.19/020-backport_netfilter_rtcache.patch