Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/netbsd32 For netbsd32_statvfs, f_spare should be ...



details:   https://anonhg.NetBSD.org/src/rev/0c9ffe441478
branches:  trunk
changeset: 460883:0c9ffe441478
user:      rin <rin%NetBSD.org@localhost>
date:      Thu Nov 07 15:21:55 2019 +0000

description:
For netbsd32_statvfs, f_spare should be netbsd32_uint64, not uint64_t.

Fix syscalls using struct statvfs on COMPAT_NETBSD32 on amd64, where
NETBSD32_INT64_ALIGN is __attribute__((__aligned__(4))).

diffstat:

 sys/compat/netbsd32/netbsd32.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 321591ad7188 -r 0c9ffe441478 sys/compat/netbsd32/netbsd32.h
--- a/sys/compat/netbsd32/netbsd32.h    Thu Nov 07 09:05:29 2019 +0000
+++ b/sys/compat/netbsd32/netbsd32.h    Thu Nov 07 15:21:55 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32.h,v 1.127 2019/10/03 22:16:53 kamil Exp $     */
+/*     $NetBSD: netbsd32.h,v 1.128 2019/11/07 15:21:55 rin Exp $       */
 
 /*
  * Copyright (c) 1998, 2001, 2008, 2015 Matthew R. Green
@@ -902,7 +902,7 @@
        netbsd32_u_long f_fsid;         /* Posix compatible fsid */
        netbsd32_u_long f_namemax;      /* maximum filename length */
        uid_t           f_owner;        /* user that mounted the file system */
-       uint64_t        f_spare[4];     /* spare space */
+       netbsd32_uint64 f_spare[4];     /* spare space */
        char    f_fstypename[_VFS_NAMELEN]; /* fs type name */
        char    f_mntonname[_VFS_MNAMELEN];  /* directory on which mounted */
        char    f_mntfromname[_VFS_MNAMELEN];  /* mounted file system */



Home | Main Index | Thread Index | Old Index