@@ -881,7 +881,7 @@ static struct btrfs_fs_info *__open_ctree_fd(int fp, const char *path,
disk_super = fs_info->super_copy;
ret = btrfs_read_dev_super(fs_devices->latest_bdev,
disk_super, sb_bytenr,
- BTRFS_SCAN_BACKUP_SB);
+ 0ull);
if (ret) {
printk("No valid btrfs found\n");
goto out_devices;
@@ -153,7 +153,7 @@ static struct btrfs_root *open_ctree_broken(int fd, const char *device)
disk_super = fs_info->super_copy;
ret = btrfs_read_dev_super(fs_devices->latest_bdev,
disk_super, BTRFS_SUPER_INFO_OFFSET,
- BTRFS_SCAN_BACKUP_SB);
+ 0ull);
if (ret) {
printk("No valid btrfs found\n");
goto out_devices;
@@ -923,7 +923,7 @@ int check_mounted_where(int fd, const char *file, char *where, int size,
/* scan the initial device */
ret = btrfs_scan_one_device(fd, file, &fs_devices_mnt,
&total_devs, BTRFS_SUPER_INFO_OFFSET,
- 0ull);
+ BTRFS_SCAN_BACKUP_SB);
is_btrfs = (ret >= 0);
/* scan other devices */
@@ -228,7 +228,7 @@ int btrfs_scan_one_device(int fd, const char *path,
}
disk_super = (struct btrfs_super_block *)buf;
ret = btrfs_read_dev_super(fd, disk_super, super_offset,
- BTRFS_SCAN_BACKUP_SB);
+ 0ull);
if (ret < 0) {
ret = -EIO;
goto error_brelse;
except for check_mounted rest of the function thread should have the access to the backup SB disabled. this patch will just do that. Signed-off-by: Anand Jain <anand.jain@oracle.com> --- disk-io.c | 2 +- find-root.c | 2 +- utils.c | 2 +- volumes.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-)