mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
iommu/amd: Fix irq remapping detection logic
Commit7fa1c842ca
"iommu/irq_remapping: Change variable disable_irq_remap to be static" returns unconditionally success from the irq remapping prepare callback if the iommu can be initialized. The change assumed that iommu_go_to_state(IOMMU_ACPI_FINISHED) returns a failure if irq remapping is not enabled, but thats not the case. The function returns success when the iommu is initialized to the point which is required for remapping to work. The actual state of the irq remapping feature is reflected in the status variable amd_iommu_irq_remap, which is not considered in the return value. The fix is simple: If the iommu_go_to_state() returns success, evaluate the remapping state amd_iommu_irq_remap and reflect it in the return value. Fixes:7fa1c842ca
iommu/irq_remapping: Change variable disable_irq_remap to be static Reported-and-tested-by: Borislav Petkov <bp@alien8.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Jiang Liu <jiang.liu@linux.intel.com> Cc: Joerg Roedel <joro@8bytes.org>
This commit is contained in:
parent
2f82c9dc60
commit
3f4cb7c064
@ -2120,9 +2120,14 @@ static int __init iommu_go_to_state(enum iommu_init_state state)
|
||||
#ifdef CONFIG_IRQ_REMAP
|
||||
int __init amd_iommu_prepare(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
amd_iommu_irq_remap = true;
|
||||
|
||||
return iommu_go_to_state(IOMMU_ACPI_FINISHED);
|
||||
ret = iommu_go_to_state(IOMMU_ACPI_FINISHED);
|
||||
if (ret)
|
||||
return ret;
|
||||
return amd_iommu_irq_remap ? 0 : -ENODEV;
|
||||
}
|
||||
|
||||
int __init amd_iommu_enable(void)
|
||||
|
Loading…
Reference in New Issue
Block a user