summaryrefslogtreecommitdiff
path: root/trafgen_l7.h
blob: cf19fa4f17ab090275b5c50e11e9d4b430201873 (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
#ifndef TRAFGEN_L7_H
#define TRAFGEN_L7_H

enum dns_field {
	DNS_ID,
	DNS_QR,
	DNS_OPCODE,
	DNS_AA,
	DNS_TC,
	DNS_RD,
	DNS_RA,
	DNS_ZERO,
	DNS_RCODE,
	DNS_QD_COUNT,
	DNS_AN_COUNT,
	DNS_NS_COUNT,
	DNS_AR_COUNT,
};

enum dns_header {
	DNS_UNDEF_HDR,
	DNS_QUERY_HDR,
	DNS_ANSWER_HDR,
	DNS_AUTH_HDR,
	DNS_ADD_HDR,
};

enum dns_query_field {
	DNS_QUERY_NAME,
	DNS_QUERY_TYPE,
	DNS_QUERY_CLASS,
};

enum dns_rrecord_field {
	DNS_RRECORD_NAME,
	DNS_RRECORD_TYPE,
	DNS_RRECORD_CLASS,
	DNS_RRECORD_TTL,
	DNS_RRECORD_LEN,
	DNS_RRECORD_DATA,
};

extern void protos_l7_init(void);

#endif /* TRAFGEN_L7_H */
> /drivers/infiniband/hw/hfi1 parente796f49d826aadb856981c751efc086c6ce11a77 (diff)parent7f9ef3af397b2a10730e11fac8475f6509cbf603 (diff)
Merge branch 'mv88e6390-initial-support'
Andrew Lunn says: ==================== Start adding support for mv88e6390 This is the first patchset implementing support for the mv88e6390 family. This is a new generation of switch devices and has numerous incompatible changes to the registers. These patches allow the switch to the detected during probe, and makes the statistics unit work. These patches are insufficient to make the mv88e6390 functional. More patches will follow. v2: Move stats code into global1 Change DT compatible string to mv88e6190 Fixed mv88e6351 stats which v1 had broken ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/infiniband/hw/hfi1')