diff options
author | David Sterba <dsterba@suse.cz> | 2015-01-23 20:43:31 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-05-06 16:22:49 +0300 |
commit | ee6111386a1b304f8bf589d36810d53e3b27ee20 (patch) | |
tree | 4127f2c27dd326e7a1d817bb8ecf925fd5b632aa /fs/btrfs/sysfs.c | |
parent | e6c11f9a462e9ef4876d5e1539a6c06eded4c793 (diff) | |
download | linux-ee6111386a1b304f8bf589d36810d53e3b27ee20.tar.xz |
btrfs: add read-only check to sysfs handler of features
We don't want to trigger the change on a read-only filesystem, similar
to what the label handler does.
Signed-off-by: David Sterba <dsterba@suse.cz>
Diffstat (limited to 'fs/btrfs/sysfs.c')
-rw-r--r-- | fs/btrfs/sysfs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/btrfs/sysfs.c b/fs/btrfs/sysfs.c index 539e7b5e3f86..6a6bb600b1ff 100644 --- a/fs/btrfs/sysfs.c +++ b/fs/btrfs/sysfs.c @@ -120,6 +120,9 @@ static ssize_t btrfs_feature_attr_store(struct kobject *kobj, if (!fs_info) return -EPERM; + if (fs_info->sb->s_flags & MS_RDONLY) + return -EROFS; + ret = kstrtoul(skip_spaces(buf), 0, &val); if (ret) return ret; |