#ifndef TRAFGEN_L2_H #define TRAFGEN_L2_H enum eth_field { ETH_DST_ADDR, ETH_SRC_ADDR, ETH_TYPE, }; enum pause_field { PAUSE_OPCODE, PAUSE_TIME, }; enum pfc_field { PFC_OPCODE, PFC_PRIO, PFC_PRIO_0, PFC_PRIO_1, PFC_PRIO_2, PFC_PRIO_3, PFC_PRIO_4, PFC_PRIO_5, PFC_PRIO_6, PFC_PRIO_7, PFC_TIME_0, PFC_TIME_1, PFC_TIME_2, PFC_TIME_3, PFC_TIME_4, PFC_TIME_5, PFC_TIME_6, PFC_TIME_7, }; enum arp_field { ARP_HTYPE, ARP_PTYPE, ARP_HLEN, ARP_PLEN, ARP_OPER, ARP_SHA, ARP_SPA, ARP_THA, ARP_TPA, }; enum vlan_field { VLAN_TPID, VLAN_TCI, VLAN_PCP, VLAN_DEI, VLAN_VID, VLAN_ETYPE, }; enum mpls_field { MPLS_LABEL, MPLS_TC, MPLS_LAST, MPLS_TTL, }; extern void protos_l2_init(void); #endif /* TRAFGEN_L2_H */ index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2016-06-15 17:45:44 +0200
committerMichal Marek <mmarek@suse.com>2016-07-18 21:31:35 +0200
commitdc33db7c338e1a7a4a7cb94d73745c8ca54b1ac8 (patch)
treecd6168975a8034912981dc2433123c39b943198c /Makefile
parentb999596b963a6635c153e3d2b3d5bb28b5c45027 (diff)
Kbuild: avoid duplicate include path
arch/$(hdr-arch)/include/generated/uapi is included twice in the header search path, which is unnecessary, so this changes the top-level Makefile to drop the second instance by filtering out everything from USERINCLUDE that was already part of LINUXINCLUDE. This should have very little effect other than making the 'make V=1' output slightly smaller and making the build time faster by a miniscule amount, but it seems to be cleaner. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile