This is a note to let you know that I've just added the patch titled
PCI/ASPM: Don't touch ASPM if forcibly disabled
to the 3.4-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
pci-aspm-don-t-touch-aspm-if-forcibly-disabled.patch
and it can be found in the queue-3.4 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From a26d5ecb3201c11e03663a8f4a7dedc0c5f85c07 Mon Sep 17 00:00:00 2001
From: Joe Lawrence <[email protected]>
Date: Tue, 15 Jan 2013 15:31:28 -0500
Subject: PCI/ASPM: Don't touch ASPM if forcibly disabled
From: Joe Lawrence <[email protected]>
commit a26d5ecb3201c11e03663a8f4a7dedc0c5f85c07 upstream.
Don't allocate and track PCIe ASPM state when "pcie_aspm=off" is specified
on the kernel command line.
Based-on-patch-from: Matthew Garrett <[email protected]>
Signed-off-by: Joe Lawrence <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Reviewed-by: David Bulkow <[email protected]>
Acked-by: Myron Stowe <[email protected]>
[wyj: Backported to 3.4: context adjust]
Signed-off-by: Yijing Wang <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/pci/pcie/aspm.c | 3 +++
1 file changed, 3 insertions(+)
--- a/drivers/pci/pcie/aspm.c
+++ b/drivers/pci/pcie/aspm.c
@@ -583,6 +583,9 @@ void pcie_aspm_init_link_state(struct pc
struct pcie_link_state *link;
int blacklist = !!pcie_aspm_sanity_check(pdev);
+ if (!aspm_support_enabled)
+ return;
+
if (!pci_is_pcie(pdev) || pdev->link_state)
return;
if (pdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT &&
Patches currently in stable-queue which might be from [email protected]
are
queue-3.4/pci-aspm-don-t-touch-aspm-if-forcibly-disabled.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html