]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
linux: Add STATX_WRITE_ATOMIC/STATX_ATTR_WRITE_ATOMIC definitions to generic statx
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Fri, 3 Oct 2025 19:38:59 +0000 (16:38 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 5 Nov 2025 10:15:52 +0000 (07:15 -0300)
The commit fc650bfd71081d26c1015d299827fb58a23a6b02 added
STATX_WRITE_ATOMIC/STATX_ATTR_WRITE_ATOMIC on the statx-generic.h
without updating the generic statx struct.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
io/bits/types/struct_statx.h
io/tst-statx.c

index 0f5ee461fc2277f9af8d9672439ebfe77dfc41a3..2cd81c112b812db032399ca8570a1d7e4b0f3f34 100644 (file)
@@ -53,7 +53,11 @@ struct statx
   __uint32_t stx_dio_mem_align;
   __uint32_t stx_dio_offset_align;
   __uint64_t stx_subvol;
-  __uint64_t __statx_pad2[11];
+  __uint32_t stx_atomic_write_unit_min;
+  __uint32_t stx_atomic_write_unit_max;
+  __uint32_t stx_atomic_write_segments_max;
+  __uint32_t __statx_pad2;
+  __uint64_t __statx_pad3[9];
 };
 
 #endif /* __statx_defined */
index c7a5707c7af0d74fd0e793b5d2944e4441e71a1c..d691d157e06999d186861956a5b9a7aa9ca9cec7 100644 (file)
@@ -37,7 +37,8 @@ _Static_assert (offsetof (struct statx, stx_nlink) == 16, "statx nlink");
 _Static_assert (offsetof (struct statx, stx_ino) == 32, "statx ino");
 _Static_assert (offsetof (struct statx, stx_atime) == 64, "statx atime");
 _Static_assert (offsetof (struct statx, stx_rdev_major) == 128, "statx rdev");
-_Static_assert (offsetof (struct statx, __statx_pad2) == 168, "statx pad2");
+_Static_assert (offsetof (struct statx, __statx_pad2) == 0xb4, "statx pad2");
+_Static_assert (offsetof (struct statx, __statx_pad3) == 0xb8, "statx pad3");
 
 #include "statx_generic.c"