aboutsummaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-05-18 04:15:09 -0400
committerIngo Molnar <mingo@elte.hu>2009-05-18 04:15:35 -0400
commit1079cac0f4eb7d968395378b1625979d4c818dd6 (patch)
treed261058d95d27fe7250511d5fad69db30dc17731 /block
parent5872144f64b34a5942f6b4acedc90b02de72c58b (diff)
parent1406de8e11eb043681297adf86d6892ff8efc27a (diff)
Merge commit 'v2.6.30-rc6' into tracing/core
Merge reason: we were on an -rc4 base, sync up to -rc6 Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'block')
-rw-r--r--block/blk-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/blk-core.c b/block/blk-core.c
index d028baf946a3..1306de9cce04 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -1767,10 +1767,10 @@ static int __end_that_request_first(struct request *req, int error,
1767 } else { 1767 } else {
1768 int idx = bio->bi_idx + next_idx; 1768 int idx = bio->bi_idx + next_idx;
1769 1769
1770 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) { 1770 if (unlikely(idx >= bio->bi_vcnt)) {
1771 blk_dump_rq_flags(req, "__end_that"); 1771 blk_dump_rq_flags(req, "__end_that");
1772 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n", 1772 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
1773 __func__, bio->bi_idx, bio->bi_vcnt); 1773 __func__, idx, bio->bi_vcnt);
1774 break; 1774 break;
1775 } 1775 }
1776 1776