1. 12 May, 2009 1 commit
    • Kazuhisa Ichikawa's avatar
      block: fix the bio_vec array index out-of-bounds test · af498d7f
      Kazuhisa Ichikawa authored
      Current bio_vec array index out-of-bounds test within
      __end_that_request_first() does not seem correct.
      It checks bio->bi_idx against bio->bi_vcnt, but the subsequent code
      uses idx (which is, bio->bi_idx + next_idx) as the array index into
      bio_vec array. This means that the test really make sense only at
      the first iteration of !(nr_bytes >=bio->bi_size) case (when next_idx
      == zero). Fix this by replacing bio->bi_idx with idx.
      (This patch applies to 2.6.30-rc4.)
      Signed-off-by: default avatarKazuhisa Ichikawa <ki@epsilou.com>
      Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
      af498d7f
  2. 10 May, 2009 12 commits
  3. 09 May, 2009 27 commits