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 9CB3BC25B4E for ; Fri, 20 Jan 2023 10:23:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229647AbjATKXV (ORCPT ); Fri, 20 Jan 2023 05:23:21 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34592 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229543AbjATKXU (ORCPT ); Fri, 20 Jan 2023 05:23:20 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5B7DE8BA93 for ; Fri, 20 Jan 2023 02:23:19 -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 dfw.source.kernel.org (Postfix) with ESMTPS id EAE0561EFF for ; Fri, 20 Jan 2023 10:23:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0F1E4C433EF; Fri, 20 Jan 2023 10:23:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1674210198; bh=4DqJuaqYnQUzbKI9fdDrJ0+L9YbU5DcdCL9EUTYH51Y=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=de5qBTzjZ6upncynJLhZCDPDup/eo1j5JNxaK9aCISufhpvNxj5V1j6XiHbaSCPIn yCbDzD+xumNWbtnAPPbizV6vdAAfpInoil7jg/oa3xPht9Ck6KhOWj6/UO/8JfX/Q8 nox8Rq+qeb0KFdIoJ9l8+7IxyGqomfL8ZjlLIHE0= Date: Fri, 20 Jan 2023 11:23:15 +0100 From: Greg Kroah-Hartman To: Robin Murphy Cc: joro@8bytes.org, will@kernel.org, hch@lst.de, jgg@nvidia.com, iommu@lists.linux.dev, linux-kernel@vger.kernel.org, "Rafael J . Wysocki" Subject: Re: [PATCH 6/8] iommu: Retire bus ops Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jan 19, 2023 at 07:18:24PM +0000, Robin Murphy wrote: > With the rest of the API internals converted, it's time to finally > tackle probe_device and how we bootstrap the per-device ops association > to begin with. This ends up being disappointingly straightforward, since > fwspec users are already doing it in order to find their of_xlate > callback, and it works out that we can easily do the equivalent for > other drivers too. Then shuffle the remaining awareness of iommu_ops > into the couple of core headers that still need it, and breathe a sigh > of relief... > > Ding dong the bus ops are gone! > > CC: Rafael J. Wysocki > CC: Greg Kroah-Hartman > CC: Christoph Hellwig > Signed-off-by: Robin Murphy Nice work! Acked-by: Greg Kroah-Hartman