summaryrefslogtreecommitdiff
path: root/trafgen_l2.h
blob: dd1d947c192016dcd306ca8d71cf9b3879252a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#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 */
8f2684633ec79be88'>diff)
tracing: Fix hwlat kthread migration
The hwlat tracer creates a kernel thread at start of the tracer. It is pinned to a single CPU and will move to the next CPU after each period of running. If the user modifies the migration thread's affinity, it will not change after that happens. The original code created the thread at the first instance it was called, but later was changed to destroy the thread after the tracer was finished, and would not be created until the next instance of the tracer was established. The code that initialized the affinity was only called on the initial instantiation of the tracer. After that, it was not initialized, and the previous affinity did not match the current newly created one, making it appear that the user modified the thread's affinity when it did not, and the thread failed to migrate again. Cc: stable@vger.kernel.org Fixes: 0330f7aa8ee6 ("tracing: Have hwlat trace migrate across tracing_cpumask CPUs") Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'include/acpi/acpi_lpat.h')