aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@osdl.org>2005-05-29 14:14:35 -0700
committerDavid S. Miller <davem@davemloft.net>2005-05-29 14:14:35 -0700
commit81e8157583c559c27aac75c708d40a35f563d734 (patch)
tree3172c6de15e6a8ea07373a23e901ee0e4366c4f1 /include
parent[BRIDGE]: features change notification (diff)
downloadlinux-dev-81e8157583c559c27aac75c708d40a35f563d734.tar.xz
linux-dev-81e8157583c559c27aac75c708d40a35f563d734.zip
[BRIDGE]: make dev->features unsigned
The features field in netdevice is really a bitmask, and bitmask's should be unsigned. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/netdevice.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index d8c65ecef9d9..470af8c1a4a0 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -401,7 +401,7 @@ struct net_device
} reg_state;
/* Net device features */
- int features;
+ unsigned long features;
#define NETIF_F_SG 1 /* Scatter/gather IO. */
#define NETIF_F_IP_CSUM 2 /* Can checksum only TCP/UDP over IPv4. */
#define NETIF_F_NO_CSUM 4 /* Does not require checksum. F.e. loopack. */