32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From d5b149f3108a40e2bc88e8fcd9bc5d70096fa6c3 Mon Sep 17 00:00:00 2001
|
|
From: Kent Overstreet <kent.overstreet@linux.dev>
|
|
Date: Sun, 17 Nov 2024 03:31:01 -0500
|
|
Subject: [PATCH 093/213] bcachefs: add missing BTREE_ITER_intent
|
|
Content-Type: text/plain; charset="utf-8"
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
this fixes excessive transaction restarts due to trans_commit having to
|
|
upgrade
|
|
|
|
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
|
|
Signed-off-by: Alexander Miroshnichenko <alex@millerson.name>
|
|
---
|
|
fs/bcachefs/io_write.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/fs/bcachefs/io_write.c b/fs/bcachefs/io_write.c
|
|
index f11e11279f01..f97ebb30f6c0 100644
|
|
--- a/fs/bcachefs/io_write.c
|
|
+++ b/fs/bcachefs/io_write.c
|
|
@@ -216,6 +216,7 @@ static inline int bch2_extent_update_i_size_sectors(struct btree_trans *trans,
|
|
SPOS(0,
|
|
extent_iter->pos.inode,
|
|
extent_iter->snapshot),
|
|
+ BTREE_ITER_intent|
|
|
BTREE_ITER_cached);
|
|
int ret = bkey_err(k);
|
|
if (unlikely(ret))
|
|
--
|
|
2.45.2
|
|
|