summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--package/wprobe/src/kernel/wprobe-core.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/package/wprobe/src/kernel/wprobe-core.c b/package/wprobe/src/kernel/wprobe-core.c
index 68d07172a..cf0c74aba 100644
--- a/package/wprobe/src/kernel/wprobe-core.c
+++ b/package/wprobe/src/kernel/wprobe-core.c
@@ -243,8 +243,13 @@ wprobe_add_frame(struct wprobe_iface *dev, const struct wprobe_wlan_hdr *hdr, vo
def = j;
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)
continue;
+#endif
found = true;
break;