diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netdevice.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index fdc3f2992230..b6262898ece0 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -501,9 +501,9 @@ struct netdev_queue { | |||
501 | * please use this field instead of dev->trans_start | 501 | * please use this field instead of dev->trans_start |
502 | */ | 502 | */ |
503 | unsigned long trans_start; | 503 | unsigned long trans_start; |
504 | unsigned long tx_bytes; | 504 | u64 tx_bytes; |
505 | unsigned long tx_packets; | 505 | u64 tx_packets; |
506 | unsigned long tx_dropped; | 506 | u64 tx_dropped; |
507 | } ____cacheline_aligned_in_smp; | 507 | } ____cacheline_aligned_in_smp; |
508 | 508 | ||
509 | #ifdef CONFIG_RPS | 509 | #ifdef CONFIG_RPS |