diff options
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index b53c0cfd417e..570f60ec6cb4 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -589,6 +589,7 @@ static inline bool skb_mstamp_after(const struct skb_mstamp *t1, | |||
589 | * @pkt_type: Packet class | 589 | * @pkt_type: Packet class |
590 | * @fclone: skbuff clone status | 590 | * @fclone: skbuff clone status |
591 | * @ipvs_property: skbuff is owned by ipvs | 591 | * @ipvs_property: skbuff is owned by ipvs |
592 | * @tc_skip_classify: do not classify packet. set by IFB device | ||
592 | * @peeked: this packet has been seen already, so stats have been | 593 | * @peeked: this packet has been seen already, so stats have been |
593 | * done for it, don't do them again | 594 | * done for it, don't do them again |
594 | * @nf_trace: netfilter packet trace flag | 595 | * @nf_trace: netfilter packet trace flag |
@@ -749,7 +750,9 @@ struct sk_buff { | |||
749 | #ifdef CONFIG_NET_SWITCHDEV | 750 | #ifdef CONFIG_NET_SWITCHDEV |
750 | __u8 offload_fwd_mark:1; | 751 | __u8 offload_fwd_mark:1; |
751 | #endif | 752 | #endif |
752 | /* 2, 4 or 5 bit hole */ | 753 | #ifdef CONFIG_NET_CLS_ACT |
754 | __u8 tc_skip_classify:1; | ||
755 | #endif | ||
753 | 756 | ||
754 | #ifdef CONFIG_NET_SCHED | 757 | #ifdef CONFIG_NET_SCHED |
755 | __u16 tc_index; /* traffic control index */ | 758 | __u16 tc_index; /* traffic control index */ |