1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us>
6 #ifndef __NET_TC_VLAN_H
7 #define __NET_TC_VLAN_H
9 #include <net/act_api.h>
10 #include <linux/tc_act/tc_vlan.h>
12 struct tcf_vlan_params
{
14 unsigned char tcfv_push_dst
[ETH_ALEN
];
15 unsigned char tcfv_push_src
[ETH_ALEN
];
17 __be16 tcfv_push_proto
;
19 bool tcfv_push_prio_exists
;
24 struct tc_action common
;
25 struct tcf_vlan_params __rcu
*vlan_p
;
27 #define to_vlan(a) ((struct tcf_vlan *)a)
29 static inline bool is_tcf_vlan(const struct tc_action
*a
)
31 #ifdef CONFIG_NET_CLS_ACT
32 if (a
->ops
&& a
->ops
->id
== TCA_ID_VLAN
)
38 static inline u32
tcf_vlan_action(const struct tc_action
*a
)
43 tcfv_action
= rcu_dereference(to_vlan(a
)->vlan_p
)->tcfv_action
;
49 static inline u16
tcf_vlan_push_vid(const struct tc_action
*a
)
54 tcfv_push_vid
= rcu_dereference(to_vlan(a
)->vlan_p
)->tcfv_push_vid
;
60 static inline __be16
tcf_vlan_push_proto(const struct tc_action
*a
)
62 __be16 tcfv_push_proto
;
65 tcfv_push_proto
= rcu_dereference(to_vlan(a
)->vlan_p
)->tcfv_push_proto
;
68 return tcfv_push_proto
;
71 static inline u8
tcf_vlan_push_prio(const struct tc_action
*a
)
76 tcfv_push_prio
= rcu_dereference(to_vlan(a
)->vlan_p
)->tcfv_push_prio
;
79 return tcfv_push_prio
;
82 static inline void tcf_vlan_push_eth(unsigned char *src
, unsigned char *dest
,
83 const struct tc_action
*a
)
86 memcpy(dest
, rcu_dereference(to_vlan(a
)->vlan_p
)->tcfv_push_dst
, ETH_ALEN
);
87 memcpy(src
, rcu_dereference(to_vlan(a
)->vlan_p
)->tcfv_push_src
, ETH_ALEN
);
91 #endif /* __NET_TC_VLAN_H */