]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
drop queue-5.15/powerpc-pseries-iommu-enable_ddw-incorrectly-returns.patch
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Nov 2023 12:44:28 +0000 (12:44 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Nov 2023 12:44:28 +0000 (12:44 +0000)
queue-5.15/powerpc-pseries-iommu-enable_ddw-incorrectly-returns.patch [deleted file]
queue-5.15/series

diff --git a/queue-5.15/powerpc-pseries-iommu-enable_ddw-incorrectly-returns.patch b/queue-5.15/powerpc-pseries-iommu-enable_ddw-incorrectly-returns.patch
deleted file mode 100644 (file)
index 278d044..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-From df6fb58a767fd174a6fdcc76ce2b86124b567419 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 2 Oct 2023 22:08:02 -0500
-Subject: powerpc/pseries/iommu: enable_ddw incorrectly returns direct mapping
- for SR-IOV device
-
-From: Gaurav Batra <gbatra@linux.vnet.ibm.com>
-
-[ Upstream commit 3bf983e4e93ce8e6d69e9d63f52a66ec0856672e ]
-
-When a device is initialized, the driver invokes dma_supported() twice -
-first for streaming mappings followed by coherent mappings. For an
-SR-IOV device, default window is deleted and DDW created. With vPMEM
-enabled, TCE mappings are dynamically created for both vPMEM and SR-IOV
-device.  There are no direct mappings.
-
-First time when dma_supported() is called with 64 bit mask, DDW is created
-and marked as dynamic window. The second time dma_supported() is called,
-enable_ddw() finds existing window for the device and incorrectly returns
-it as "direct mapping".
-
-This only happens when size of DDW is big enough to map max LPAR memory.
-
-This results in streaming TCEs to not get dynamically mapped, since code
-incorrently assumes these are already pre-mapped. The adapter initially
-comes up but goes down due to EEH.
-
-Fixes: 381ceda88c4c ("powerpc/pseries/iommu: Make use of DDW for indirect mapping")
-Cc: stable@vger.kernel.org # v5.15+
-Signed-off-by: Gaurav Batra <gbatra@linux.vnet.ibm.com>
-Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-Link: https://msgid.link/20231003030802.47914-1-gbatra@linux.vnet.ibm.com
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- arch/powerpc/platforms/pseries/iommu.c | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/arch/powerpc/platforms/pseries/iommu.c b/arch/powerpc/platforms/pseries/iommu.c
-index aa5f8074e9b10..bee61292de23b 100644
---- a/arch/powerpc/platforms/pseries/iommu.c
-+++ b/arch/powerpc/platforms/pseries/iommu.c
-@@ -891,7 +891,8 @@ static int remove_ddw(struct device_node *np, bool remove_prop, const char *win_
-       return 0;
- }
--static bool find_existing_ddw(struct device_node *pdn, u64 *dma_addr, int *window_shift)
-+static bool find_existing_ddw(struct device_node *pdn, u64 *dma_addr, int *window_shift,
-+                            bool *direct_mapping)
- {
-       struct dma_win *window;
-       const struct dynamic_dma_window_prop *dma64;
-@@ -904,6 +905,7 @@ static bool find_existing_ddw(struct device_node *pdn, u64 *dma_addr, int *windo
-                       dma64 = window->prop;
-                       *dma_addr = be64_to_cpu(dma64->dma_base);
-                       *window_shift = be32_to_cpu(dma64->window_shift);
-+                      *direct_mapping = window->direct;
-                       found = true;
-                       break;
-               }
-@@ -1253,10 +1255,8 @@ static bool enable_ddw(struct pci_dev *dev, struct device_node *pdn)
-       mutex_lock(&dma_win_init_mutex);
--      if (find_existing_ddw(pdn, &dev->dev.archdata.dma_offset, &len)) {
--              direct_mapping = (len >= max_ram_len);
-+      if (find_existing_ddw(pdn, &dev->dev.archdata.dma_offset, &len, &direct_mapping))
-               goto out_unlock;
--      }
-       /*
-        * If we already went through this for a previous function of
--- 
-2.42.0
-
index 9eee137f6d4eb3f39f0bede3b80f456dbebe6ea8..8df23e4bd56b03bf13c0f68632c5ebbe1cba769c 100644 (file)
@@ -244,7 +244,6 @@ ksmbd-fix-slab-out-of-bounds-write-in-smb_inherit_da.patch
 arm64-dts-qcom-ipq6018-switch-tcsr-mutex-to-mmio.patch
 arm64-dts-qcom-ipq6018-fix-tcsr_mutex-register-size.patch
 powerpc-pseries-ddw-simplify-enable_ddw.patch
-powerpc-pseries-iommu-enable_ddw-incorrectly-returns.patch
 revert-ncsi-propagate-carrier-gain-loss-events-to-the-ncsi-controller.patch
 revert-i2c-pxa-move-to-generic-gpio-recovery.patch
 lsm-fix-default-return-value-for-vm_enough_memory.patch