From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754144AbdCGApW (ORCPT ); Mon, 6 Mar 2017 19:45:22 -0500 Received: from gate.crashing.org ([63.228.1.57]:46598 "EHLO gate.crashing.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752726AbdCGApR (ORCPT ); Mon, 6 Mar 2017 19:45:17 -0500 Message-ID: <1488836928.2870.142.camel@kernel.crashing.org> Subject: Re: Regression in 4.11 - PowerPC crashes on boot, bisected to commit 5657933dbb6e From: Benjamin Herrenschmidt To: Larry Finger , Bart Van Assche , "regressions@leemhuis.info" Cc: "linux-kernel@vger.kernel.org" Date: Tue, 07 Mar 2017 08:48:48 +1100 In-Reply-To: <1f134650-adcf-ef11-21aa-fad9d1dc3c29@lwfinger.net> References: <5bc9c08f-58aa-ef26-8891-4837e2d4184b@lwfinger.net> <1488431644.2870.64.camel@kernel.crashing.org> <1488823339.3125.3.camel@sandisk.com> <1f134650-adcf-ef11-21aa-fad9d1dc3c29@lwfinger.net> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.22.5 (3.22.5-1.fc25) Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2017-03-06 at 13:46 -0600, Larry Finger wrote: > I was able to create a PPC emulation with debian-8.7.1-powerpc-CD-1.iso  > > following the instructions in https://gmplib.org/~tege/qemu.html. My only  > problem was that "-net tap" fails and I did not find any way to get networking  > working. > > After looking at the screen through a number of crashes, I have determined that  > the top entry in the traceback comes from dmam_alloc_coherent(). I have not been  > able to see the offset to determine which BUG_ON call in that routine is being  > triggered. > > I tried to modify panic() to see if I could keep the screen on longer after the  > failure, but no joy so far. I think the problem is this code in drivers/macintosh/macio_asic.c: #ifdef CONFIG_PCI /* Set the DMA ops to the ones from the PCI device, this could be * fishy if we didn't know that on PowerMac it's always direct ops * or iommu ops that will work fine * * To get all the fields, copy all archdata */ dev->ofdev.dev.archdata = chip->lbus.pdev->dev.archdata; #endif /* CONFIG_PCI */ This is definitely bad. A quick fix is to copy the new dev->dma_ops field (as well, there is still stuff in archdata that we need too). A better long term fix is to have a set of macio_dma_ops wrappers that do "the right thing". Cheers, Ben.