diff options
author | Tejun Heo <tj@kernel.org> | 2010-11-13 05:55:17 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2010-11-13 05:55:17 -0500 |
commit | 37004c42f7240035bc2726c340c4efa726b4818e (patch) | |
tree | f0c9c9b2d21a1258939b99ec37a2d11396583ea6 /fs/btrfs | |
parent | 731edacb7567c15f25b1fccac18a203bd432ae5e (diff) |
btrfs: close_bdev_exclusive() should use the same @flags as the matching open_bdev_exclusive()
In the failure path of __btrfs_open_devices(), close_bdev_exclusive()
is called with @flags which doesn't match the one used during
open_bdev_exclusive(). Fix it.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/volumes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index cc04dc1445d6..d39596224d21 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c | |||
@@ -638,7 +638,7 @@ static int __btrfs_open_devices(struct btrfs_fs_devices *fs_devices, | |||
638 | error_brelse: | 638 | error_brelse: |
639 | brelse(bh); | 639 | brelse(bh); |
640 | error_close: | 640 | error_close: |
641 | close_bdev_exclusive(bdev, FMODE_READ); | 641 | close_bdev_exclusive(bdev, flags); |
642 | error: | 642 | error: |
643 | continue; | 643 | continue; |
644 | } | 644 | } |