summaryrefslogtreecommitdiff
path: root/target/linux/generic
diff options
context:
space:
mode:
authorluka <luka@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-10-27 20:47:04 +0000
committerluka <luka@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-10-27 20:47:04 +0000
commit96681af1cb55572cd8b107f196259a67fd2fada1 (patch)
tree498fcb73025e878de37b1eb3e95efadf2477a69c /target/linux/generic
parentb16c23d4731aba11ad3b73a73760b759cf1c8317 (diff)
kernel: fix compile error in 3.12
Upstream commit c655bc6896b94ee0223393f26155c6daf1e2d148 changed number of arguments in nf_ct_iterate_cleanup() function. Signed-off-by: Luka Perkov <luka@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38547 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic')
-rw-r--r--target/linux/generic/patches-3.12/604-netfilter_conntrack_flush.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/patches-3.12/604-netfilter_conntrack_flush.patch b/target/linux/generic/patches-3.12/604-netfilter_conntrack_flush.patch
index ecd46b6a2b..984aed0e41 100644
--- a/target/linux/generic/patches-3.12/604-netfilter_conntrack_flush.patch
+++ b/target/linux/generic/patches-3.12/604-netfilter_conntrack_flush.patch
@@ -22,7 +22,7 @@
+ return -EFAULT;
+
+ if (c == 'f')
-+ nf_ct_iterate_cleanup(net, kill_all, NULL);
++ nf_ct_iterate_cleanup(net, kill_all, NULL, 0, 0);
+ }
+ return count;
+}