Module Name: src
Committed By: rin
Date: Mon Sep 12 08:14:55 UTC 2022
Modified Files:
src/sys/arch/powerpc/include/booke: intr.h
Log Message:
PR port-powerpc/56922
__HAVE_FAST_SOFTINTS is broken for powerpc.
Disable it temporarily also for booke.
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/powerpc/include/booke/intr.h
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/include/booke/intr.h
diff -u src/sys/arch/powerpc/include/booke/intr.h:1.12 src/sys/arch/powerpc/include/booke/intr.h:1.13
--- src/sys/arch/powerpc/include/booke/intr.h:1.12 Sat Nov 23 19:40:36 2019
+++ src/sys/arch/powerpc/include/booke/intr.h Mon Sep 12 08:14:55 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.12 2019/11/23 19:40:36 ad Exp $ */
+/* $NetBSD: intr.h,v 1.13 2022/09/12 08:14:55 rin Exp $ */
/*-
* Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -77,7 +77,9 @@
#define IPI_SUSPEND 0x0020
#define IPI_AST 0x0040
+#if 0 /* PR port-powerpc/56922: fast softints are broken on powerpc */
#define __HAVE_FAST_SOFTINTS 1
+#endif
#define SOFTINT_KPREEMPT SOFTINT_COUNT
#ifndef _LOCORE