diff --git a/fs/bcachefs/io.h b/fs/bcachefs/io.h index fa5841a86fcb..bc9f9fec2fd7 100644 --- a/fs/bcachefs/io.h +++ b/fs/bcachefs/io.h @@ -82,6 +82,7 @@ static inline void bch2_write_op_init(struct bch_write_op *op, struct bch_fs *c, op->nr_replicas = 0; op->nr_replicas_required = c->opts.data_replicas_required; op->alloc_reserve = RESERVE_NONE; + op->incompressible = 0; op->open_buckets.nr = 0; op->devs_have.nr = 0; op->target = 0; diff --git a/fs/bcachefs/io_types.h b/fs/bcachefs/io_types.h index a9a336c04269..692af6dd6031 100644 --- a/fs/bcachefs/io_types.h +++ b/fs/bcachefs/io_types.h @@ -106,7 +106,7 @@ struct bch_write_op { unsigned compression_type:4; unsigned nr_replicas:4; unsigned nr_replicas_required:4; - unsigned alloc_reserve:4; + unsigned alloc_reserve:3; unsigned incompressible:1; struct bch_devs_list devs_have;