mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 15:12:13 +02:00
Since the kernel does not support running 31 bit / compat binaries anymore, remove also the corresponding 31 bit support from uapi header files. Reviewed-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
35 lines
809 B
C
35 lines
809 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
/*
|
|
* S390 version
|
|
*
|
|
* Derived from "include/asm-i386/stat.h"
|
|
*/
|
|
|
|
#ifndef _S390_STAT_H
|
|
#define _S390_STAT_H
|
|
|
|
struct stat {
|
|
unsigned long st_dev;
|
|
unsigned long st_ino;
|
|
unsigned long st_nlink;
|
|
unsigned int st_mode;
|
|
unsigned int st_uid;
|
|
unsigned int st_gid;
|
|
unsigned int __pad1;
|
|
unsigned long st_rdev;
|
|
unsigned long st_size;
|
|
unsigned long st_atime;
|
|
unsigned long st_atime_nsec;
|
|
unsigned long st_mtime;
|
|
unsigned long st_mtime_nsec;
|
|
unsigned long st_ctime;
|
|
unsigned long st_ctime_nsec;
|
|
unsigned long st_blksize;
|
|
long st_blocks;
|
|
unsigned long __unused[3];
|
|
};
|
|
|
|
#define STAT_HAVE_NSEC 1
|
|
|
|
#endif
|