1
0
Fork 0
alistair23-linux/drivers/net/ixp2000
Stephen Hemminger bea3348eef [NET]: Make NAPI polling independent of struct net_device objects.
Several devices have multiple independant RX queues per net
device, and some have a single interrupt doorbell for several
queues.

In either case, it's easier to support layouts like that if the
structure representing the poll is independant from the net
device itself.

The signature of the ->poll() call back goes from:

	int foo_poll(struct net_device *dev, int *budget)

to

	int foo_poll(struct napi_struct *napi, int budget)

The caller is returned the number of RX packets processed (or
the number of "NAPI credits" consumed if you want to get
abstract).  The callee no longer messes around bumping
dev->quota, *budget, etc. because that is all handled in the
caller upon return.

The napi_struct is to be embedded in the device driver private data
structures.

Furthermore, it is the driver's responsibility to disable all NAPI
instances in it's ->stop() device close handler.  Since the
napi_struct is privatized into the driver's private data structures,
only the driver knows how to get at all of the napi_struct instances
it may have per-device.

With lots of help and suggestions from Rusty Russell, Roland Dreier,
Michael Chan, Jeff Garzik, and Jamal Hadi Salim.

Bug fixes from Thomas Graf, Roland Dreier, Peter Zijlstra,
Joseph Fannin, Scott Wood, Hans J. Koch, and Michael Chan.

[ Ported to current tree and all drivers converted.  Integrated
  Stephen's follow-on kerneldoc additions, and restored poll_list
  handling to the old style to fix mutual exclusion issues.  -DaveM ]

Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-10-10 16:47:45 -07:00
..
Kconfig [PATCH] intel ixp2000 network driver 2005-11-18 13:32:22 -05:00
Makefile [PATCH] intel ixp2000 network driver 2005-11-18 13:32:22 -05:00
caleb.c Remove obsolete #include <linux/config.h> 2006-06-30 19:25:36 +02:00
caleb.h [PATCH] intel ixp2000 network driver 2005-11-18 13:32:22 -05:00
enp2611.c Remove obsolete #include <linux/config.h> 2006-06-30 19:25:36 +02:00
ixp2400-msf.c Remove obsolete #include <linux/config.h> 2006-06-30 19:25:36 +02:00
ixp2400-msf.h [PATCH] intel ixp2000 network driver 2005-11-18 13:32:22 -05:00
ixp2400_rx.uc [PATCH] intel ixp2000 network driver 2005-11-18 13:32:22 -05:00
ixp2400_rx.ucode [PATCH] intel ixp2000 network driver 2005-11-18 13:32:22 -05:00
ixp2400_tx.uc [PATCH] intel ixp2000 network driver 2005-11-18 13:32:22 -05:00
ixp2400_tx.ucode [PATCH] intel ixp2000 network driver 2005-11-18 13:32:22 -05:00
ixpdev.c [NET]: Make NAPI polling independent of struct net_device objects. 2007-10-10 16:47:45 -07:00
ixpdev.h [NET]: Make NAPI polling independent of struct net_device objects. 2007-10-10 16:47:45 -07:00
ixpdev_priv.h [PATCH] intel ixp2000 network driver 2005-11-18 13:32:22 -05:00
pm3386.c Remove obsolete #include <linux/config.h> 2006-06-30 19:25:36 +02:00
pm3386.h The ixp2000 driver for the enp2611 was developed on a board with 2006-05-15 12:25:29 -07:00