diff options
author | Willem de Bruijn <willemb@google.com> | 2017-01-08 01:06:37 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-09 04:58:52 +0300 |
commit | 8dc07fdbf2054f157e8333f940a1ad728916c786 (patch) | |
tree | 57c9c5278fc96ac73f70b04c0895011c8faa820f /include/linux | |
parent | a5135bcfba7345031df45e02cd150a45add47cf8 (diff) | |
download | linux-8dc07fdbf2054f157e8333f940a1ad728916c786.tar.xz |
net-tc: convert tc_at to tc_at_ingress
Field tc_at is used only within tc actions to distinguish ingress from
egress processing. A single bit is sufficient for this purpose.
Signed-off-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/skbuff.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index f738d09947b2..fab3f87e9bd1 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -590,6 +590,7 @@ static inline bool skb_mstamp_after(const struct skb_mstamp *t1, * @fclone: skbuff clone status * @ipvs_property: skbuff is owned by ipvs * @tc_skip_classify: do not classify packet. set by IFB device + * @tc_at_ingress: used within tc_classify to distinguish in/egress * @peeked: this packet has been seen already, so stats have been * done for it, don't do them again * @nf_trace: netfilter packet trace flag @@ -751,7 +752,7 @@ struct sk_buff { #endif #ifdef CONFIG_NET_CLS_ACT __u8 tc_skip_classify:1; - __u8 tc_at:2; + __u8 tc_at_ingress:1; __u8 tc_from:2; #endif |