diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-01-02 17:53:02 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-22 17:09:52 -0400 |
commit | 7ffb6a7ec6712eb1ba84a80137c2f712e67c4171 (patch) | |
tree | 0d05e725b41817a28164f1ba6ee19747d010bbf6 /fs/bcachefs/data_update.h | |
parent | dbe17f18838df6d0facf51b43cdc5efd372c28d6 (diff) |
bcachefs: Fix deadlock on nocow locks in data move path
The recent nocow locking rework introduced a deadlock in the data move
path: the new nocow locking scheme uses a hash table with a fixed size
array for chaining, meaning on hash collision we may have to wait for
other locks to be released before we can lock a bucket.
And since the data move path needs to submit writes from the same thread
that's taking nocow locks and submitting reads, this introduces a
deadlock.
This shouldn't happen often in practice, but since the data move path
can keep large numbers of IOs in flight simultaneously, it's something
we have to handle.
This patch makes move_ctxt_wait_event() available to
bch2_data_update_init() and uses it when appropriate, which is our
normal solution to this kind of thing.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/data_update.h')
-rw-r--r-- | fs/bcachefs/data_update.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/bcachefs/data_update.h b/fs/bcachefs/data_update.h index f304c3366226..49e9055cbb52 100644 --- a/fs/bcachefs/data_update.h +++ b/fs/bcachefs/data_update.h @@ -33,7 +33,8 @@ void bch2_data_update_read_done(struct data_update *, void bch2_data_update_exit(struct data_update *); void bch2_update_unwritten_extent(struct btree_trans *, struct data_update *); -int bch2_data_update_init(struct bch_fs *, struct data_update *, +int bch2_data_update_init(struct btree_trans *, struct moving_context *, + struct data_update *, struct write_point_specifier, struct bch_io_opts, struct data_update_opts, enum btree_id, struct bkey_s_c); |