From owner-svn-src-all@freebsd.org Thu Feb 21 21:42:55 2019 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AF8114F2509; Thu, 21 Feb 2019 21:42:55 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 667CF8F5D2; Thu, 21 Feb 2019 21:42:54 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id x1LLgq52022278; Thu, 21 Feb 2019 13:42:52 -0800 (PST) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id x1LLgqND022277; Thu, 21 Feb 2019 13:42:52 -0800 (PST) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201902212142.x1LLgqND022277@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r344446 - head/usr.sbin/bhyve In-Reply-To: <201902212136.x1LLaw2K022261@pdx.rh.CN85.dnsmgr.net> To: rgrimes@freebsd.org Date: Thu, 21 Feb 2019 13:42:52 -0800 (PST) CC: Jung-uk Kim , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 667CF8F5D2 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.93 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.93)[-0.934,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2019 21:42:55 -0000 > > Author: jkim > > Date: Thu Feb 21 21:15:49 2019 > > New Revision: 344446 > > URL: https://svnweb.freebsd.org/changeset/base/344446 > > > > Log: > > Catch up with ACPICA 20190215. > > > > PR: 235922 > > > > Modified: > > head/usr.sbin/bhyve/acpi.c > > > > Modified: head/usr.sbin/bhyve/acpi.c > > ============================================================================== > > --- head/usr.sbin/bhyve/acpi.c Thu Feb 21 19:19:30 2019 (r344445) > > +++ head/usr.sbin/bhyve/acpi.c Thu Feb 21 21:15:49 2019 (r344446) > > @@ -256,6 +256,7 @@ basl_fwrite_madt(FILE *fp) > > EFPRINTF(fp, "[0001]\t\tLocal Apic ID : %02x\n", i); > > EFPRINTF(fp, "[0004]\t\tFlags (decoded below) : 00000001\n"); > > EFPRINTF(fp, "\t\t\tProcessor Enabled : 1\n"); > > + EFPRINTF(fp, "\t\t\tRuntime Online Capable : 0\n"); > > EFPRINTF(fp, "\n"); > > } > > This is wrong, this is a version 1.0 MADT table, > that version does NOT have this value. Let me guess.. this does not change the table generated, it only makes the iasl compiler happy about what we are feeding it? If so, just ignore my statement above, and sorry for the noise. If not how do we actually fix this so that the table is not changed. -- Rod Grimes rgrimes@freebsd.org