mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
[PATCH] pciehp: fix handling of power faults during hotplug
The current pciehp implementation reports a power-fail error even if the condition has cleared by the time the corresponding interrupt handling code gets a chance to run. This patch fixes this problem. Signed-off-by: Rajesh Shah <rajesh.shah@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
a3a45ec8f8
commit
8239def1b5
@ -481,7 +481,6 @@ static int hpc_query_power_fault(struct slot * slot)
|
|||||||
u16 slot_status;
|
u16 slot_status;
|
||||||
u8 pwr_fault;
|
u8 pwr_fault;
|
||||||
int retval = 0;
|
int retval = 0;
|
||||||
u8 status;
|
|
||||||
|
|
||||||
DBG_ENTER_ROUTINE
|
DBG_ENTER_ROUTINE
|
||||||
|
|
||||||
@ -493,15 +492,13 @@ static int hpc_query_power_fault(struct slot * slot)
|
|||||||
retval = hp_register_read_word(php_ctlr->pci_dev, SLOT_STATUS(slot->ctrl->cap_base), slot_status);
|
retval = hp_register_read_word(php_ctlr->pci_dev, SLOT_STATUS(slot->ctrl->cap_base), slot_status);
|
||||||
|
|
||||||
if (retval) {
|
if (retval) {
|
||||||
err("%s : hp_register_read_word SLOT_STATUS failed\n", __FUNCTION__);
|
err("%s : Cannot check for power fault\n", __FUNCTION__);
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
|
pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
|
||||||
status = (pwr_fault != 1) ? 1 : 0;
|
|
||||||
|
|
||||||
DBG_LEAVE_ROUTINE
|
DBG_LEAVE_ROUTINE
|
||||||
/* Note: Logic 0 => fault */
|
return pwr_fault;
|
||||||
return status;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int hpc_set_attention_status(struct slot *slot, u8 value)
|
static int hpc_set_attention_status(struct slot *slot, u8 value)
|
||||||
|
Loading…
Reference in New Issue
Block a user