1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

package/wprobe: fix for kernels >= 2.6.38

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25701 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
acoul
2011-02-24 15:51:28 +00:00
parent 2945eb2cd0
commit b802472b77

View File

@@ -243,8 +243,13 @@ wprobe_add_frame(struct wprobe_iface *dev, const struct wprobe_wlan_hdr *hdr, vo
def = j; def = j;
continue; continue;
} }
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38)
if (sk_run_filter(skb, fi->filter) == 0)
continue;
#else
if (sk_run_filter(skb, fi->filter, fi->hdr.n_items) == 0) if (sk_run_filter(skb, fi->filter, fi->hdr.n_items) == 0)
continue; continue;
#endif
found = true; found = true;
break; break;