Skip to content

Commit

Permalink
net: struct napi_struct fields reordering
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Sep 27, 2012
1 parent 69b08f6 commit 404f7c9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions include/linux/netdevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 404f7c9

Please sign in to comment.