Module Name:    src
Committed By:   macallan
Date:           Thu Jun  7 04:37:09 UTC 2012

Modified Files:
        src/sys/arch/powerpc/pic: intr.c

Log Message:
fix same thinko as in previous commit, in have_pending_intr_p()


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/powerpc/pic/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/arch/powerpc/pic/intr.c
diff -u src/sys/arch/powerpc/pic/intr.c:1.21 src/sys/arch/powerpc/pic/intr.c:1.22
--- src/sys/arch/powerpc/pic/intr.c:1.21	Thu Jun  7 02:39:22 2012
+++ src/sys/arch/powerpc/pic/intr.c	Thu Jun  7 04:37:09 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: intr.c,v 1.21 2012/06/07 02:39:22 macallan Exp $ */
+/*	$NetBSD: intr.c,v 1.22 2012/06/07 04:37:09 macallan Exp $ */
 
 /*-
  * Copyright (c) 2007 Michael Lorenz
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.21 2012/06/07 02:39:22 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.22 2012/06/07 04:37:09 macallan Exp $");
 
 #include "opt_interrupt.h"
 #include "opt_multiprocessor.h"
@@ -622,7 +622,7 @@ have_pending_intr_p(struct cpu_info *ci,
 	if (ci->ci_ipending & ~imask[ncpl])
 		return true;
 #ifdef __HAVE_FAST_SOFTINTS
-	if ((ci->ci_data.cpu_softints << ncpl) & IPL_SOFTMASK)
+	if (ci->ci_data.cpu_softints & (IPL_SOFTMASK << ncpl))
 		return true;
 #endif
 	return false;

Reply via email to