]> bbs.cooldavid.org Git - net-next-2.6.git/commit - include/linux/netdevice.h
[NET]: Inline net_device_stats
authorRusty Russell <rusty@rustcorp.com.au>
Wed, 28 Mar 2007 21:29:08 +0000 (14:29 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Thu, 26 Apr 2007 05:28:26 +0000 (22:28 -0700)
commitc45d286e72dd72c0229dc9e2849743ba427fee84
tree1fb22a5e71c89043671380087def5bc419a37886
parentf85958151900f9d30fa5ff941b0ce71eaa45a7de
[NET]: Inline net_device_stats

Network drivers which keep stats allocate their own stats structure
then write a get_stats() function to return them.  It would be nice if
this were done by default.

1) Add a new "stats" field to "struct net_device".
2) Add a new feature field to say "this driver uses the internal one"
3) Have a default "get_stats" which returns NULL if that feature not set.
4) Change callers to check result of get_stats call for NULL, not if
   ->get_stats is set.

This should not break backwards compatibility with older drivers, yet
allow modern drivers to shed some boilerplate code.

Lightly tested: works for a modified lguest network driver.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/s390/appldata/appldata_net_sum.c
drivers/net/bonding/bond_main.c
drivers/parisc/led.c
include/linux/netdevice.h
net/core/dev.c