diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2025-05-18 02:54:39 +0300 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2025-05-22 03:15:05 +0300 |
commit | 51e23c9d60a42f8da4d2f4d48c86eb00c4e351ea (patch) | |
tree | 779adda1a815bbce14c634c8e1fdbf568bd30821 /fs/bcachefs/async_objs.c | |
parent | 8c3fc7cca38459751489f5015f3282a64e452b7e (diff) | |
download | linux-51e23c9d60a42f8da4d2f4d48c86eb00c4e351ea.tar.xz |
bcachefs: async objs now support bch_write_ops
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/async_objs.c')
-rw-r--r-- | fs/bcachefs/async_objs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/bcachefs/async_objs.c b/fs/bcachefs/async_objs.c index 57e2fe421461..a7cd1f0f0964 100644 --- a/fs/bcachefs/async_objs.c +++ b/fs/bcachefs/async_objs.c @@ -9,6 +9,7 @@ #include "btree_io.h" #include "debug.h" #include "io_read.h" +#include "io_write.h" #include <linux/debugfs.h> @@ -22,6 +23,11 @@ static void rbio_obj_to_text(struct printbuf *out, void *obj) bch2_read_bio_to_text(out, obj); } +static void write_op_obj_to_text(struct printbuf *out, void *obj) +{ + bch2_write_op_to_text(out, obj); +} + static void btree_read_bio_obj_to_text(struct printbuf *out, void *obj) { struct btree_read_bio *rbio = obj; |