]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
thunderbolt: Serialize PCIe tunnel creation with PCI rescan
authorMika Westerberg <mika.westerberg@linux.intel.com>
Thu, 18 Jan 2018 17:27:47 +0000 (20:27 +0300)
committerMika Westerberg <mika.westerberg@linux.intel.com>
Fri, 9 Mar 2018 09:54:09 +0000 (12:54 +0300)
We need to make sure a new PCIe tunnel is not created in a middle of
previous PCI rescan because otherwise the rescan code might find too
much and fail to reconfigure devices properly. This is important when
native PCIe hotplug is used. In BIOS assisted hotplug there should be no
such issue.

Fixes: f67cf491175a ("thunderbolt: Add support for Internal Connection Manager (ICM)")
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: stable@vger.kernel.org
drivers/thunderbolt/switch.c

index da54ace4dd2f2fe35030dcfab1092a8f26fced59..1cc79785ce429b453e90c7f21ac05d735b2bc88e 100644 (file)
@@ -716,6 +716,13 @@ static int tb_switch_set_authorized(struct tb_switch *sw, unsigned int val)
        if (sw->authorized)
                goto unlock;
 
+       /*
+        * Make sure there is no PCIe rescan ongoing when a new PCIe
+        * tunnel is created. Otherwise the PCIe rescan code might find
+        * the new tunnel too early.
+        */
+       pci_lock_rescan_remove();
+
        switch (val) {
        /* Approve switch */
        case 1:
@@ -735,6 +742,8 @@ static int tb_switch_set_authorized(struct tb_switch *sw, unsigned int val)
                break;
        }
 
+       pci_unlock_rescan_remove();
+
        if (!ret) {
                sw->authorized = val;
                /* Notify status change to the userspace */