summaryrefslogtreecommitdiff
path: root/trafgen_l3.h
blob: e0c9a1cc3dbf0235aa49232a7a8d5f6c1154c6bc (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
#ifndef TRAFGEN_L3_H
#define TRAFGEN_L3_H

enum ip4_field {
	IP4_VER,
	IP4_IHL,
	IP4_DSCP,
	IP4_ECN,
	IP4_TOS,
	IP4_LEN,
	IP4_ID,
	IP4_FLAGS,
	IP4_MF,
	IP4_DF,
	IP4_FRAG_OFFS,
	IP4_TTL,
	IP4_PROTO,
	IP4_CSUM,
	IP4_SADDR,
	IP4_DADDR,
};

enum ip6_field {
	IP6_VER,
	IP6_CLASS,
	IP6_FLOW_LBL,
	IP6_LEN,
	IP6_NEXT_HDR,
	IP6_HOP_LIMIT,
	IP6_SADDR,
	IP6_DADDR,
};

extern void protos_l3_init(void);

#endif /* TRAFGEN_L2_H */
d30ec961fa8e1333a3818bacc5b0607c20a210 parent98eb253cbde7e860fad83fa759058269ca69916d (diff)
net: ethernet: ti: cpsw: return NET_XMIT_DROP if skb_padto failed
If skb_padto failed the skb has been dropped already, so it was consumed, but it doesn't mean it was sent, thus no need to update queue tx time, etc. So, return NET_XMIT_DROP as more appropriate. Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat
-rw-r--r--drivers/net/ethernet/ti/cpsw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c