1. 02 4月, 2006 1 次提交
  2. 28 3月, 2006 12 次提交
  3. 04 2月, 2006 1 次提交
  4. 15 1月, 2006 1 次提交
  5. 07 1月, 2006 10 次提交
  6. 13 12月, 2005 1 次提交
  7. 29 11月, 2005 1 次提交
  8. 09 11月, 2005 10 次提交
  9. 07 11月, 2005 1 次提交
  10. 01 11月, 2005 1 次提交
    • J
      [BLOCK] Unify the seperate read/write io stat fields into arrays · a362357b
      Jens Axboe 提交于
      Instead of having ->read_sectors and ->write_sectors, combine the two
      into ->sectors[2] and similar for the other fields. This saves a branch
      several places in the io path, since we don't have to care for what the
      actual io direction is. On my x86-64 box, that's 200 bytes less text in
      just the core (not counting the various drivers).
      Signed-off-by: NJens Axboe <axboe@suse.de>
      a362357b
  11. 10 9月, 2005 1 次提交
    • N
      [PATCH] md: add write-intent-bitmap support to raid5 · 72626685
      NeilBrown 提交于
      Most awkward part of this is delaying write requests until bitmap updates have
      been flushed.
      
      To achieve this, we have a sequence number (seq_flush) which is incremented
      each time the raid5 is unplugged.
      
      If the raid thread notices that this has changed, it flushes bitmap changes,
      and assigned the value of seq_flush to seq_write.
      
      When a write request arrives, it is given the number from seq_write, and that
      write request may not complete until seq_flush is larger than the saved seq
      number.
      
      We have a new queue for storing stripes which are waiting for a bitmap flush
      and an extra flag for stripes to record if the write was 'degraded' and so
      should not clear the a bit in the bitmap.
      Signed-off-by: NNeil Brown <neilb@cse.unsw.edu.au>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      72626685