mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
[NET]: Use unused bit for ipvs_property field in struct sk_buff
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a516b04950
commit
b84f4cc977
1 changed files with 2 additions and 4 deletions
|
@ -264,16 +264,14 @@ struct sk_buff {
|
||||||
nohdr:1,
|
nohdr:1,
|
||||||
nfctinfo:3;
|
nfctinfo:3;
|
||||||
__u8 pkt_type:3,
|
__u8 pkt_type:3,
|
||||||
fclone:2;
|
fclone:2,
|
||||||
|
ipvs_property:1;
|
||||||
__be16 protocol;
|
__be16 protocol;
|
||||||
|
|
||||||
void (*destructor)(struct sk_buff *skb);
|
void (*destructor)(struct sk_buff *skb);
|
||||||
#ifdef CONFIG_NETFILTER
|
#ifdef CONFIG_NETFILTER
|
||||||
__u32 nfmark;
|
__u32 nfmark;
|
||||||
struct nf_conntrack *nfct;
|
struct nf_conntrack *nfct;
|
||||||
#if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
|
|
||||||
__u8 ipvs_property:1;
|
|
||||||
#endif
|
|
||||||
#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
|
#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
|
||||||
struct sk_buff *nfct_reasm;
|
struct sk_buff *nfct_reasm;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue