Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/linux/arch/mips the MIPS stat64 struct doesn't ha...
details: https://anonhg.NetBSD.org/src/rev/721cabb478e3
branches: trunk
changeset: 522377:721cabb478e3
user: rafal <rafal%NetBSD.org@localhost>
date: Sun Feb 17 23:57:57 2002 +0000
description:
the MIPS stat64 struct doesn't have a separate ino64 field, but the ino field
is a u_longlong.
diffstat:
sys/compat/linux/arch/mips/linux_types.h | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diffs (19 lines):
diff -r 726351aaf302 -r 721cabb478e3 sys/compat/linux/arch/mips/linux_types.h
--- a/sys/compat/linux/arch/mips/linux_types.h Sun Feb 17 23:56:35 2002 +0000
+++ b/sys/compat/linux/arch/mips/linux_types.h Sun Feb 17 23:57:57 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_types.h,v 1.4 2001/10/06 13:32:59 manu Exp $ */
+/* $NetBSD: linux_types.h,v 1.5 2002/02/17 23:57:57 rafal Exp $ */
/*-
* Copyright (c) 1995, 1998, 2001 The NetBSD Foundation, Inc.
@@ -155,7 +155,8 @@
struct linux_stat64 {
unsigned long lst_dev;
unsigned long lst_pad0[3];
- linux_ino_t lst_ino;
+ unsigned long long lst_ino;
+#define lst_ino64 lst_ino
linux_mode_t lst_mode;
linux_nlink_t lst_nlink;
linux_uid_t lst_uid;
Home |
Main Index |
Thread Index |
Old Index