Linux Audio

Check our new training course

Loading...
v4.17
 
 1/*
 2 * Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us>
 3 *
 4 * This program is free software; you can redistribute it and/or modify
 5 * it under the terms of the GNU General Public License as published by
 6 * the Free Software Foundation; either version 2 of the License, or
 7 * (at your option) any later version.
 8 */
 9
10#ifndef __NET_TC_VLAN_H
11#define __NET_TC_VLAN_H
12
13#include <net/act_api.h>
14#include <linux/tc_act/tc_vlan.h>
15
16struct tcf_vlan_params {
17	int               tcfv_action;
 
 
18	u16               tcfv_push_vid;
19	__be16            tcfv_push_proto;
20	u8                tcfv_push_prio;
 
21	struct rcu_head   rcu;
22};
23
24struct tcf_vlan {
25	struct tc_action	common;
26	struct tcf_vlan_params __rcu *vlan_p;
27};
28#define to_vlan(a) ((struct tcf_vlan *)a)
29
30static inline bool is_tcf_vlan(const struct tc_action *a)
31{
32#ifdef CONFIG_NET_CLS_ACT
33	if (a->ops && a->ops->type == TCA_ACT_VLAN)
34		return true;
35#endif
36	return false;
37}
38
39static inline u32 tcf_vlan_action(const struct tc_action *a)
40{
41	u32 tcfv_action;
42
43	rcu_read_lock();
44	tcfv_action = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_action;
45	rcu_read_unlock();
46
47	return tcfv_action;
48}
49
50static inline u16 tcf_vlan_push_vid(const struct tc_action *a)
51{
52	u16 tcfv_push_vid;
53
54	rcu_read_lock();
55	tcfv_push_vid = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_push_vid;
56	rcu_read_unlock();
57
58	return tcfv_push_vid;
59}
60
61static inline __be16 tcf_vlan_push_proto(const struct tc_action *a)
62{
63	__be16 tcfv_push_proto;
64
65	rcu_read_lock();
66	tcfv_push_proto = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_push_proto;
67	rcu_read_unlock();
68
69	return tcfv_push_proto;
70}
71
72static inline u8 tcf_vlan_push_prio(const struct tc_action *a)
73{
74	u8 tcfv_push_prio;
75
76	rcu_read_lock();
77	tcfv_push_prio = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_push_prio;
78	rcu_read_unlock();
79
80	return tcfv_push_prio;
81}
 
 
 
 
 
 
 
 
 
 
82#endif /* __NET_TC_VLAN_H */
v6.8
 1/* SPDX-License-Identifier: GPL-2.0-or-later */
 2/*
 3 * Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us>
 
 
 
 
 
 4 */
 5
 6#ifndef __NET_TC_VLAN_H
 7#define __NET_TC_VLAN_H
 8
 9#include <net/act_api.h>
10#include <linux/tc_act/tc_vlan.h>
11
12struct tcf_vlan_params {
13	int               tcfv_action;
14	unsigned char     tcfv_push_dst[ETH_ALEN];
15	unsigned char     tcfv_push_src[ETH_ALEN];
16	u16               tcfv_push_vid;
17	__be16            tcfv_push_proto;
18	u8                tcfv_push_prio;
19	bool              tcfv_push_prio_exists;
20	struct rcu_head   rcu;
21};
22
23struct tcf_vlan {
24	struct tc_action	common;
25	struct tcf_vlan_params __rcu *vlan_p;
26};
27#define to_vlan(a) ((struct tcf_vlan *)a)
28
29static inline bool is_tcf_vlan(const struct tc_action *a)
30{
31#ifdef CONFIG_NET_CLS_ACT
32	if (a->ops && a->ops->id == TCA_ID_VLAN)
33		return true;
34#endif
35	return false;
36}
37
38static inline u32 tcf_vlan_action(const struct tc_action *a)
39{
40	u32 tcfv_action;
41
42	rcu_read_lock();
43	tcfv_action = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_action;
44	rcu_read_unlock();
45
46	return tcfv_action;
47}
48
49static inline u16 tcf_vlan_push_vid(const struct tc_action *a)
50{
51	u16 tcfv_push_vid;
52
53	rcu_read_lock();
54	tcfv_push_vid = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_push_vid;
55	rcu_read_unlock();
56
57	return tcfv_push_vid;
58}
59
60static inline __be16 tcf_vlan_push_proto(const struct tc_action *a)
61{
62	__be16 tcfv_push_proto;
63
64	rcu_read_lock();
65	tcfv_push_proto = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_push_proto;
66	rcu_read_unlock();
67
68	return tcfv_push_proto;
69}
70
71static inline u8 tcf_vlan_push_prio(const struct tc_action *a)
72{
73	u8 tcfv_push_prio;
74
75	rcu_read_lock();
76	tcfv_push_prio = rcu_dereference(to_vlan(a)->vlan_p)->tcfv_push_prio;
77	rcu_read_unlock();
78
79	return tcfv_push_prio;
80}
81
82static inline void tcf_vlan_push_eth(unsigned char *src, unsigned char *dest,
83				     const struct tc_action *a)
84{
85	rcu_read_lock();
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);
88	rcu_read_unlock();
89}
90
91#endif /* __NET_TC_VLAN_H */