blob: 6b835889ea305c1f65a1be503a29edc873ea1cb3 [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>
14
15#define VLAN_F_POP 0x1
16#define VLAN_F_PUSH 0x2
17
18struct tcf_vlan {
WANG Congec0595c2016-07-25 16:09:42 -070019 struct tc_action common;
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010020 int tcfv_action;
Jiri Pirko08dcf9f2014-11-24 11:30:26 +010021 u16 tcfv_push_vid;
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010022 __be16 tcfv_push_proto;
Hadar Hen Zion956af372016-08-17 13:36:14 +030023 u8 tcfv_push_prio;
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010024};
WANG Conga85a9702016-07-25 16:09:41 -070025#define to_vlan(a) ((struct tcf_vlan *)a)
Jiri Pirkoc7e2b962014-11-19 14:05:03 +010026
27#endif /* __NET_TC_VLAN_H */