1. 17 10月, 2007 2 次提交
  2. 14 10月, 2007 4 次提交
  3. 12 10月, 2007 1 次提交
  4. 11 10月, 2007 1 次提交
    • S
      [NET]: Make NAPI polling independent of struct net_device objects. · bea3348e
      Stephen Hemminger 提交于
      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: NStephen Hemminger <shemminger@linux-foundation.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      bea3348e
  5. 23 8月, 2007 1 次提交
  6. 09 8月, 2007 1 次提交
    • A
      remove dubious legal statment from uio-howto · 6adb31c9
      Alan Cox 提交于
      UIO currently contains a rather dubious statement which wants removing.
      
      The actual questions around whether user space code that depends tightly
      on kernel GPL code designed to co-work with it are derivative works of
      the kernel is extremely complex, and since we don't have space for either
      a masters length essay on legal issues or need to start flamewars lets
      simply remove the comment and leave law to lawyers
      Signed-off-by: NAlan Cox <alan@redhat.com>
      Signed-off-by: NLinus Torvalds <tovalds@linux-foundation.org>
      6adb31c9
  7. 01 8月, 2007 3 次提交
  8. 27 7月, 2007 1 次提交
  9. 23 7月, 2007 1 次提交
  10. 21 7月, 2007 1 次提交
  11. 20 7月, 2007 2 次提交
  12. 19 7月, 2007 1 次提交
  13. 18 7月, 2007 1 次提交
  14. 17 7月, 2007 1 次提交
  15. 12 7月, 2007 1 次提交
  16. 10 7月, 2007 1 次提交
  17. 23 5月, 2007 1 次提交
  18. 17 5月, 2007 1 次提交
  19. 09 5月, 2007 4 次提交
  20. 03 5月, 2007 2 次提交
  21. 28 4月, 2007 1 次提交
  22. 12 2月, 2007 3 次提交
  23. 20 1月, 2007 1 次提交
  24. 31 12月, 2006 1 次提交
  25. 18 12月, 2006 1 次提交
  26. 08 12月, 2006 2 次提交