mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 04:34:11 +08:00
2a785996cc
This is mainly a patch for clarification, and to let us remove the time_t definition from the kernel to prevent new users from creeping in that might not be y2038-safe. All remaining uses of 'time_t' or '__kernel_time_t' are part of the user API that cannot be changed by that either have a replacement or that do not suffer from the y2038 overflow. Acked-by: Deepa Dinamani <deepa.kernel@gmail.com> Acked-by: Christian Brauner <christian.brauner@ubuntu.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
13 lines
223 B
C
13 lines
223 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _LINUX_UTIME_H
|
|
#define _LINUX_UTIME_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct utimbuf {
|
|
__kernel_old_time_t actime;
|
|
__kernel_old_time_t modtime;
|
|
};
|
|
|
|
#endif
|