diff options
Diffstat (limited to 'libbcachefs/io.h')
-rw-r--r-- | libbcachefs/io.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbcachefs/io.h b/libbcachefs/io.h index a72c7ccd..91aaa58f 100644 --- a/libbcachefs/io.h +++ b/libbcachefs/io.h @@ -33,6 +33,7 @@ enum bch_write_flags { /* Internal: */ BCH_WRITE_JOURNAL_SEQ_PTR = (1 << 8), + BCH_WRITE_SKIP_CLOSURE_PUT = (1 << 9), }; static inline u64 *op_journal_seq(struct bch_write_op *op) @@ -67,7 +68,7 @@ static inline void bch2_write_op_init(struct bch_write_op *op, struct bch_fs *c, struct bch_io_opts opts) { op->c = c; - op->io_wq = index_update_wq(op); + op->end_io = NULL; op->flags = 0; op->written = 0; op->error = 0; |