Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

parisc: Drop hpux_stat64 struct from stat.h header file

The struct hpux_stat64 is not needed any longer since we dropped HP-UX
support in commit 04c1614 ("parisc: hpux - Drop support for HP-UX
binaries").

Signed-off-by: Helge Deller <deller@gmx.de>

-31
-31
arch/parisc/include/uapi/asm/stat.h
··· 36 36 37 37 #define STAT_HAVE_NSEC 38 38 39 - struct hpux_stat64 { 40 - unsigned int st_dev; /* dev_t is 32 bits on parisc */ 41 - unsigned int st_ino; /* 32 bits */ 42 - unsigned short st_mode; /* 16 bits */ 43 - unsigned short st_nlink; /* 16 bits */ 44 - unsigned short st_reserved1; /* old st_uid */ 45 - unsigned short st_reserved2; /* old st_gid */ 46 - unsigned int st_rdev; 47 - signed long long st_size; 48 - signed int st_atime; 49 - unsigned int st_spare1; 50 - signed int st_mtime; 51 - unsigned int st_spare2; 52 - signed int st_ctime; 53 - unsigned int st_spare3; 54 - int st_blksize; 55 - unsigned long long st_blocks; 56 - unsigned int __unused1; /* ACL stuff */ 57 - unsigned int __unused2; /* network */ 58 - unsigned int __unused3; /* network */ 59 - unsigned int __unused4; /* cnodes */ 60 - unsigned short __unused5; /* netsite */ 61 - short st_fstype; 62 - unsigned int st_realdev; 63 - unsigned short st_basemode; 64 - unsigned short st_spareshort; 65 - unsigned int st_uid; 66 - unsigned int st_gid; 67 - unsigned int st_spare4[3]; 68 - }; 69 - 70 39 /* This is the struct that 32-bit userspace applications are expecting. 71 40 * How 64-bit apps are going to be compiled, I have no idea. But at least 72 41 * this way, we don't have a wrapper in the kernel.