X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/a6d121f744029542baf72411c7765c9fe8e869ea..c0d013dd1b33bcab1abb0729aa2585f8631fd27f:/target/linux/generic-2.6/patches-2.6.28/110-netfilter_match_speedup.patch diff --git a/target/linux/generic-2.6/patches-2.6.28/110-netfilter_match_speedup.patch b/target/linux/generic-2.6/patches-2.6.28/110-netfilter_match_speedup.patch index a8a49ec65..2bdbe0703 100644 --- a/target/linux/generic-2.6/patches-2.6.28/110-netfilter_match_speedup.patch +++ b/target/linux/generic-2.6/patches-2.6.28/110-netfilter_match_speedup.patch @@ -20,7 +20,7 @@ if (FWINV((ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr, IPT_INV_SRCIP) || FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr, -@@ -151,13 +154,32 @@ ip_packet_match(const struct iphdr *ip, +@@ -151,13 +154,35 @@ ip_packet_match(const struct iphdr *ip, return false; } @@ -45,6 +45,9 @@ + IPT_INV_VIA_OUT)) + goto has_match_rules; + ++ if (FWINV(ip->proto, IPT_INV_PROTO)) ++ goto has_match_rules; ++ + if (FWINV(ip->flags&IPT_F_FRAG, IPT_INV_FRAG)) + goto has_match_rules; + @@ -55,7 +58,7 @@ duprintf("Unknown flag bits set: %08X\n", ip->flags & ~IPT_F_MASK); return false; -@@ -167,6 +189,8 @@ ip_checkentry(const struct ipt_ip *ip) +@@ -167,6 +192,8 @@ ip_checkentry(const struct ipt_ip *ip) ip->invflags & ~IPT_INV_MASK); return false; } @@ -64,7 +67,7 @@ return true; } -@@ -214,7 +238,6 @@ unconditional(const struct ipt_ip *ip) +@@ -214,7 +241,6 @@ unconditional(const struct ipt_ip *ip) return 0; return 1;