1. 09 11月, 2007 1 次提交
  2. 17 10月, 2007 1 次提交
  3. 16 10月, 2007 1 次提交
  4. 10 10月, 2007 1 次提交
  5. 24 7月, 2007 1 次提交
  6. 24 5月, 2007 1 次提交
  7. 03 10月, 2006 1 次提交
  8. 24 5月, 2006 1 次提交
    • N
      [PATCH] md: fix possible oops when starting a raid0 array · 5c4c3331
      NeilBrown 提交于
      This loop that sets up the hash_table has problems.
      
      Careful examination will show that the last time through, everything but
      the first line is pointless.  This is because all it does is change 'cur'
      and 'size' and neither of these are used after the loop.  This should ring
      warning bells...  That last time through the loop,
      
              size += conf->strip_zone[cur].size
      
      can index off the end of the strip_zone array.  Depending on what it finds
      there, it might exit the loop cleanly, or it might spin going further and
      further beyond the array until it hits an unmapped address.
      
      This patch rearranges the code so that the last, pointless, iteration of
      the loop never happens.  i.e.  the one statement of the last loop that is
      needed is moved the the end of the previous loop - or to before the loop
      starts - and the loop counter starts from 1 instead of 0.
      
      Cc: "Don Dupuis" <dondster@gmail.com>
      Signed-off-by: NNeil Brown <neilb@suse.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      5c4c3331
  9. 04 2月, 2006 1 次提交
  10. 09 1月, 2006 1 次提交
  11. 07 1月, 2006 4 次提交
  12. 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
  13. 10 9月, 2005 1 次提交
  14. 16 7月, 2005 1 次提交
  15. 22 6月, 2005 1 次提交
  16. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      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