Source-Changes-HG archive

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

[src/trunk]: src/sys/rump/librump/rumpkern RUMP's softint_schedule_cpu: comme...



details:   https://anonhg.NetBSD.org/src/rev/89a31883beac
branches:  trunk
changeset: 329777:89a31883beac
user:      rmind <rmind%NetBSD.org@localhost>
date:      Sun Jun 08 15:24:34 2014 +0000

description:
RUMP's softint_schedule_cpu: comment out an assert for now.

diffstat:

 sys/rump/librump/rumpkern/intr.c |  10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r 3a0ddd5eb5cf -r 89a31883beac sys/rump/librump/rumpkern/intr.c
--- a/sys/rump/librump/rumpkern/intr.c  Sun Jun 08 13:45:14 2014 +0000
+++ b/sys/rump/librump/rumpkern/intr.c  Sun Jun 08 15:24:34 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: intr.c,v 1.43 2014/06/05 23:43:04 rmind Exp $  */
+/*     $NetBSD: intr.c,v 1.44 2014/06/08 15:24:34 rmind Exp $  */
 
 /*
  * Copyright (c) 2008-2010 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.43 2014/06/05 23:43:04 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.44 2014/06/08 15:24:34 rmind Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -327,8 +327,10 @@
 void
 softint_schedule_cpu(void *arg, struct cpu_info *ci)
 {
-       /* TODO: implement this properly */
-       KASSERT(curcpu() == ci);
+       /*
+        * TODO: implement this properly
+        * KASSERT(curcpu() == ci);
+        */
        softint_schedule(arg);
 }
 



Home | Main Index | Thread Index | Old Index