Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Apr 2020 15:57:14 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r359515 - stable/12/sys/x86/x86
Message-ID:  <202004011557.031FvEs7098124@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Wed Apr  1 15:57:14 2020
New Revision: 359515
URL: https://svnweb.freebsd.org/changeset/base/359515

Log:
  MFC r359090:
  Widen the stored io_apic_id to 8 bits.

Modified:
  stable/12/sys/x86/x86/io_apic.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/x86/x86/io_apic.c
==============================================================================
--- stable/12/sys/x86/x86/io_apic.c	Wed Apr  1 15:39:02 2020	(r359514)
+++ stable/12/sys/x86/x86/io_apic.c	Wed Apr  1 15:57:14 2020	(r359515)
@@ -95,7 +95,7 @@ struct ioapic_intsrc {
 struct ioapic {
 	struct pic io_pic;
 	u_int io_id:8;			/* logical ID */
-	u_int io_apic_id:4;
+	u_int io_apic_id:8;
 	u_int io_intbase:8;		/* System Interrupt base */
 	u_int io_numintr:8;
 	u_int io_haseoi:1;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004011557.031FvEs7098124>