diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-08-07 21:17:18 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-08-07 21:17:18 +0000 |
commit | ba9e7889dd564e9c436df1751fc05f381772680c (patch) | |
tree | 9e640d6c720e7cb8e09f0064659a328595fa022a /target | |
parent | 6474dbe86b78062fa5858ab55c3a28de42147a8f (diff) | |
download | upstream-ba9e7889dd564e9c436df1751fc05f381772680c.tar.gz upstream-ba9e7889dd564e9c436df1751fc05f381772680c.tar.bz2 upstream-ba9e7889dd564e9c436df1751fc05f381772680c.zip |
kernel: fix another typo in the netfilter optimization patches
SVN-Revision: 27927
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic/patches-2.6.39/612-netfilter_match_reduce_memory_access.patch | 2 | ||||
-rw-r--r-- | target/linux/generic/patches-3.0/612-netfilter_match_reduce_memory_access.patch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic/patches-2.6.39/612-netfilter_match_reduce_memory_access.patch b/target/linux/generic/patches-2.6.39/612-netfilter_match_reduce_memory_access.patch index a36a1728d1..7c50ad7478 100644 --- a/target/linux/generic/patches-2.6.39/612-netfilter_match_reduce_memory_access.patch +++ b/target/linux/generic/patches-2.6.39/612-netfilter_match_reduce_memory_access.patch @@ -9,7 +9,7 @@ + (ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr, IPT_INV_SRCIP) || - FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr, -+ FWINV(ipinfo->smsk.s_addr && ++ FWINV(ipinfo->dmsk.s_addr && + (ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr, IPT_INV_DSTIP)) { dprintf("Source or dest mismatch.\n"); diff --git a/target/linux/generic/patches-3.0/612-netfilter_match_reduce_memory_access.patch b/target/linux/generic/patches-3.0/612-netfilter_match_reduce_memory_access.patch index 817b37efd1..f506165e1d 100644 --- a/target/linux/generic/patches-3.0/612-netfilter_match_reduce_memory_access.patch +++ b/target/linux/generic/patches-3.0/612-netfilter_match_reduce_memory_access.patch @@ -9,7 +9,7 @@ + (ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr, IPT_INV_SRCIP) || - FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr, -+ FWINV(ipinfo->smsk.s_addr && ++ FWINV(ipinfo->dmsk.s_addr && + (ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr, IPT_INV_DSTIP)) { dprintf("Source or dest mismatch.\n"); |