cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

tc_vlan.h (927B)


      1/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
      2/*
      3 * Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us>
      4 *
      5 * This program is free software; you can redistribute it and/or modify
      6 * it under the terms of the GNU General Public License as published by
      7 * the Free Software Foundation; either version 2 of the License, or
      8 * (at your option) any later version.
      9 */
     10
     11#ifndef __LINUX_TC_VLAN_H
     12#define __LINUX_TC_VLAN_H
     13
     14#include <linux/pkt_cls.h>
     15
     16#define TCA_VLAN_ACT_POP	1
     17#define TCA_VLAN_ACT_PUSH	2
     18#define TCA_VLAN_ACT_MODIFY	3
     19#define TCA_VLAN_ACT_POP_ETH	4
     20#define TCA_VLAN_ACT_PUSH_ETH	5
     21
     22struct tc_vlan {
     23	tc_gen;
     24	int v_action;
     25};
     26
     27enum {
     28	TCA_VLAN_UNSPEC,
     29	TCA_VLAN_TM,
     30	TCA_VLAN_PARMS,
     31	TCA_VLAN_PUSH_VLAN_ID,
     32	TCA_VLAN_PUSH_VLAN_PROTOCOL,
     33	TCA_VLAN_PAD,
     34	TCA_VLAN_PUSH_VLAN_PRIORITY,
     35	TCA_VLAN_PUSH_ETH_DST,
     36	TCA_VLAN_PUSH_ETH_SRC,
     37	__TCA_VLAN_MAX,
     38};
     39#define TCA_VLAN_MAX (__TCA_VLAN_MAX - 1)
     40
     41#endif