summaryrefslogtreecommitdiff
path: root/include/linux/netdevice.h
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2012-09-26 07:07:47 (GMT)
committerDavid S. Miller <davem@davemloft.net>2012-09-27 23:29:35 (GMT)
commit404f7c9e118e0c92902afe1853d35f5638fe4a4c (patch)
tree91fef7641a22df0e1acf262777b29fe8c0be9cad /include/linux/netdevice.h
parent69b08f62e17439ee3d436faf0b9a7ca6fffb78db (diff)
downloadlinux-fsl-qoriq-404f7c9e118e0c92902afe1853d35f5638fe4a4c.tar.xz
net: struct napi_struct fields reordering
Remove two holes on 64bit arches, and put dev_list at the end of napi_struct since its not used in fast path. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r--include/linux/netdevice.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 6c131f0..dd320bb 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -338,18 +338,16 @@ struct napi_struct {
unsigned long state;
int weight;
+ unsigned int gro_count;
int (*poll)(struct napi_struct *, int);
#ifdef CONFIG_NETPOLL
spinlock_t poll_lock;
int poll_owner;
#endif
-
- unsigned int gro_count;
-
struct net_device *dev;
- struct list_head dev_list;
struct sk_buff *gro_list;
struct sk_buff *skb;
+ struct list_head dev_list;
};
enum {