Skip to content

Commit

Permalink
ACPI / hotplug / PCI: Drop crit_sect locking
Browse files Browse the repository at this point in the history
After recent PCI core changes related to the rescan/remove locking,
the code sections under crit_sect mutexes from ACPIPHP slot objects
are always executed under the general PCI rescan/remove lock.
For this reason, the crit_sect mutexes are simply redundant, so drop
them.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Tested-by: Mika Westerberg <mika.westerberg@linux.intel.com>
  • Loading branch information
Rafael J. Wysocki committed Feb 5, 2014
1 parent b6708fb commit 661b406
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 21 deletions.
1 change: 0 additions & 1 deletion drivers/pci/hotplug/acpiphp.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ struct acpiphp_slot {
struct list_head funcs; /* one slot may have different
objects (i.e. for each function) */
struct slot *slot;
struct mutex crit_sect;

u8 device; /* pci device# */
u32 flags; /* see below */
Expand Down
23 changes: 3 additions & 20 deletions drivers/pci/hotplug/acpiphp_glue.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,6 @@ static acpi_status register_slot(acpi_handle handle, u32 lvl, void *data,
slot->bus = bridge->pci_bus;
slot->device = device;
INIT_LIST_HEAD(&slot->funcs);
mutex_init(&slot->crit_sect);

list_add_tail(&slot->node, &bridge->slots);

Expand Down Expand Up @@ -744,7 +743,6 @@ static void acpiphp_check_bridge(struct acpiphp_bridge *bridge)
struct pci_bus *bus = slot->bus;
struct pci_dev *dev, *tmp;

mutex_lock(&slot->crit_sect);
if (slot_no_hotplug(slot)) {
; /* do nothing */
} else if (get_slot_status(slot) == ACPI_STA_ALL) {
Expand All @@ -759,7 +757,6 @@ static void acpiphp_check_bridge(struct acpiphp_bridge *bridge)
} else {
disable_slot(slot);
}
mutex_unlock(&slot->crit_sect);
}
}

Expand Down Expand Up @@ -846,12 +843,8 @@ static void hotplug_event(acpi_handle handle, u32 type, void *data)
} else {
struct acpiphp_slot *slot = func->slot;

if (slot->flags & SLOT_IS_GOING_AWAY)
break;

mutex_lock(&slot->crit_sect);
enable_slot(slot);
mutex_unlock(&slot->crit_sect);
if (!(slot->flags & SLOT_IS_GOING_AWAY))
enable_slot(slot);
}
break;

Expand All @@ -862,7 +855,6 @@ static void hotplug_event(acpi_handle handle, u32 type, void *data)
acpiphp_check_bridge(bridge);
} else {
struct acpiphp_slot *slot = func->slot;
int ret;

if (slot->flags & SLOT_IS_GOING_AWAY)
break;
Expand All @@ -871,10 +863,7 @@ static void hotplug_event(acpi_handle handle, u32 type, void *data)
* Check if anything has changed in the slot and rescan
* from the parent if that's the case.
*/
mutex_lock(&slot->crit_sect);
ret = acpiphp_rescan_slot(slot);
mutex_unlock(&slot->crit_sect);
if (ret)
if (acpiphp_rescan_slot(slot))
acpiphp_check_bridge(func->parent);
}
break;
Expand Down Expand Up @@ -1088,13 +1077,10 @@ int acpiphp_enable_slot(struct acpiphp_slot *slot)
if (slot->flags & SLOT_IS_GOING_AWAY)
return -ENODEV;

mutex_lock(&slot->crit_sect);
/* configure all functions */
if (!(slot->flags & SLOT_ENABLED))
enable_slot(slot);

mutex_unlock(&slot->crit_sect);

pci_unlock_rescan_remove();
return 0;
}
Expand All @@ -1110,8 +1096,6 @@ static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot)
if (slot->flags & SLOT_IS_GOING_AWAY)
return -ENODEV;

mutex_lock(&slot->crit_sect);

/* unconfigure all functions */
disable_slot(slot);

Expand All @@ -1125,7 +1109,6 @@ static int acpiphp_disable_and_eject_slot(struct acpiphp_slot *slot)
break;
}

mutex_unlock(&slot->crit_sect);
return 0;
}

Expand Down

0 comments on commit 661b406

Please sign in to comment.