mirror of https://github.com/hak5/openwrt.git
kernel: nf_conntrack_rtcache: fix WARNING on rmmod
Fixesopenwrt-18.06b7c58a1ee
("kernel: nf_conntrack_rtcache: fix cleanup on netns delete and rmmod") Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> (cherry picked from commitb3779e920e
)
parent
8f6debf633
commit
daed78ab55
|
@ -127,7 +127,7 @@ Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||||
# netlink interface for nf_conntrack
|
# netlink interface for nf_conntrack
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/net/netfilter/nf_conntrack_rtcache.c
|
+++ b/net/netfilter/nf_conntrack_rtcache.c
|
||||||
@@ -0,0 +1,430 @@
|
@@ -0,0 +1,428 @@
|
||||||
+/* route cache for netfilter.
|
+/* route cache for netfilter.
|
||||||
+ *
|
+ *
|
||||||
+ * (C) 2014 Red Hat GmbH
|
+ * (C) 2014 Red Hat GmbH
|
||||||
|
@ -528,8 +528,6 @@ Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||||
+
|
+
|
||||||
+ unregister_netdevice_notifier(&nf_rtcache_notifier);
|
+ unregister_netdevice_notifier(&nf_rtcache_notifier);
|
||||||
+ unregister_pernet_subsys(&rtcache_ops_net_ops);
|
+ unregister_pernet_subsys(&rtcache_ops_net_ops);
|
||||||
+ for_each_net(net)
|
|
||||||
+ nf_unregister_net_hooks(net, rtcache_ops, ARRAY_SIZE(rtcache_ops));
|
|
||||||
+
|
+
|
||||||
+ synchronize_net();
|
+ synchronize_net();
|
||||||
+
|
+
|
||||||
|
|
Loading…
Reference in New Issue