1. 03 Mar, 2010 1 commit
  2. 07 Dec, 2009 1 commit
  3. 20 Nov, 2009 1 commit
  4. 22 Feb, 2009 1 commit
    • Randy Dunlap's avatar
      docbook: split kernel-api for device-drivers · f7f84f38
      Randy Dunlap authored
      
      The kernel-api docbook was much larger than any of the others,
      so processing it took longer and needed some docbook extras in
      some cases, so split it into kernel-api (infrastructure etc.)
      and device drivers/device subsystems.  This allows these docbooks
      to be generated in parallel.  (This reduced the docbook processing
      time on my 4-proc system with make -j4 from about 5min:16sec to
      about 2min:01sec.)
      
      The chapters that were moved from kernel-api to device-drivers are:
      
      Driver Basics
      Device drivers infrastructure
      Parallel Port Devices
      Message-based devices
      Sound Devices
      16x50 UART Driver
      Frame Buffer Library
      Input Subsystem
      Serial Peripheral Interface (SPI)
      I2C and SMBus Subsystem
      Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
      Acked-by: default avatarSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      f7f84f38
  5. 26 Oct, 2008 1 commit
    • Randy Dunlap's avatar
      docbooks: fix fatal filename errors · a1a739c5
      Randy Dunlap authored
      
      Fix docbook fatal errors (file location changed):
      
      docproc: lin2628-rc1/include/asm-x86/io_32.h: No such file or directory
      make[1]: *** [Documentation/DocBook/deviceiobook.xml] Error 1
      
      docproc: lin2628-rc1/include/asm-x86/atomic_32.h: No such file or directory
      make[1]: *** [Documentation/DocBook/kernel-api.xml] Error 1
      
      docproc: lin2628-rc1/include/asm-x86/mca_dma.h: No such file or directory
      make[1]: *** [Documentation/DocBook/mcabook.xml] Error 1
      Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      a1a739c5
  6. 09 Oct, 2008 1 commit
  7. 20 Aug, 2008 1 commit
  8. 28 Apr, 2008 2 commits
  9. 20 Apr, 2008 1 commit
  10. 04 Mar, 2008 1 commit
  11. 14 Feb, 2008 4 commits
  12. 07 Feb, 2008 1 commit
  13. 30 Jan, 2008 1 commit
  14. 19 Oct, 2007 1 commit
    • Randy Dunlap's avatar
      kernel-api docbook: fix content problems · 8f731f7d
      Randy Dunlap authored
      
      Fix kernel-api docbook contents problems.
      
      docproc: linux-2.6.23-git13/include/asm-x86/unaligned_32.h: No such file or directory
      Warning(linux-2.6.23-git13//include/linux/list.h:482): bad line: 			of list entry
      Warning(linux-2.6.23-git13//mm/filemap.c:864): No description found for parameter 'ra'
      Warning(linux-2.6.23-git13//block/ll_rw_blk.c:3760): No description found for parameter 'req'
      Warning(linux-2.6.23-git13//include/linux/input.h:1077): No description found for parameter 'private'
      Warning(linux-2.6.23-git13//include/linux/input.h:1077): No description found for parameter 'cdev'
      Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
      Cc: Jens Axboe <jens.axboe@oracle.com>
      Cc: WU Fengguang <wfg@mail.ustc.edu.cn>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      8f731f7d
  15. 17 Oct, 2007 2 commits
  16. 13 Oct, 2007 1 commit
  17. 10 Oct, 2007 1 commit
    • Stephen Hemminger's avatar
      [NET]: Make NAPI polling independent of struct net_device objects. · bea3348e
      Stephen Hemminger authored
      
      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: default avatarStephen Hemminger <shemminger@linux-foundation.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      bea3348e
  18. 31 Jul, 2007 2 commits
  19. 27 Jul, 2007 1 commit
  20. 19 Jul, 2007 1 commit
  21. 18 Jul, 2007 1 commit
  22. 17 Jul, 2007 1 commit
  23. 12 Jul, 2007 1 commit
  24. 10 Jul, 2007 1 commit
  25. 09 May, 2007 1 commit
  26. 08 May, 2007 1 commit
  27. 28 Apr, 2007 1 commit
  28. 11 Feb, 2007 1 commit
  29. 07 Dec, 2006 2 commits
  30. 24 Nov, 2006 1 commit
  31. 30 Oct, 2006 1 commit
  32. 04 Oct, 2006 1 commit
  33. 03 Oct, 2006 1 commit