aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/netdevice.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index c39938f8a8d8..98112fbddefd 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -878,7 +878,7 @@ struct net_device {
878 unsigned char operstate; /* RFC2863 operstate */ 878 unsigned char operstate; /* RFC2863 operstate */
879 unsigned char link_mode; /* mapping policy to operstate */ 879 unsigned char link_mode; /* mapping policy to operstate */
880 880
881 unsigned mtu; /* interface MTU value */ 881 unsigned int mtu; /* interface MTU value */
882 unsigned short type; /* interface hardware type */ 882 unsigned short type; /* interface hardware type */
883 unsigned short hard_header_len; /* hardware hdr length */ 883 unsigned short hard_header_len; /* hardware hdr length */
884 884
@@ -1381,10 +1381,10 @@ struct softnet_data {
1381 struct sk_buff_head process_queue; 1381 struct sk_buff_head process_queue;
1382 1382
1383 /* stats */ 1383 /* stats */
1384 unsigned processed; 1384 unsigned int processed;
1385 unsigned time_squeeze; 1385 unsigned int time_squeeze;
1386 unsigned cpu_collision; 1386 unsigned int cpu_collision;
1387 unsigned received_rps; 1387 unsigned int received_rps;
1388 1388
1389#ifdef CONFIG_RPS 1389#ifdef CONFIG_RPS
1390 struct softnet_data *rps_ipi_list; 1390 struct softnet_data *rps_ipi_list;