Module Name:    src
Committed By:   pooka
Date:           Wed May 12 16:48:21 UTC 2010

Modified Files:
        src/sys/rump/librump/rumpkern: intr.c

Log Message:
fix inversion: advance clock on cpu0, not the complement of cpu0


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 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.26 src/sys/rump/librump/rumpkern/intr.c:1.27
--- src/sys/rump/librump/rumpkern/intr.c:1.26	Wed Apr 28 00:32:30 2010
+++ src/sys/rump/librump/rumpkern/intr.c	Wed May 12 16:48:21 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: intr.c,v 1.26 2010/04/28 00:32:30 pooka Exp $	*/
+/*	$NetBSD: intr.c,v 1.27 2010/05/12 16:48:21 pooka Exp $	*/
 
 /*
  * Copyright (c) 2008 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.26 2010/04/28 00:32:30 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.27 2010/05/12 16:48:21 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/cpu.h>
@@ -128,7 +128,7 @@
 		if (!CPU_IS_PRIMARY(curcpu()))
 			continue;
 #else
-		if (curcpu()->ci_index == 0)
+		if (curcpu()->ci_index != 0)
 			continue;
 #endif
 

Reply via email to