[PATCH 08/12] fs/ceph: remove i_truncate_mutex, use i_fragtree_mutex for both
From: Max Kellermann
Date: Fri Jun 12 2026 - 12:56:29 EST
`i_fragtree_mutex` is only used for directories and `i_truncate_mutex`
is only used for regular files. Since these two fields will never be
both be used on any given object, let's merge them into one.
(This is a minimal diff that defines a preprocessor macro, to avoid
refactoring all code lines using these two mutexes.)
This reduces the size of `struct ceph_inode_info` by 8 bytes.
Signed-off-by: Max Kellermann <max.kellermann@xxxxxxxxx>
---
fs/ceph/inode.c | 1 -
fs/ceph/super.h | 6 +++++-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c
index 17df694fe978..c0d88cf1f6e3 100644
--- a/fs/ceph/inode.c
+++ b/fs/ceph/inode.c
@@ -676,7 +676,6 @@ struct inode *ceph_alloc_inode(struct super_block *sb)
for (i = 0; i < CEPH_FILE_MODE_BITS; i++)
ci->i_nr_by_mode[i] = 0;
- mutex_init(&ci->i_truncate_mutex);
ci->i_truncate_seq = 0;
ci->i_truncate_size = 0;
ci->i_truncate_pending = 0;
diff --git a/fs/ceph/super.h b/fs/ceph/super.h
index 646ebc03d263..19f26724b285 100644
--- a/fs/ceph/super.h
+++ b/fs/ceph/super.h
@@ -459,7 +459,11 @@ struct ceph_inode_info {
unsigned long i_last_wr;
int i_nr_by_mode[CEPH_FILE_MODE_BITS]; /* open file counts */
- struct mutex i_truncate_mutex;
+/* since i_fragtree_mutex is only used for directories and
+ i_truncate_mutex is only used for regular files, we use the same
+ field for both */
+#define i_truncate_mutex i_fragtree_mutex
+
u64 i_truncate_size; /* and the size we last truncated down to */
u32 i_truncate_seq; /* last truncate to smaller size */
int i_truncate_pending; /* still need to call vmtruncate */
--
2.47.3