drm/panfrost: Remove set but not used variable 'bo'
[linux/fpc-iii.git] / include / net / tc_act / tc_vlan.h
blob4e2502408c316d679b8e766bc7e67fd2f48f2693
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us>
4 */
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 {
13 int tcfv_action;
14 u16 tcfv_push_vid;
15 __be16 tcfv_push_proto;
16 u8 tcfv_push_prio;
17 struct rcu_head rcu;
20 struct tcf_vlan {
21 struct tc_action common;
22 struct tcf_vlan_params __rcu *vlan_p;
24 #define to_vlan(a) ((struct tcf_vlan *)a)
26 static inline bool is_tcf_vlan(const struct tc_action *a)
28 #ifdef CONFIG_NET_CLS_ACT
29 if (a->ops && a->ops->id == TCA_ID_VLAN)
30 return true;
31 #endif
32 return false;
35 static inline u32 tcf_vlan_action(const struct tc_action *a)
37 u32 tcfv_action;
39 rcu_read_lock();
40 tcfv_action = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_action;
41 rcu_read_unlock();
43 return tcfv_action;
46 static inline u16 tcf_vlan_push_vid(const struct tc_action *a)
48 u16 tcfv_push_vid;
50 rcu_read_lock();
51 tcfv_push_vid = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_push_vid;
52 rcu_read_unlock();
54 return tcfv_push_vid;
57 static inline __be16 tcf_vlan_push_proto(const struct tc_action *a)
59 __be16 tcfv_push_proto;
61 rcu_read_lock();
62 tcfv_push_proto = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_push_proto;
63 rcu_read_unlock();
65 return tcfv_push_proto;
68 static inline u8 tcf_vlan_push_prio(const struct tc_action *a)
70 u8 tcfv_push_prio;
72 rcu_read_lock();
73 tcfv_push_prio = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_push_prio;
74 rcu_read_unlock();
76 return tcfv_push_prio;
78 #endif /* __NET_TC_VLAN_H */