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 1FB87C433FE for ; Sat, 27 Nov 2021 12:15:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1354543AbhK0MSw (ORCPT ); Sat, 27 Nov 2021 07:18:52 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35832 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1354084AbhK0MQv (ORCPT ); Sat, 27 Nov 2021 07:16:51 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 02F9CC061757; Sat, 27 Nov 2021 04:13:37 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id BC9DEB81B2C; Sat, 27 Nov 2021 12:13:35 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DEFA7C53FC7; Sat, 27 Nov 2021 12:13:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1638015214; bh=XtSbO4k+vMobFsdi5tmd+EqIlOAeUB4z3bp8mHbf/Es=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=t371DqErpIj7MtVmLv6hkkc1ialioBukKn0NsTCIZvvbmQoMJHLuODLDpIb5vXZu/ bR3Fqokrv02lGje8m9hgtgstjTFUYIQvPjFIeMO5jprV1dHL8zpm5NwOaxX/lnXLrt 1VmQt29aoMVKH1F9fURiIpv172oLWcmf/hiPLSL0= Date: Sat, 27 Nov 2021 13:13:32 +0100 From: Greg Kroah-Hartman To: Thomas Gleixner Cc: LKML , Bjorn Helgaas , Marc Zygnier , Alex Williamson , Kevin Tian , Jason Gunthorpe , Megha Dey , Ashok Raj , linux-pci@vger.kernel.org, Santosh Shilimkar , iommu@lists.linux-foundation.org, dmaengine@vger.kernel.org, Stuart Yoder , Laurentiu Tudor , Nishanth Menon , Tero Kristo , linux-arm-kernel@lists.infradead.org, x86@kernel.org, Vinod Koul , Mark Rutland , Will Deacon , Sinan Kaya Subject: Re: [patch 04/37] PCI/MSI: Use lock from msi_device_data Message-ID: References: <20211126224100.303046749@linutronix.de> <20211126230524.173951799@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211126230524.173951799@linutronix.de> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Nov 27, 2021 at 02:20:13AM +0100, Thomas Gleixner wrote: > Remove the register lock from struct device and use the one in > struct msi_device_data. > > Signed-off-by: Thomas Gleixner > --- > drivers/base/core.c | 1 - > drivers/pci/msi/msi.c | 2 +- > include/linux/device.h | 2 -- > 3 files changed, 1 insertion(+), 4 deletions(-) Reviewed-by: Greg Kroah-Hartman