diff mbox series

fs: pack struct kstat better

Message ID 20250129063757.778827-1-hch@lst.de (mailing list archive)
State New
Headers show
Series fs: pack struct kstat better | expand

Commit Message

Christoph Hellwig Jan. 29, 2025, 6:37 a.m. UTC
Move the change_cookie and subvol up to avoid two 4 byte holes.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 include/linux/stat.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Linus Torvalds Jan. 29, 2025, 5:04 p.m. UTC | #1
On Tue, 28 Jan 2025 at 22:38, Christoph Hellwig <hch@lst.de> wrote:
>
> Move the change_cookie and subvol up to avoid two 4 byte holes.

I applied this directly to my tree since I was the one asking for this change.

         Linus
diff mbox series

Patch

diff --git a/include/linux/stat.h b/include/linux/stat.h
index 9d8382e23a9c..be7496a6a0dd 100644
--- a/include/linux/stat.h
+++ b/include/linux/stat.h
@@ -50,11 +50,11 @@  struct kstat {
 	struct timespec64 btime;			/* File creation time */
 	u64		blocks;
 	u64		mnt_id;
+	u64		change_cookie;
+	u64		subvol;
 	u32		dio_mem_align;
 	u32		dio_offset_align;
 	u32		dio_read_offset_align;
-	u64		change_cookie;
-	u64		subvol;
 	u32		atomic_write_unit_min;
 	u32		atomic_write_unit_max;
 	u32		atomic_write_segments_max;