1. 21 Apr, 2006 1 commit
  2. 18 Apr, 2006 1 commit
    • OGAWA Hirofumi's avatar
      [PATCH 1/2] iosched: fix typo and barrier() · fba82272
      OGAWA Hirofumi authored
      
      On rmmod path, cfq/as waits to make sure all io-contexts was
      freed. However, it's using complete(), not wait_for_completion().
      
      I think barrier() is not enough in here. To avoid the following case,
      this patch replaces barrier() with smb_wmb().
      
      	cpu0			visibility			cpu1
      	                [ioc_gnone=NULL,ioc_count=1]
      
      ioc_gnone = &all_gone		NULL,ioc_count=1
      atomic_read(&ioc_count)		NULL,ioc_count=1
      wait_for_completion()		NULL,ioc_count=0	atomic_sub_and_test()
      				NULL,ioc_count=0	if ( && ioc_gone)
      						    [ioc_gone==NULL,
      						    so doesn't call complete()]
      			   &all_gone,ioc_count=0
      Signed-off-by: default avatarOGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
      Signed-off-by: default avatarJens Axboe <axboe@suse.de>
      fba82272
  3. 19 Mar, 2006 1 commit
  4. 18 Mar, 2006 3 commits
  5. 06 Jan, 2006 1 commit
    • Tejun Heo's avatar
      [BLOCK] as-iosched: update alias handling · ef9be1d3
      Tejun Heo authored
      
      Unlike other ioscheds, as-iosched handles alias by chaing them using
      rq->queuelist.  As aliased requests are very rare in the first place,
      this complicates merge/dispatch handling without meaningful
      performance improvement.  This patch updates as-iosched to dump
      aliased requests into dispatch queue as other ioscheds do.
      Signed-off-by: default avatarTejun Heo <htejun@gmail.com>
      Signed-off-by: default avatarJens Axboe <axboe@suse.de>
      ef9be1d3
  6. 21 Nov, 2005 1 commit
  7. 18 Nov, 2005 1 commit
  8. 04 Nov, 2005 1 commit
  9. 31 Oct, 2005 1 commit
  10. 29 Oct, 2005 1 commit
    • Tejun Heo's avatar
      [PATCH] blk: fix merge bug in as-iosched · 47e627ce
      Tejun Heo authored
      
      as-iosched deals with aliased requests differently from other ioscheds.
      
      It links together aliased requests using rq->queuelist instead of
      spilling alises to dispatch queue like other ioscheds do.  Requests
      linked in this way cannot be merged.
      
      Unfortunately, generic q->last_merge handling patch didn't take this
      into account and q->last_merge could be set to an aliased request
      resulting in Badness, corrupt list and eventually panic.
      
      This explicitly marks aliased requests to be unmergeable.
      Signed-off-by: default avatarTejun Heo <htejun@gmail.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      47e627ce
  11. 28 Oct, 2005 3 commits
  12. 27 Jul, 2005 1 commit
  13. 27 Jun, 2005 1 commit
    • Jens Axboe's avatar
      [PATCH] Update cfq io scheduler to time sliced design · 22e2c507
      Jens Axboe authored
      
      This updates the CFQ io scheduler to the new time sliced design (cfq
      v3).  It provides full process fairness, while giving excellent
      aggregate system throughput even for many competing processes.  It
      supports io priorities, either inherited from the cpu nice value or set
      directly with the ioprio_get/set syscalls.  The latter closely mimic
      set/getpriority.
      
      This import is based on my latest from -mm.
      Signed-off-by: default avatarJens Axboe <axboe@suse.de>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      22e2c507
  14. 23 Jun, 2005 1 commit
  15. 20 Jun, 2005 1 commit
  16. 16 Apr, 2005 1 commit
    • Linus Torvalds's avatar
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds authored
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4