diff options
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index c11a44ea1bf4..06a4c0fd7bef 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -361,6 +361,7 @@ typedef unsigned char *sk_buff_data_t; | |||
361 | * ports. | 361 | * ports. |
362 | * @wifi_acked_valid: wifi_acked was set | 362 | * @wifi_acked_valid: wifi_acked was set |
363 | * @wifi_acked: whether frame was acked on wifi or not | 363 | * @wifi_acked: whether frame was acked on wifi or not |
364 | * @no_fcs: Request NIC to treat last 4 bytes as Ethernet FCS | ||
364 | * @dma_cookie: a cookie to one of several possible DMA operations | 365 | * @dma_cookie: a cookie to one of several possible DMA operations |
365 | * done by skb DMA functions | 366 | * done by skb DMA functions |
366 | * @secmark: security marking | 367 | * @secmark: security marking |
@@ -459,7 +460,8 @@ struct sk_buff { | |||
459 | __u8 l4_rxhash:1; | 460 | __u8 l4_rxhash:1; |
460 | __u8 wifi_acked_valid:1; | 461 | __u8 wifi_acked_valid:1; |
461 | __u8 wifi_acked:1; | 462 | __u8 wifi_acked:1; |
462 | /* 10/12 bit hole (depending on ndisc_nodetype presence) */ | 463 | __u8 no_fcs:1; |
464 | /* 9/11 bit hole (depending on ndisc_nodetype presence) */ | ||
463 | kmemcheck_bitfield_end(flags2); | 465 | kmemcheck_bitfield_end(flags2); |
464 | 466 | ||
465 | #ifdef CONFIG_NET_DMA | 467 | #ifdef CONFIG_NET_DMA |