An error occurred fetching the project authors.
  1. 29 Nov, 2006 1 commit
  2. 10 Oct, 2006 2 commits
  3. 22 Sep, 2006 4 commits
  4. 14 Sep, 2006 1 commit
  5. 03 Aug, 2006 2 commits
  6. 15 Jul, 2006 2 commits
  7. 18 Jun, 2006 11 commits
  8. 17 May, 2006 3 commits
  9. 09 May, 2006 1 commit
  10. 19 Apr, 2006 1 commit
  11. 03 Apr, 2006 1 commit
  12. 29 Mar, 2006 1 commit
    • Roland Dreier's avatar
      IB/srp: Fix unmapping of fake scatterlist · 3f89f834
      Roland Dreier authored
      The recently merged patch to create a fake scatterlist for non-SG SCSI
      commands had a bug: the driver ended up doing dma_unmap_sg() on a
      scatterlist scmnd->request_buffer rather than the fake scatter list it
      created.  Fix this so that the driver unmaps the same thing it maps.
      Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
      3f89f834
  13. 24 Mar, 2006 1 commit
    • Roland Dreier's avatar
      IB/srp: Use a fake scatterlist for non-SG SCSI commands · cf368713
      Roland Dreier authored
      Since the SCSI midlayer is moving towards entirely getting rid of
      commands with use_sg == 0, we should treat this case as an exception.
      Therefore, change the IB SRP initiator to create a fake scatterlist
      for these commands with sg_init_one().  This simplifies the flow of
      DMA mapping and unmapping, since SRP can just use dma_map_sg() and
      dma_unmap_sg() unconditionally, rather than having to choose between
      the dma_{map,unmap}_sg() and dma_{map,unmap}_single() variants.
      Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
      cf368713
  14. 20 Mar, 2006 2 commits
  15. 04 Mar, 2006 1 commit
  16. 30 Jan, 2006 1 commit
  17. 10 Jan, 2006 1 commit
  18. 09 Jan, 2006 1 commit
  19. 15 Nov, 2005 1 commit
    • Roland Dreier's avatar
      [IB] srp: don't post receive if no send buf available · 47f2bce9
      Roland Dreier authored
      Have __srp_get_tx_iu() fail if the target port's request limit will
      not allow the initiator to post a send.  This avoids continuing on and
      posting a receive, and then failing to post a corresponding send.  If
      that happens, then the initiator will end up with an extra receive
      posted, and if this happens to much, the receive queue will overflow.
      Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
      47f2bce9
  20. 11 Nov, 2005 1 commit
  21. 09 Nov, 2005 1 commit
    • Olaf Hering's avatar
      [PATCH] changing CONFIG_LOCALVERSION rebuilds too much, for no good reason · 733482e4
      Olaf Hering authored
      This patch removes almost all inclusions of linux/version.h.  The 3
      #defines are unused in most of the touched files.
      
      A few drivers use the simple KERNEL_VERSION(a,b,c) macro, which is
      unfortunatly in linux/version.h.
      
      There are also lots of #ifdef for long obsolete kernels, this was not
      touched.  In a few places, the linux/version.h include was move to where
      the LINUX_VERSION_CODE was used.
      
      quilt vi `find * -type f -name "*.[ch]"|xargs grep -El '(UTS_RELEASE|LINUX_VERSION_CODE|KERNEL_VERSION|linux/version.h)'|grep -Ev '(/(boot|coda|drm)/|~$)'`
      
      search pattern:
      /UTS_RELEASE\|LINUX_VERSION_CODE\|KERNEL_VERSION\|linux\/\(utsname\|version\).h
      Signed-off-by: default avatarOlaf Hering <olh@suse.de>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      733482e4