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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 27065C54EE9 for ; Wed, 7 Sep 2022 12:29:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=IqpLPrZXIlTy9TOwEqb8MaRk2wbyFa3aJrcFW4Srtzo=; b=1ZtM89nUkpKeXj BYzF6LZknDffibJLGULLa/7Rr3woZkS1/+kvhnhyNZ2izjWlD2yAqn0c8CsgAINcL/2eHK4m/ny5y ctBXKnV9rCTkgOxWY+wx0w1lYw/tqKqNkcTSGh1YsNs9RdfqS+elK3wr42JbJOr7lDZ7+BDoa2GVq SRrybJDFgKmS4AOQXz0KCO44PUq7eSMN/oiZsvkmLJNFmpHFhw12bLkSWdj3BeISldeslIykqb4ZB vDhtb9yM3GwkokVHBHIcTxq3OpOKB21hnJhS2CA324Cg5oLElT8vwitBYhub3HWkquC/ib9odHJTD iCBFlmZT9FfnTKZ8DbjA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1oVu9t-0065sY-VP; Wed, 07 Sep 2022 12:27:58 +0000 Received: from mail.8bytes.org ([2a01:238:42d9:3f00:e505:6202:4f0c:f051]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1oVu9r-0065qy-4v for linux-arm-kernel@lists.infradead.org; Wed, 07 Sep 2022 12:27:56 +0000 Received: from 8bytes.org (p4ff2bb62.dip0.t-ipconnect.de [79.242.187.98]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.8bytes.org (Postfix) with ESMTPSA id AD80324000A; Wed, 7 Sep 2022 14:27:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=8bytes.org; s=default; t=1662553673; bh=0wl2Nk9Q0WFKXl/+RiiHcEiTn36WNoLwCfq691DbiTo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=eSE7PKfrDVe8icJKeddE6TPmkE9jmff1nD4d+WlM1hY3/Cw75Y+xwk9/93uFz6W15 GR8e8OiIgZW8JR5IAhp0Uy5JXQphStqSTD6FmEOTqhIrf/+VFazqJYYFRBcQ2lV3cB s3eT/CoqR3bpcmPloFTMEsw2SmRaOp+3V1xrdixQU4wWiP6D2lXQdjNjBq5yfr99i9 tOeHU659HmNsLiGg9WTIiDnu2ZRrG7kJlZ9UAV2HC4cBWSqsm9dasxoXWKThmZKn8+ HZNmWiU7Nj+NTlbE2wjnfEg5CFSqNj6rmEe39f0YNDrJ55E4Ow+VvKi7qVnB7+sRZ3 mhe21gvCnHSZQ== Date: Wed, 7 Sep 2022 14:27:52 +0200 From: Joerg Roedel To: Robin Murphy Cc: will@kernel.org, iommu@lists.linux.dev, linux-arm-kernel@lists.infradead.org, baolu.lu@linux.intel.com, kevin.tian@intel.com, suravee.suthikulpanit@amd.com, vasant.hegde@amd.com, mjrosato@linux.ibm.com, schnelle@linux.ibm.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 00/16] iommu: retire bus_set_iommu() Message-ID: References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220907_052755_468429_50AABFBC X-CRM114-Status: UNSURE ( 7.15 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, Aug 15, 2022 at 05:20:01PM +0100, Robin Murphy wrote: > Matthew Rosato (1): > iommu/s390: Fail probe for non-PCI devices > > Robin Murphy (15): > iommu/vt-d: Handle race between registration and device probe > iommu/amd: Handle race between registration and device probe > iommu: Always register bus notifiers > iommu: Move bus setup to IOMMU device registration > iommu/amd: Clean up bus_set_iommu() > iommu/arm-smmu: Clean up bus_set_iommu() > iommu/arm-smmu-v3: Clean up bus_set_iommu() > iommu/dart: Clean up bus_set_iommu() > iommu/exynos: Clean up bus_set_iommu() > iommu/ipmmu-vmsa: Clean up bus_set_iommu() > iommu/mtk: Clean up bus_set_iommu() > iommu/omap: Clean up bus_set_iommu() > iommu/tegra-smmu: Clean up bus_set_iommu() > iommu/virtio: Clean up bus_set_iommu() > iommu: Clean up bus_set_iommu() Applied, thanks Robin. _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel