aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-05-09 17:42:46 +0000
committerDavid S. Miller <davem@davemloft.net>2011-05-13 14:07:23 -0400
commitbdc220da3209d50b8c295490dec94845c88670a2 (patch)
tree00113e90fecf388f084622380774c0b175728954
parent72a8f97bf2dfe1b0f02ba8dbaed7d6b76657aae3 (diff)
downloadkernel_samsung_smdk4412-bdc220da3209d50b8c295490dec94845c88670a2.zip
kernel_samsung_smdk4412-bdc220da3209d50b8c295490dec94845c88670a2.tar.gz
kernel_samsung_smdk4412-bdc220da3209d50b8c295490dec94845c88670a2.tar.bz2
netdevice.h: Align struct net_device members
Save a bit of space. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--include/linux/netdevice.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 1d9696a..a134d80 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -1020,9 +1020,6 @@ struct net_device {
* part of the usual set specified in Space.c.
*/
- unsigned char if_port; /* Selectable AUI, TP,..*/
- unsigned char dma; /* DMA channel */
-
unsigned long state;
struct list_head dev_list;
@@ -1146,13 +1143,16 @@ struct net_device {
const struct header_ops *header_ops;
unsigned int flags; /* interface flags (a la BSD) */
+ unsigned int priv_flags; /* Like 'flags' but invisible to userspace. */
unsigned short gflags;
- unsigned int priv_flags; /* Like 'flags' but invisible to userspace. */
unsigned short padded; /* How much padding added by alloc_netdev() */
unsigned char operstate; /* RFC2863 operstate */
unsigned char link_mode; /* mapping policy to operstate */
+ unsigned char if_port; /* Selectable AUI, TP,..*/
+ unsigned char dma; /* DMA channel */
+
unsigned int mtu; /* interface MTU value */
unsigned short type; /* interface hardware type */
unsigned short hard_header_len; /* hardware hdr length */