]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
x86/amd-iommu: Un__init function required on shutdown
authorJoerg Roedel <joerg.roedel@amd.com>
Wed, 28 Oct 2009 17:02:26 +0000 (18:02 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 10 Nov 2009 00:52:46 +0000 (16:52 -0800)
commit ca0207114f1708b563f510b7781a360ec5b98359 upstream.

The function iommu_feature_disable is required on system
shutdown to disable the IOMMU but it is marked as __init.
This may result in a panic if the memory is reused. This
patch fixes this bug.

Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
arch/x86/kernel/amd_iommu_init.c

index 923e6827b1a7dd6c1313821570953c29fc1a4b98..3b06a9cc671d7c9b6633b9a827d72873855e1901 100644 (file)
@@ -230,7 +230,7 @@ static void __init iommu_feature_enable(struct amd_iommu *iommu, u8 bit)
        writel(ctrl, iommu->mmio_base + MMIO_CONTROL_OFFSET);
 }
 
-static void __init iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
+static void iommu_feature_disable(struct amd_iommu *iommu, u8 bit)
 {
        u32 ctrl;