]> git.baikalelectronics.ru Git - kernel.git/commit
PCI: properly clean up ASPM link state on device remove
authorAlex Chiang <achiang@hp.com>
Wed, 28 Jan 2009 21:59:18 +0000 (14:59 -0700)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Thu, 5 Feb 2009 00:58:40 +0000 (16:58 -0800)
commitea1f705c35f740763698e45f4b3ed863d697dccb
treee47c3d61d41875a35bfa4eeb504397f965050aba
parent4931a13433a21f4f80ae257d224b63fa4b60c5ce
PCI: properly clean up ASPM link state on device remove

We only want to disable ASPM when the last function is removed from
the parent's device list. We determine this by checking to see if
the parent's device list is completely empty.

Unfortunately, we never hit that code because the parent is considered
an upstream port, and never had an ASPM link_state associated with it.

The early check for !link_state causes us to return early, we never
discover that our device list is empty, and thus we never remove the
downstream ports' link_state nodes.

Instead of checking to see if the parent's device list is empty, we can
check to see if we are the last device on the list, and if so, then we
know that we can clean up properly.

Cc: Shaohua Li <shaohua.li@intel.com>
Signed-off-by: Alex Chiang <achiang@hp.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
drivers/pci/pcie/aspm.c