From: Luka Perkov Date: Sun, 27 Oct 2013 20:47:04 +0000 (+0000) Subject: kernel: fix compile error in 3.12 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=be95e2415564e8f7cbd6e750dd86798a332e471e;p=openwrt%2Fstaging%2Fyousong.git 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 SVN-Revision: 38547 --- 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; +}