diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2018-02-18 13:22:35 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2018-02-19 18:00:35 -0500 |
commit | 02d7c0e4b51b52fccb937617b4b448ed278e17b6 (patch) | |
tree | 59678be4ac81a153391a1d759f150138a99ea3df /fs/bcachefs/super-io.c | |
parent | 1fe226203d3d85f18cb3557ea7413fd9de12fe30 (diff) |
bcachefs: fixes for check_set_has_compressed_data()
Diffstat (limited to 'fs/bcachefs/super-io.c')
-rw-r--r-- | fs/bcachefs/super-io.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/bcachefs/super-io.c b/fs/bcachefs/super-io.c index c747391707b3..1c4f67cc4bd4 100644 --- a/fs/bcachefs/super-io.c +++ b/fs/bcachefs/super-io.c @@ -400,6 +400,7 @@ static void bch2_sb_update(struct bch_fs *c) c->sb.time_base_lo = le64_to_cpu(src->time_base_lo); c->sb.time_base_hi = le32_to_cpu(src->time_base_hi); c->sb.time_precision = le32_to_cpu(src->time_precision); + c->sb.features = le64_to_cpu(src->features[0]); for_each_member_device(ca, c, i) ca->mi = bch2_mi_to_cpu(mi->members + i); |