1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * This file is subject to the terms and conditions of the GNU General Public
4 * License. See the file "COPYING" in the main directory of this archive
7 * Copyright (C) 1995, 1999, 2000 Ralf Baechle
8 * Copyright (C) 2000 Silicon Graphics, Inc.
13 #include <linux/types.h>
15 #include <asm/sgidefs.h>
17 #if (_MIPS_SIM == _MIPS_SIM_ABI32) || (_MIPS_SIM == _MIPS_SIM_NABI32)
21 long st_pad1
[3]; /* Reserved for network id */
22 __kernel_ino_t st_ino
;
23 __kernel_mode_t st_mode
;
25 __kernel_uid32_t st_uid
;
26 __kernel_gid32_t st_gid
;
32 * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
33 * but we don't have it under Linux.
47 * This matches struct stat64 in glibc2.1, hence the absolutely insane
48 * amounts of padding around dev_t's. The memory layout is the same as of
49 * struct stat of the 64-bit kernel.
54 unsigned long st_pad0
[3]; /* Reserved for st_dev expansion */
56 unsigned long long st_ino
;
58 __kernel_mode_t st_mode
;
61 __kernel_uid32_t st_uid
;
62 __kernel_gid32_t st_gid
;
64 unsigned long st_rdev
;
65 unsigned long st_pad1
[3]; /* Reserved for st_rdev expansion */
70 * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
71 * but we don't have it under Linux.
74 unsigned long st_atime_nsec
; /* Reserved for st_atime expansion */
77 unsigned long st_mtime_nsec
; /* Reserved for st_mtime expansion */
80 unsigned long st_ctime_nsec
; /* Reserved for st_ctime expansion */
82 unsigned long st_blksize
;
83 unsigned long st_pad2
;
88 #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */
90 #if _MIPS_SIM == _MIPS_SIM_ABI64
92 /* The memory layout is the same as of struct stat64 of the 32-bit kernel. */
95 unsigned int st_pad0
[3]; /* Reserved for st_dev expansion */
99 __kernel_mode_t st_mode
;
102 __kernel_uid32_t st_uid
;
103 __kernel_gid32_t st_gid
;
105 unsigned int st_rdev
;
106 unsigned int st_pad1
[3]; /* Reserved for st_rdev expansion */
111 * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
112 * but we don't have it under Linux.
114 unsigned int st_atime
;
115 unsigned int st_atime_nsec
;
117 unsigned int st_mtime
;
118 unsigned int st_mtime_nsec
;
120 unsigned int st_ctime
;
121 unsigned int st_ctime_nsec
;
123 unsigned int st_blksize
;
124 unsigned int st_pad2
;
126 unsigned long st_blocks
;
129 #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */
131 #define STAT_HAVE_NSEC 1
133 #endif /* _ASM_STAT_H */