diff options
author | David Sterba <dsterba@suse.com> | 2017-06-15 19:10:03 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2017-06-20 14:22:42 +0200 |
commit | fac03c8daeb581e2bc38e5a8c0c6a42cf87cf1c3 (patch) | |
tree | a6f7828cc438f65698b4341ae84f576fbc853eec /fs/btrfs/disk-io.c | |
parent | 79b4f4c605b76194448315865ebcf6fcb0844fc5 (diff) | |
download | talos-op-linux-fac03c8daeb581e2bc38e5a8c0c6a42cf87cf1c3.tar.gz talos-op-linux-fac03c8daeb581e2bc38e5a8c0c6a42cf87cf1c3.zip |
btrfs: move fs_info::fs_frozen to the flags
We can keep the state among the other fs_info flags, there's no reason
why fs_frozen would need to be separate.
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r-- | fs/btrfs/disk-io.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 2b00ebff13f8..2ac0a35f4450 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -2661,7 +2661,6 @@ int open_ctree(struct super_block *sb, atomic_set(&fs_info->qgroup_op_seq, 0); atomic_set(&fs_info->reada_works_cnt, 0); atomic64_set(&fs_info->tree_mod_seq, 0); - fs_info->fs_frozen = 0; fs_info->sb = sb; fs_info->max_inline = BTRFS_DEFAULT_MAX_INLINE; fs_info->metadata_ratio = 0; |