Re: [PATCH] delayacct: fix uapi timespec64 definition

From: Arnd Bergmann

Date: Mon Feb 02 2026 - 15:50:51 EST


On Mon, Feb 2, 2026, at 21:37, Andrew Morton wrote:
>> /*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;
>> } __uapi_arch_align;
>
> There's no __uapi_arch_align here in any tree I looked at?

My mistake, that was a remnant of a work-in-progress
series that I used to detect unintended padding in uapi
structures.

Thanks for fixing up the patch and applying the correct
version.

Arnd