Module Name: src
Committed By: msaitoh
Date: Thu Oct 6 06:51:37 UTC 2022
Modified Files:
src/sys/arch/x86/include: i82093reg.h
Log Message:
IOAPIC_ID_MASK is 8 bits these days. Fixes PR kern/54276.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/x86/include/i82093reg.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/x86/include/i82093reg.h
diff -u src/sys/arch/x86/include/i82093reg.h:1.6 src/sys/arch/x86/include/i82093reg.h:1.7
--- src/sys/arch/x86/include/i82093reg.h:1.6 Wed Jun 19 06:32:46 2019
+++ src/sys/arch/x86/include/i82093reg.h Thu Oct 6 06:51:36 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: i82093reg.h,v 1.6 2019/06/19 06:32:46 msaitoh Exp $ */
+/* $NetBSD: i82093reg.h,v 1.7 2022/10/06 06:51:36 msaitoh Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -60,7 +60,7 @@
#define IOAPIC_ID 0x00
#define IOAPIC_ID_SHIFT 24
-#define IOAPIC_ID_MASK 0x0f000000
+#define IOAPIC_ID_MASK 0xff000000
/* Version, and maximum interrupt pin number. */