[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240716193246.1909697-8-stewart.hildebrand@amd.com>
Date: Tue, 16 Jul 2024 15:32:37 -0400
From: Stewart Hildebrand <stewart.hildebrand@....com>
To: Bjorn Helgaas <bhelgaas@...gle.com>
CC: Stewart Hildebrand <stewart.hildebrand@....com>,
<linux-pci@...r.kernel.org>, <linux-kernel@...r.kernel.org>
Subject: [PATCH v2 7/8] PCI: Don't reassign resources that are already aligned
As a follow-up to commit 0dde1c08d1b9 ("PCI: Don't reassign resources
that are already aligned"), don't reassign already aligned resources
that have requested alignment without resizing.
Signed-off-by: Stewart Hildebrand <stewart.hildebrand@....com>
---
v1->v2:
* capitalize subject text
---
drivers/pci/pci.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 1ac1435ad91e..6df318beff37 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -6585,6 +6585,9 @@ static bool pci_request_resource_alignment(struct pci_dev *dev, int bar,
if (size >= align)
return false;
+ if (!resize && (r->start > align) && !(r->start & (align - 1)))
+ return false;
+
/*
* Increase the alignment of the resource. There are two ways we
* can do this:
--
2.45.2
Powered by blists - more mailing lists