Source-Changes-HG archive

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

[src/netbsd-7]: src/sys/kern Pull up following revision(s) (requested by mlel...



details:   https://anonhg.NetBSD.org/src/rev/395ba9a0e481
branches:  netbsd-7
changeset: 449147:395ba9a0e481
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Feb 24 10:53:32 2019 +0000

description:
Pull up following revision(s) (requested by mlelstv in ticket #1196):

        sys/kern/kern_time.c: revision 1.196

The callout is used by any nonvirtual timer including CLOCK_MONOTONIC
and needs to be initialized.

Detected by [syzkaller].

diffstat:

 sys/kern/kern_time.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r fb1b689cd00e -r 395ba9a0e481 sys/kern/kern_time.c
--- a/sys/kern/kern_time.c      Sat Feb 23 07:18:00 2019 +0000
+++ b/sys/kern/kern_time.c      Sun Feb 24 10:53:32 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_time.c,v 1.179.8.5 2019/02/01 11:06:20 martin Exp $       */
+/*     $NetBSD: kern_time.c,v 1.179.8.6 2019/02/24 10:53:32 martin Exp $       */
 
 /*-
  * Copyright (c) 2000, 2004, 2005, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -61,7 +61,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_time.c,v 1.179.8.5 2019/02/01 11:06:20 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_time.c,v 1.179.8.6 2019/02/24 10:53:32 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/resourcevar.h>
@@ -1141,7 +1141,7 @@
                pt->pt_type = which;
                pt->pt_entry = which;
                pt->pt_queued = false;
-               if (pt->pt_type == CLOCK_REALTIME)
+               if (!CLOCK_VIRTUAL_P(which))
                        callout_init(&pt->pt_ch, CALLOUT_MPSAFE);
                else
                        pt->pt_active = 0;



Home | Main Index | Thread Index | Old Index