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 375E8ECAAD4 for ; Mon, 29 Aug 2022 08:03:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229557AbiH2IDx (ORCPT ); Mon, 29 Aug 2022 04:03:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42068 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229747AbiH2IDw (ORCPT ); Mon, 29 Aug 2022 04:03:52 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 57E0151A36; Mon, 29 Aug 2022 01:03:50 -0700 (PDT) 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 CEFA3B80D44; Mon, 29 Aug 2022 08:03:48 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 14257C433D6; Mon, 29 Aug 2022 08:03:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1661760227; bh=Lhj0RHh8rNggcWDmxJyAYJ5b4fh7OxH73G3h9VdQhJ0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=t4bHkwddQL+VkPeOBO6eyTCFDarD3uvRNlu/PgH3EEV+iALlXBwyxo6yx5/Kuhoxb gcm6dIF6+zh2Imy6cmfljhY3E3PxRAfygoFT97w4ajDExkqUcLnhQUwtAgFiGu0Hs2 Q2S5lXbTmDIjZYKIa2A25kWw39ZrR5yVqwmzMAHTwWRH1A+fFh3YSNPhIuiFHJCXDV 31tlN4iE90xv0XMjrB7z9xBL/VYTwIh7Gbu/1je+samGOz51/TO9ns7nVnGZl1hW1x FrcDIkHEBJno1lyn6ev0v2h0rEm71IrjTkrNxqNJYFFe7jbkE33kHDJZsTOBucMyKg SOlXcZin7Cdpw== From: Lorenzo Pieralisi To: =?UTF-8?q?Krzysztof=20Wilczy=C5=84ski?= , Will McVicker , Rob Herring , Jingoo Han , Bjorn Helgaas , Gustavo Pimentel Cc: Lorenzo Pieralisi , Robin Murphy , kernel-team@android.com, Vidya Sagar , linux-kernel@vger.kernel.org, Christoph Hellwig , linux-pci@vger.kernel.org Subject: Re: [PATCH v6 0/2] PCI: dwc: Add support for 64-bit MSI target addresses Date: Mon, 29 Aug 2022 10:03:37 +0200 Message-Id: <166176019992.171538.122989473473924869.b4-ty@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220825235404.4132818-1-willmcvicker@google.com> References: <20220825235404.4132818-1-willmcvicker@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org On Thu, 25 Aug 2022 23:54:01 +0000, Will McVicker wrote: > I've update patch 2/2 to address Robin's suggestions. This includes: > > * Dropping the while-loop for retrying with a 64-bit mask in favor of > retrying within the error if-statement. > * Using an int for the DMA mask instead of a bool and ternary operation. > > Thanks again for the reviews and sorry for the extra revision today! > Hopefully this is the last one :) If not, I'd be fine to submit patch 1/2 > without 2/2 to avoid resending patch 1/2 for future revisions of patch 2/2 > (unless I don't need to do that anyway). > > [...] Applied to pci/dwc, thanks! [1/2] PCI: dwc: Drop dependency on ZONE_DMA32 https://git.kernel.org/lpieralisi/pci/c/423511ec23e2 [2/2] PCI: dwc: Add support for 64-bit MSI target address https://git.kernel.org/lpieralisi/pci/c/e99d8c5e803b Thanks, Lorenzo