Source-Changes-HG archive

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

[src/netbsd-8]: src/sys/compat/netbsd32 Pull up following revision(s) (reques...



details:   https://anonhg.NetBSD.org/src/rev/b6cb35c10ac3
branches:  netbsd-8
changeset: 449604:b6cb35c10ac3
user:      snj <snj%NetBSD.org@localhost>
date:      Tue Mar 12 17:46:59 2019 +0000

description:
Pull up following revision(s) (requested by martin in ticket #1211):
        sys/compat/netbsd32/netbsd32_compat_60.c: 1.3
don't forget to convert the timespec.

diffstat:

 sys/compat/netbsd32/netbsd32_compat_60.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r ea35008e2182 -r b6cb35c10ac3 sys/compat/netbsd32/netbsd32_compat_60.c
--- a/sys/compat/netbsd32/netbsd32_compat_60.c  Sat Mar 09 17:13:18 2019 +0000
+++ b/sys/compat/netbsd32/netbsd32_compat_60.c  Tue Mar 12 17:46:59 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_compat_60.c,v 1.2 2014/08/21 06:40:35 maxv Exp $      */
+/*     $NetBSD: netbsd32_compat_60.c,v 1.2.12.1 2019/03/12 17:46:59 snj Exp $  */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -36,7 +36,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_60.c,v 1.2 2014/08/21 06:40:35 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_60.c,v 1.2.12.1 2019/03/12 17:46:59 snj Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -71,6 +71,7 @@
                error = copyin(SCARG_P32(uap, ts), &ts32, sizeof ts32);
                if (error != 0)
                        return error;
+               netbsd32_to_timespec(&ts32, &ts);
                tsp = &ts;
        }
 



Home | Main Index | Thread Index | Old Index