Module Name: src
Committed By: knakahara
Date: Fri Oct 9 13:03:55 UTC 2015
Modified Files:
src/sys/arch/x86/x86: intr.c
Log Message:
remove quick hack code to avoid shared IRQ issue.
To generate a diff of this commit:
cvs rdiff -u -r1.89 -r1.90 src/sys/arch/x86/x86/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/x86/x86/intr.c
diff -u src/sys/arch/x86/x86/intr.c:1.89 src/sys/arch/x86/x86/intr.c:1.90
--- src/sys/arch/x86/x86/intr.c:1.89 Fri Oct 9 12:56:02 2015
+++ src/sys/arch/x86/x86/intr.c Fri Oct 9 13:03:55 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.c,v 1.89 2015/10/09 12:56:02 knakahara Exp $ */
+/* $NetBSD: intr.c,v 1.90 2015/10/09 13:03:55 knakahara Exp $ */
/*-
* Copyright (c) 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -133,7 +133,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.89 2015/10/09 12:56:02 knakahara Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.90 2015/10/09 13:03:55 knakahara Exp $");
#include "opt_intrdebug.h"
#include "opt_multiprocessor.h"
@@ -1969,10 +1969,6 @@ intr_is_affinity_intrsource(struct intrs
KASSERT(mutex_owned(&cpu_lock));
- /* XXX avoid shared IRQ issue. */
- if (isp->is_handlers == NULL)
- return false;
-
ci = isp->is_handlers->ih_cpu;
KASSERT(ci != NULL);