diff options
author | David S. Miller <davem@davemloft.net> | 2010-05-03 01:27:59 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-03 01:27:59 -0400 |
commit | cd7b5396e7e4d10c51116f59f414ff90312af8d4 (patch) | |
tree | a89bf09771539582226dece2740734108f5a848a /include/linux | |
parent | dee42870a423ad485129f43cddfe7275479f11d8 (diff) |
net: Use explicit "unsigned int" instead of plain "unsigned" in netdevice.h
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/netdevice.h | 10 |
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; |