From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 23163 invoked from network); 9 Dec 2020 19:08:36 -0000 Received: from ewsd.inri.net (107.191.116.128) by inbox.vuxu.org with ESMTPUTF8; 9 Dec 2020 19:08:36 -0000 Received: from duke.felloff.net ([216.126.196.34]) by ewsd; Wed Dec 9 14:05:25 -0500 2020 Message-ID: Date: Wed, 09 Dec 2020 20:05:14 +0100 From: cinap_lenrek@felloff.net To: 9front@9front.org In-Reply-To: <805BF1C8-F6F2-449A-B954-DCF1BD4D1BAC@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: stable polling standard HTML factory wrapper locator Subject: Re: [9front] kernel crash in bhyve Reply-To: 9front@9front.org Precedence: bulk the wmsr 0x401 is harmless. its trying to initialize the MCE registers. you can get rid of it by passing *nomce= to the kernel. for the panic... is this a regression or the first time you tried it? the kernel calls rampage() initially to get memory for the page tables todo the mappings at KZERO. if this is a regression, you might try the *nomtrr= flag. maybe the mtrr's are giving strange cache attributes which makes the kernel exclude it from the memory map. the relevant line is here: /* RAM needs to be writeback */ mtrrexclude(MemRAM, "wb"); maybe you can insert a call of memmapdump() before and after this line? -- cinap