diff options
author | Muthu Kumar <muthu.lkml@gmail.com> | 2014-01-08 16:19:52 -0500 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2014-01-08 16:19:52 -0500 |
commit | c7b22bb19a24fef1a851a41e5c0657c0c4a41550 (patch) | |
tree | 1fac305df2871fdeb16e2ef03d2c39c1d87ba9f5 | |
parent | 1331107f8a8611f3520046f50c44af9b2102bfd2 (diff) |
btrfs: fix missing increment of bi_remaining
In btrfs_end_bio(), we increment bi_remaining if is_orig_bio. If not,
we restore the orig_bio but failed to increment bi_remaining for
orig_bio, which triggers a BUG_ON later when bio_endio is called. Fix
is to increment bi_remaining when we restore the orig bio as well.
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
CC: Kent Overstreet <kmo@daterainc.com>
Signed-off-by: Muthukumar Ratty <muthur@gmail.com>
Reviewed-by: Chris Mason <clm@fb.com>
Tested-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | fs/btrfs/volumes.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 37972d5db737..54d2685a3071 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c | |||
@@ -5297,9 +5297,14 @@ static void btrfs_end_bio(struct bio *bio, int err) | |||
5297 | if (!is_orig_bio) { | 5297 | if (!is_orig_bio) { |
5298 | bio_put(bio); | 5298 | bio_put(bio); |
5299 | bio = bbio->orig_bio; | 5299 | bio = bbio->orig_bio; |
5300 | } else { | ||
5301 | atomic_inc(&bio->bi_remaining); | ||
5302 | } | 5300 | } |
5301 | |||
5302 | /* | ||
5303 | * We have original bio now. So increment bi_remaining to | ||
5304 | * account for it in endio | ||
5305 | */ | ||
5306 | atomic_inc(&bio->bi_remaining); | ||
5307 | |||
5303 | bio->bi_private = bbio->private; | 5308 | bio->bi_private = bbio->private; |
5304 | bio->bi_end_io = bbio->end_io; | 5309 | bio->bi_end_io = bbio->end_io; |
5305 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; | 5310 | btrfs_io_bio(bio)->mirror_num = bbio->mirror_num; |