aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/disk-io.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r--fs/btrfs/disk-io.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 2464c099db57..6ae9bdf98b68 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -1434,6 +1434,7 @@ struct btrfs_root *open_ctree(struct super_block *sb,
1434 u32 blocksize; 1434 u32 blocksize;
1435 u32 stripesize; 1435 u32 stripesize;
1436 u64 generation; 1436 u64 generation;
1437 u64 features;
1437 struct btrfs_key location; 1438 struct btrfs_key location;
1438 struct buffer_head *bh; 1439 struct buffer_head *bh;
1439 struct btrfs_root *extent_root = kzalloc(sizeof(struct btrfs_root), 1440 struct btrfs_root *extent_root = kzalloc(sizeof(struct btrfs_root),
@@ -1586,6 +1587,26 @@ struct btrfs_root *open_ctree(struct super_block *sb,
1586 goto fail_sb_buffer; 1587 goto fail_sb_buffer;
1587 } 1588 }
1588 1589
1590 features = btrfs_super_incompat_flags(disk_super) &
1591 ~BTRFS_FEATURE_INCOMPAT_SUPP;
1592 if (features) {
1593 printk(KERN_ERR "BTRFS: couldn't mount because of "
1594 "unsupported optional features (%Lx).\n",
1595 features);
1596 err = -EINVAL;
1597 goto fail_sb_buffer;
1598 }
1599
1600 features = btrfs_super_compat_ro_flags(disk_super) &
1601 ~BTRFS_FEATURE_COMPAT_RO_SUPP;
1602 if (!(sb->s_flags & MS_RDONLY) && features) {
1603 printk(KERN_ERR "BTRFS: couldn't mount RDWR because of "
1604 "unsupported option features (%Lx).\n",
1605 features);
1606 err = -EINVAL;
1607 goto fail_sb_buffer;
1608 }
1609
1589 /* 1610 /*
1590 * we need to start all the end_io workers up front because the 1611 * we need to start all the end_io workers up front because the
1591 * queue work function gets called at interrupt time, and so it 1612 * queue work function gets called at interrupt time, and so it