~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/sparc/include/uapi/asm/stat.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/sparc/include/uapi/asm/stat.h (Architecture i386) and /arch/mips/include/uapi/asm/stat.h (Architecture mips)


  1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux      1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2 #ifndef __SPARC_STAT_H                         !!   2 /*
  3 #define __SPARC_STAT_H                         !!   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
                                                   >>   5  * for more details.
                                                   >>   6  *
                                                   >>   7  * Copyright (C) 1995, 1999, 2000 Ralf Baechle
                                                   >>   8  * Copyright (C) 2000 Silicon Graphics, Inc.
                                                   >>   9  */
                                                   >>  10 #ifndef _ASM_STAT_H
                                                   >>  11 #define _ASM_STAT_H
  4                                                    12 
  5 #include <linux/types.h>                           13 #include <linux/types.h>
  6                                                    14 
  7 #if defined(__sparc__) && defined(__arch64__)  !!  15 #include <asm/sgidefs.h>
  8 /* 64 bit sparc */                             !!  16 
                                                   >>  17 #if (_MIPS_SIM == _MIPS_SIM_ABI32) || (_MIPS_SIM == _MIPS_SIM_NABI32)
                                                   >>  18 
  9 struct stat {                                      19 struct stat {
 10         unsigned int st_dev;                   !!  20         unsigned        st_dev;
 11         __kernel_ino_t st_ino;                 !!  21         long            st_pad1[3];             /* Reserved for network id */
 12         __kernel_mode_t st_mode;               !!  22         __kernel_ino_t  st_ino;
 13         short   st_nlink;                      !!  23         __kernel_mode_t st_mode;
                                                   >>  24         __u32           st_nlink;
 14         __kernel_uid32_t st_uid;                   25         __kernel_uid32_t st_uid;
 15         __kernel_gid32_t st_gid;                   26         __kernel_gid32_t st_gid;
 16         unsigned int st_rdev;                  !!  27         unsigned        st_rdev;
 17         long    st_size;                       !!  28         long            st_pad2[2];
 18         long    st_atime;                      !!  29         long            st_size;
 19         long    st_mtime;                      !!  30         long            st_pad3;
 20         long    st_ctime;                      !!  31         /*
 21         long    st_blksize;                    !!  32          * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
 22         long    st_blocks;                     !!  33          * but we don't have it under Linux.
 23         unsigned long  __unused4[2];           !!  34          */
                                                   >>  35         long            st_atime;
                                                   >>  36         long            st_atime_nsec;
                                                   >>  37         long            st_mtime;
                                                   >>  38         long            st_mtime_nsec;
                                                   >>  39         long            st_ctime;
                                                   >>  40         long            st_ctime_nsec;
                                                   >>  41         long            st_blksize;
                                                   >>  42         long            st_blocks;
                                                   >>  43         long            st_pad4[14];
 24 };                                                 44 };
 25                                                    45 
                                                   >>  46 /*
                                                   >>  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.
                                                   >>  50  */
                                                   >>  51 
 26 struct stat64 {                                    52 struct stat64 {
 27         unsigned long   st_dev;                    53         unsigned long   st_dev;
 28         unsigned long   st_ino;                !!  54         unsigned long   st_pad0[3];     /* Reserved for st_dev expansion  */
 29         unsigned long   st_nlink;              !!  55 
                                                   >>  56         unsigned long long      st_ino;
 30                                                    57 
 31         unsigned int    st_mode;               !!  58         __kernel_mode_t st_mode;
 32         unsigned int    st_uid;                !!  59         __u32           st_nlink;
 33         unsigned int    st_gid;                !!  60 
 34         unsigned int    __pad0;                !!  61         __kernel_uid32_t st_uid;
                                                   >>  62         __kernel_gid32_t st_gid;
 35                                                    63 
 36         unsigned long   st_rdev;                   64         unsigned long   st_rdev;
 37         long            st_size;               !!  65         unsigned long   st_pad1[3];     /* Reserved for st_rdev expansion  */
 38         long            st_blksize;            << 
 39         long            st_blocks;             << 
 40                                                    66 
 41         unsigned long   st_atime;              !!  67         long long       st_size;
 42         unsigned long   st_atime_nsec;         << 
 43         unsigned long   st_mtime;              << 
 44         unsigned long   st_mtime_nsec;         << 
 45         unsigned long   st_ctime;              << 
 46         unsigned long   st_ctime_nsec;         << 
 47         long            __unused[3];           << 
 48 };                                             << 
 49                                                    68 
 50 #else                                          !!  69         /*
 51 /* 32 bit sparc */                             !!  70          * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
 52 struct stat {                                  !!  71          * but we don't have it under Linux.
 53         unsigned short  st_dev;                !!  72          */
 54         __kernel_ino_t  st_ino;                << 
 55         __kernel_mode_t st_mode;               << 
 56         short           st_nlink;              << 
 57         unsigned short  st_uid;                << 
 58         unsigned short  st_gid;                << 
 59         unsigned short  st_rdev;               << 
 60         long            st_size;               << 
 61         long            st_atime;                  73         long            st_atime;
 62         unsigned long   st_atime_nsec;         !!  74         unsigned long   st_atime_nsec;  /* Reserved for st_atime expansion  */
                                                   >>  75 
 63         long            st_mtime;                  76         long            st_mtime;
 64         unsigned long   st_mtime_nsec;         !!  77         unsigned long   st_mtime_nsec;  /* Reserved for st_mtime expansion  */
                                                   >>  78 
 65         long            st_ctime;                  79         long            st_ctime;
 66         unsigned long   st_ctime_nsec;         !!  80         unsigned long   st_ctime_nsec;  /* Reserved for st_ctime expansion  */
 67         long            st_blksize;            !!  81 
 68         long            st_blocks;             !!  82         unsigned long   st_blksize;
 69         unsigned long   __unused4[2];          !!  83         unsigned long   st_pad2;
                                                   >>  84 
                                                   >>  85         long long       st_blocks;
 70 };                                                 86 };
 71                                                    87 
 72 #define STAT_HAVE_NSEC 1                       !!  88 #endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */
 73                                                    89 
 74 struct stat64 {                                !!  90 #if _MIPS_SIM == _MIPS_SIM_ABI64
 75         unsigned long long st_dev;             << 
 76                                                    91 
 77         unsigned long long st_ino;             !!  92 /* The memory layout is the same as of struct stat64 of the 32-bit kernel.  */
                                                   >>  93 struct stat {
                                                   >>  94         unsigned int            st_dev;
                                                   >>  95         unsigned int            st_pad0[3]; /* Reserved for st_dev expansion */
 78                                                    96 
 79         unsigned int    st_mode;               !!  97         unsigned long           st_ino;
 80         unsigned int    st_nlink;              << 
 81                                                    98 
 82         unsigned int    st_uid;                !!  99         __kernel_mode_t         st_mode;
 83         unsigned int    st_gid;                !! 100         __u32                   st_nlink;
 84                                                   101 
 85         unsigned long long st_rdev;            !! 102         __kernel_uid32_t        st_uid;
                                                   >> 103         __kernel_gid32_t        st_gid;
 86                                                   104 
 87         unsigned char   __pad3[8];             !! 105         unsigned int            st_rdev;
                                                   >> 106         unsigned int            st_pad1[3]; /* Reserved for st_rdev expansion */
 88                                                   107 
 89         long long       st_size;               !! 108         long                    st_size;
 90         unsigned int    st_blksize;            << 
 91                                                   109 
 92         unsigned char   __pad4[8];             !! 110         /*
 93         unsigned int    st_blocks;             !! 111          * Actually this should be timestruc_t st_atime, st_mtime and st_ctime
                                                   >> 112          * but we don't have it under Linux.
                                                   >> 113          */
                                                   >> 114         unsigned int            st_atime;
                                                   >> 115         unsigned int            st_atime_nsec;
 94                                                   116 
 95         unsigned int    st_atime;              !! 117         unsigned int            st_mtime;
 96         unsigned int    st_atime_nsec;         !! 118         unsigned int            st_mtime_nsec;
 97                                                   119 
 98         unsigned int    st_mtime;              !! 120         unsigned int            st_ctime;
 99         unsigned int    st_mtime_nsec;         !! 121         unsigned int            st_ctime_nsec;
100                                                   122 
101         unsigned int    st_ctime;              !! 123         unsigned int            st_blksize;
102         unsigned int    st_ctime_nsec;         !! 124         unsigned int            st_pad2;
103                                                   125 
104         unsigned int    __unused4;             !! 126         unsigned long           st_blocks;
105         unsigned int    __unused5;             << 
106 };                                                127 };
107 #endif /* defined(__sparc__) && defined(__arch !! 128 
108 #endif /* __SPARC_STAT_H */                    !! 129 #endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */
                                                   >> 130 
                                                   >> 131 #define STAT_HAVE_NSEC 1
                                                   >> 132 
                                                   >> 133 #endif /* _ASM_STAT_H */
109                                                   134 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php