Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81e81575 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by David S. Miller
Browse files

[BRIDGE]: make dev->features unsigned



The features field in netdevice is really a bitmask, and bitmask's should
be unsigned.

Signed-off-by: default avatarStephen Hemminger <shemminger@osdl.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d8a33ac4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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. */
+1 −1
Original line number Diff line number Diff line
@@ -682,7 +682,7 @@ int dev_ethtool(struct ifreq *ifr)
	void __user *useraddr = ifr->ifr_data;
	u32 ethcmd;
	int rc;
	int old_features;
	unsigned long old_features;

	/*
	 * XXX: This can be pushed down into the ethtool_* handlers that