Module Name: src
Committed By: rmind
Date: Sun Jun 8 15:24:34 UTC 2014
Modified Files:
src/sys/rump/librump/rumpkern: intr.c
Log Message:
RUMP's softint_schedule_cpu: comment out an assert for now.
To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/rump/librump/rumpkern/intr.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/librump/rumpkern/intr.c
diff -u src/sys/rump/librump/rumpkern/intr.c:1.43 src/sys/rump/librump/rumpkern/intr.c:1.44
--- src/sys/rump/librump/rumpkern/intr.c:1.43 Thu Jun 5 23:43:04 2014
+++ src/sys/rump/librump/rumpkern/intr.c Sun Jun 8 15:24:34 2014
@@ -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 @@ softint_schedule(void *arg)
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);
}