summaryrefslogtreecommitdiff
path: root/include/uapi/linux/taskstats.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2026-02-02 10:59:00 +0100
committerAndrew Morton <akpm@linux-foundation.org>2026-02-08 00:13:32 -0800
commit90079798f1d748e97c74e23736491543577b8aee (patch)
tree25fdc19858e292c4d4d3af0aa8c2103c3248ed14 /include/uapi/linux/taskstats.h
parent2e171ab29f916455a49274a2042bac4a4b35570e (diff)
delayacct: fix uapi timespec64 definition
The custom definition of 'struct timespec64' is incompatible with both the kernel's internal definition and the glibc type, at least on big-endian targets that have the tv_nsec field in a different place, and the definition clashes with any userspace that also defines a timespec64 structure. Running the header check with -Wpadding enabled produces this output that warns about the incorrect padding: usr/include/linux/taskstats.h:25:1: error: padding struct size to alignment boundary with 4 bytes [-Werror=padded] Remove the hack and instead use the regular __kernel_timespec type that is meant to be used in uapi definitions. Link: https://lkml.kernel.org/r/20260202095906.1344100-1-arnd@kernel.org Fixes: 29b63f6eff0e ("delayacct: add timestamp of delay max") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: Fan Yu <fan.yu9@zte.com.cn> Cc: Jonathan Corbet <corbet@lwn.net> Cc: xu xin <xu.xin16@zte.com.cn> Cc: Yang Yang <yang.yang29@zte.com.cn> Cc: Balbir Singh <bsingharora@gmail.com> Cc: Jiang Kun <jiang.kun2@zte.com.cn> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include/uapi/linux/taskstats.h')
-rw-r--r--include/uapi/linux/taskstats.h27
1 files changed, 9 insertions, 18 deletions
diff --git a/include/uapi/linux/taskstats.h b/include/uapi/linux/taskstats.h
index 1b31e8e14d2f..3ae25f3ce067 100644
--- a/include/uapi/linux/taskstats.h
+++ b/include/uapi/linux/taskstats.h
@@ -18,16 +18,7 @@
#define _LINUX_TASKSTATS_H
#include <linux/types.h>
-#ifdef __KERNEL__
-#include <linux/time64.h>
-#else
-#ifndef _LINUX_TIME64_H
-struct timespec64 {
- __s64 tv_sec; /* seconds */
- long tv_nsec; /* nanoseconds */
-};
-#endif
-#endif
+#include <linux/time_types.h>
/* Format for per-task data returned to userland when
* - a task exits
@@ -242,14 +233,14 @@ struct taskstats {
__u64 irq_delay_min;
/*v17: delay max timestamp record*/
- struct timespec64 cpu_delay_max_ts;
- struct timespec64 blkio_delay_max_ts;
- struct timespec64 swapin_delay_max_ts;
- struct timespec64 freepages_delay_max_ts;
- struct timespec64 thrashing_delay_max_ts;
- struct timespec64 compact_delay_max_ts;
- struct timespec64 wpcopy_delay_max_ts;
- struct timespec64 irq_delay_max_ts;
+ struct __kernel_timespec cpu_delay_max_ts;
+ struct __kernel_timespec blkio_delay_max_ts;
+ struct __kernel_timespec swapin_delay_max_ts;
+ struct __kernel_timespec freepages_delay_max_ts;
+ struct __kernel_timespec thrashing_delay_max_ts;
+ struct __kernel_timespec compact_delay_max_ts;
+ struct __kernel_timespec wpcopy_delay_max_ts;
+ struct __kernel_timespec irq_delay_max_ts;
};