Use dentry_path() to create full path to inode object
[pohmelfs.git] / include / linux / netfilter / xt_TCPOPTSTRIP.h
blob7157318499c27b3c96b0e07ae19413fcbe94a827
1 #ifndef _XT_TCPOPTSTRIP_H
2 #define _XT_TCPOPTSTRIP_H
4 #include <linux/types.h>
6 #define tcpoptstrip_set_bit(bmap, idx) \
7 (bmap[(idx) >> 5] |= 1U << (idx & 31))
8 #define tcpoptstrip_test_bit(bmap, idx) \
9 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
11 struct xt_tcpoptstrip_target_info {
12 __u32 strip_bmap[8];
15 #endif /* _XT_TCPOPTSTRIP_H */