blob: c2090df944ff53224ef0500c05f62672f0d5e0b3 [file] [log] [blame]
Jiri Pirkoc7e2b962014-11-19 14:05:03 +01001/*
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>
Or Gerlitz53e89942016-09-22 20:01:41 +030014#include <linux/tc_act/tc_vlan.h>
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010015
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010016struct tcf_vlan {
WANG Congec0595c2016-07-25 16:09:42 -070017 struct tc_action common;
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010018 int tcfv_action;
Jiri Pirko08dcf9f2014-11-24 11:30:26 +010019 u16 tcfv_push_vid;
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010020 __be16 tcfv_push_proto;
Hadar Hen Zion956af372016-08-17 13:36:14 +030021 u8 tcfv_push_prio;
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010022};
WANG Conga85a9702016-07-25 16:09:41 -070023#define to_vlan(a) ((struct tcf_vlan *)a)
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010024
Or Gerlitz53e89942016-09-22 20:01:41 +030025static inline bool is_tcf_vlan(const struct tc_action *a)
26{
27#ifdef CONFIG_NET_CLS_ACT
28 if (a->ops && a->ops->type == TCA_ACT_VLAN)
29 return true;
30#endif
31 return false;
32}
33
34static inline u32 tcf_vlan_action(const struct tc_action *a)
35{
36 return to_vlan(a)->tcfv_action;
37}
38
39static inline u16 tcf_vlan_push_vid(const struct tc_action *a)
40{
41 return to_vlan(a)->tcfv_push_vid;
42}
43
44static inline __be16 tcf_vlan_push_proto(const struct tc_action *a)
45{
46 return to_vlan(a)->tcfv_push_proto;
47}
48
Petr Machataa1502012017-03-09 09:25:19 +010049static inline u8 tcf_vlan_push_prio(const struct tc_action *a)
50{
51 return to_vlan(a)->tcfv_push_prio;
52}
53
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010054#endif /* __NET_TC_VLAN_H */