diff options
author | Miao Xie <miaox@cn.fujitsu.com> | 2014-06-18 22:42:54 -0400 |
---|---|---|
committer | Chris Mason <clm@fb.com> | 2014-06-19 17:20:56 -0400 |
commit | c55f13964008bfea7c5bee268f28b699cbad7f00 (patch) | |
tree | 3d173761484c4fb7ed9933476a6f56e4f44c6579 /fs | |
parent | e990f16763abad35dd4d0eec791bab37c6987724 (diff) |
Btrfs: fix deadlock when mounting a degraded fs
The deadlock happened when we mount degraded filesystem, the reproduced
steps are following:
# mkfs.btrfs -f -m raid1 -d raid1 <dev0> <dev1>
# echo 1 > /sys/block/`basename <dev0>`/device/delete
# mount -o degraded <dev1> <mnt>
The reason was that the counter -- bi_remaining was wrong. If the missing
or unwriteable device was the last device in the mapping array, we would
not submit the original bio, so we shouldn't increase bi_remaining of it
in btrfs_end_bio(), or we would skip the final endio handle.
Fix this problem by adding a flag into btrfs bio structure. If we submit
the original bio, we will set the flag, and we increase bi_remaining counter,
or we don't.
Though there is another way to fix it -- decrease bi_remaining counter of the
original bio when we make sure the original bio is not submitted, this method
need add more check and is easy to make mistake.
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/btrfs/volumes.c | 7 | ||||
-rw-r--r-- | fs/btrfs/volumes.h | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 31f9036f3171..4ca3c92a54b3 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c | |||
@@ -5415,8 +5415,12 @@ static void btrfs_end_bio(struct bio *bio, int err) | |||
5415 | set_bit(BIO_UPTODATE, &bio->bi_flags); | 5415 | set_bit(BIO_UPTODATE, &bio->bi_flags); |
5416 | err = 0; | 5416 | err = 0; |
5417 | } | 5417 | } |
5418 | |||
5419 | if (likely(bbio->flags & BTRFS_BIO_ORIG_BIO_SUBMITTED)) | ||
5420 | bio_endio_nodec(bio, err); | ||
5421 | else | ||
5422 | bio_endio(bio, err); | ||
5418 | kfree(bbio); | 5423 | kfree(bbio); |
5419 | bio_endio_nodec(bio, err); | ||
5420 | } else if (!is_orig_bio) { | 5424 | } else if (!is_orig_bio) { |
5421 | bio_put(bio); | 5425 | bio_put(bio); |
5422 | } | 5426 | } |
@@ -5671,6 +5675,7 @@ int btrfs_map_bio(struct btrfs_root *root, int rw, struct bio *bio, | |||
5671 | BUG_ON(!bio); /* -ENOMEM */ | 5675 | BUG_ON(!bio); /* -ENOMEM */ |
5672 | } else { | 5676 | } else { |
5673 | bio = first_bio; | 5677 | bio = first_bio; |
5678 | bbio->flags |= BTRFS_BIO_ORIG_BIO_SUBMITTED; | ||
5674 | } | 5679 | } |
5675 | 5680 | ||
5676 | submit_stripe_bio(root, bbio, bio, | 5681 | submit_stripe_bio(root, bbio, bio, |
diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h index 1a15bbeb65e2..2aaa00c47816 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h | |||
@@ -190,11 +190,14 @@ struct btrfs_bio_stripe { | |||
190 | struct btrfs_bio; | 190 | struct btrfs_bio; |
191 | typedef void (btrfs_bio_end_io_t) (struct btrfs_bio *bio, int err); | 191 | typedef void (btrfs_bio_end_io_t) (struct btrfs_bio *bio, int err); |
192 | 192 | ||
193 | #define BTRFS_BIO_ORIG_BIO_SUBMITTED 0x1 | ||
194 | |||
193 | struct btrfs_bio { | 195 | struct btrfs_bio { |
194 | atomic_t stripes_pending; | 196 | atomic_t stripes_pending; |
195 | struct btrfs_fs_info *fs_info; | 197 | struct btrfs_fs_info *fs_info; |
196 | bio_end_io_t *end_io; | 198 | bio_end_io_t *end_io; |
197 | struct bio *orig_bio; | 199 | struct bio *orig_bio; |
200 | unsigned long flags; | ||
198 | void *private; | 201 | void *private; |
199 | atomic_t error; | 202 | atomic_t error; |
200 | int max_errors; | 203 | int max_errors; |