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/3716841800cc
branches: trunk
changeset: 796538:3716841800cc
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 834d08202494 -r 3716841800cc 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