patch-2.1.97 linux/include/asm-sparc64/stat.h

Next file: linux/include/asm-sparc64/system.h
Previous file: linux/include/asm-sparc64/softirq.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.1.96/linux/include/asm-sparc64/stat.h linux/include/asm-sparc64/stat.h
@@ -1,8 +1,9 @@
-/* $Id: stat.h,v 1.3 1997/04/18 14:34:43 jj Exp $ */
+/* $Id: stat.h,v 1.4 1998/02/06 12:52:14 jj Exp $ */
 #ifndef _SPARC64_STAT_H
 #define _SPARC64_STAT_H
 
 #include <linux/types.h>
+#include <linux/time.h>
 
 struct stat32 {
 	__kernel_dev_t32   st_dev;
@@ -40,5 +41,55 @@
 	off_t   st_blocks;
 	unsigned long  __unused4[2];
 };
+
+typedef __u64	__new_dev_t;
+
+struct stat64 {
+	__new_dev_t	st_dev;
+	__u64		st_ino;
+	__u32		st_mode;
+	__u32		st_nlink;
+	__s32		st_uid;
+	__s32		st_gid;
+	__new_dev_t	st_rdev;
+	__s64		st_size;
+	struct timespec	st_atim;
+	struct timespec	st_mtim;
+	struct timespec	st_ctim;
+	int		st_blksize;
+	long		st_blocks;
+	char		st_fstype[16];
+};
+
+struct stat64_32 {
+	__new_dev_t	st_dev;
+	__u64		st_ino;
+	__u32		st_mode;
+	__u32		st_nlink;
+	__s32		st_uid;
+	__s32		st_gid;
+	__new_dev_t	st_rdev;
+	__s64		st_size;
+	__u64		st_blocks;
+	__s32		st_atime;
+	__u32		__unused1;
+	__s32		st_mtime;
+	__u32		__unused2;
+	__s32		st_ctime;
+	__u32		__unused3;
+	__u32		st_blksize;
+	__u32		__unused4;
+};
+
+#define __XSTAT_VER_1		1
+#define __XSTAT_VER_2		2
+#define __XSTAT_VER_MASK	0xff
+
+#define __XSTAT_VER_XSTAT	0x000
+#define __XSTAT_VER_LXSTAT	0x100
+#define __XSTAT_VER_FXSTAT	0x200
+#define __XSTAT_VER_TYPEMASK	0xff00
+
+#define __XMKNOD_VER_1		1
 
 #endif

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov