From: Max Kellermann <max.kellermann@ionos.com>
To: idryomov@gmail.com, amarkuze@redhat.com, xiubo.li@clyso.com,
ceph-devel@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Max Kellermann <max.kellermann@ionos.com>
Subject: [PATCH v3 04/12] fs/ceph/super.h: convert ceph_inode_xattr fields to `bool`
Date: Wed, 12 Aug 2026 22:29:41 +0200 [thread overview]
Message-ID: <20260812202950.1800340-5-max.kellermann@ionos.com> (raw)
In-Reply-To: <20260812202950.1800340-1-max.kellermann@ionos.com>
This reduces the size of `struct ceph_inode_xattr` by 8 bytes.
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
---
fs/ceph/super.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/fs/ceph/super.h b/fs/ceph/super.h
index 7023af704e14..a3dae2c0bbee 100644
--- a/fs/ceph/super.h
+++ b/fs/ceph/super.h
@@ -320,10 +320,10 @@ struct ceph_inode_xattr {
int name_len;
const char *val;
int val_len;
- int dirty;
+ bool dirty;
- int should_free_name;
- int should_free_val;
+ bool should_free_name;
+ bool should_free_val;
};
/*
--
2.47.3
next prev parent reply other threads:[~2026-08-12 20:30 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-12 20:29 [PATCH v3 00/12] fs/ceph: optimize struct layouts Max Kellermann
2026-08-12 20:29 ` [PATCH v3 01/12] fs/ceph/super: remove unused field `i_cap_migration_resv` Max Kellermann
2026-08-12 20:29 ` [PATCH v3 02/12] fs/ceph/super: make field `i_truncate_pagecache_size` optional Max Kellermann
2026-08-12 20:29 ` [PATCH v3 03/12] include/ceph/ceph_fs.h: convert `pool_id` to u32 Max Kellermann
2026-08-12 20:29 ` Max Kellermann [this message]
2026-08-12 20:29 ` [PATCH v3 05/12] fs/ceph/super.h: convert ceph_cap_snap.writing fields to `bool` Max Kellermann
2026-08-12 20:29 ` [PATCH v3 06/12] fs/ceph: consistently use `u32` for `time_warp_seq` Max Kellermann
2026-08-12 20:29 ` [PATCH v3 07/12] fs/ceph/super: reorder fields to eliminate padding holes Max Kellermann
2026-08-12 20:29 ` [PATCH v3 08/12] fs/ceph: remove i_truncate_mutex, use i_fragtree_mutex for both Max Kellermann
2026-08-12 20:29 ` [PATCH v3 09/12] fs/ceph/super.h: add `const` to helpers Max Kellermann
2026-08-12 20:29 ` [PATCH v3 10/12] fs/ceph/super.h: add helper ceph_in_snap() Max Kellermann
2026-08-12 20:29 ` [PATCH v3 11/12] fs/ceph: use ceph_vino() etc. instead of accessing i_vino directly Max Kellermann
2026-08-12 20:29 ` [PATCH v3 12/12] fs/ceph: remove redundant inode number from ceph_inode_info Max Kellermann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260812202950.1800340-5-max.kellermann@ionos.com \
--to=max.kellermann@ionos.com \
--cc=amarkuze@redhat.com \
--cc=ceph-devel@vger.kernel.org \
--cc=idryomov@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=xiubo.li@clyso.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.