Module Name: src
Committed By: rin
Date: Mon Nov 4 11:32:23 UTC 2019
Modified Files:
src/sys/compat/netbsd32: syscalls.master
Log Message:
netbsd32_size_t should be used instead of size_t for argument of
32-bit syscalls:
- netbsd32___getvfsstat90: bufsize
- netbsd32___fhstatvfs190: fh_size
No need to pullup, since these syscalls were introduced after
branch of netbsd-9.
To generate a diff of this commit:
cvs rdiff -u -r1.129 -r1.130 src/sys/compat/netbsd32/syscalls.master
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/compat/netbsd32/syscalls.master
diff -u src/sys/compat/netbsd32/syscalls.master:1.129 src/sys/compat/netbsd32/syscalls.master:1.130
--- src/sys/compat/netbsd32/syscalls.master:1.129 Mon Nov 4 11:20:22 2019
+++ src/sys/compat/netbsd32/syscalls.master Mon Nov 4 11:32:22 2019
@@ -1,4 +1,4 @@
- $NetBSD: syscalls.master,v 1.129 2019/11/04 11:20:22 rin Exp $
+ $NetBSD: syscalls.master,v 1.130 2019/11/04 11:32:22 rin Exp $
; from: NetBSD: syscalls.master,v 1.81 1998/07/05 08:49:50 jonathan Exp
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -1169,11 +1169,11 @@
id_t id, netbsd32_clockidp_t clock_id); }
483 STD { int|netbsd32|90|getvfsstat( \
netbsd32_statvfsp_t buf, \
- size_t bufsize, int flags); }
+ netbsd32_size_t bufsize, int flags); }
484 STD { int|netbsd32|90|statvfs1(netbsd32_charp path, \
netbsd32_statvfsp_t buf, int flags); }
485 STD { int|netbsd32|90|fstatvfs1(int fd, \
netbsd32_statvfsp_t buf, int flags); }
486 STD { int|netbsd32|90|fhstatvfs1(netbsd32_voidp fhp, \
- size_t fh_size, netbsd32_statvfsp_t buf, \
+ netbsd32_size_t fh_size, netbsd32_statvfsp_t buf, \
int flags); }