aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/filter.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/filter.h b/include/linux/filter.h
index e568c8ef896b..e65e23087367 100644
--- a/include/linux/filter.h
+++ b/include/linux/filter.h
@@ -25,7 +25,8 @@ struct sock;
25struct sk_filter 25struct sk_filter
26{ 26{
27 atomic_t refcnt; 27 atomic_t refcnt;
28 unsigned int len; /* Number of filter blocks */ 28 u32 jited:1, /* Is our filter JIT'ed? */
29 len:31; /* Number of filter blocks */
29 struct rcu_head rcu; 30 struct rcu_head rcu;
30 unsigned int (*bpf_func)(const struct sk_buff *skb, 31 unsigned int (*bpf_func)(const struct sk_buff *skb,
31 const struct sock_filter *filter); 32 const struct sock_filter *filter);