From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D6614C433FE for ; Wed, 30 Mar 2022 17:19:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1349234AbiC3RV0 (ORCPT ); Wed, 30 Mar 2022 13:21:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33040 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1346137AbiC3RVY (ORCPT ); Wed, 30 Mar 2022 13:21:24 -0400 Received: from muru.com (muru.com [72.249.23.125]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 466A15A5B6; Wed, 30 Mar 2022 10:19:39 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id 7C50780FA; Wed, 30 Mar 2022 17:17:31 +0000 (UTC) Date: Wed, 30 Mar 2022 20:19:37 +0300 From: Tony Lindgren To: Jason Gunthorpe Cc: Lu Baolu , Joerg Roedel , Christoph Hellwig , Ben Skeggs , Kevin Tian , Ashok Raj , Will Deacon , Robin Murphy , Alex Williamson , Eric Auger , Liu Yi L , Jacob jun Pan , David Airlie , Daniel Vetter , Thierry Reding , Jonathan Hunter , iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org, Christoph Hellwig , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, regressions@lists.linux.dev Subject: Re: [PATCH v4 8/9] iommu: Remove unused argument in is_attach_deferred Message-ID: References: <20220216025249.3459465-1-baolu.lu@linux.intel.com> <20220216025249.3459465-9-baolu.lu@linux.intel.com> <20220330142340.GA2111031@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220330142340.GA2111031@nvidia.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Jason Gunthorpe [220330 14:21]: > On Wed, Mar 30, 2022 at 05:00:39PM +0300, Tony Lindgren wrote: > > Hi, > > > > * Lu Baolu [700101 02:00]: > > > The is_attach_deferred iommu_ops callback is a device op. The domain > > > argument is unnecessary and never used. Remove it to make code clean. > > > > Looks like this causes a regression for at least drivers/iommu/omap-iommu.c. > > > > To me it seems the issue is there is no is_attach_deferred implemented, so > > we get a NULL pointer dereference at virtual address 00000008: > > > > __iommu_probe_device from probe_iommu_group+0x2c/0x38 > > probe_iommu_group from bus_for_each_dev+0x74/0xbc > > bus_for_each_dev from bus_iommu_probe+0x34/0x2e8 > > bus_iommu_probe from bus_set_iommu+0x80/0xc8 > > bus_set_iommu from omap_iommu_init+0x88/0xcc > > omap_iommu_init from do_one_initcall+0x44/0x24c > > > > Any ideas for a fix? > > > > It would be good to fix this quickly so we don't end up with a broken > > v5.18-rc1.. > > > > For reference, this is mainline commit 41bb23e70b50 ("iommu: Remove unused > > argument in is_attach_deferred"). > > Are you confident in the bisection? I don't see how that commit could > NULL deref.. Oops sorry you're right, the breaking commit is a different patch, it's 3f6634d997db ("iommu: Use right way to retrieve iommu_ops") instead. I must have picked the wrong commit while testing. > Can you find the code that is the NULL deref? I can debug a bit more tomorrow. Regards, Tony