aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/amd_iommu_init.c
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2008-11-17 15:07:17 +0100
committerJoerg Roedel <joerg.roedel@amd.com>2008-11-18 15:43:23 +0100
commite5e1f606ecbf67e52ebe2df5d14f8b94ec6544d0 (patch)
tree07ca4cda790e3937f0893b41b3777ce6492ef9f4 /arch/x86/kernel/amd_iommu_init.c
parentMerge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6 (diff)
downloadlinux-dev-e5e1f606ecbf67e52ebe2df5d14f8b94ec6544d0.tar.xz
linux-dev-e5e1f606ecbf67e52ebe2df5d14f8b94ec6544d0.zip
AMD IOMMU: add parameter to disable device isolation
Impact: add a new AMD IOMMU kernel command line parameter Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'arch/x86/kernel/amd_iommu_init.c')
-rw-r--r--arch/x86/kernel/amd_iommu_init.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/amd_iommu_init.c b/arch/x86/kernel/amd_iommu_init.c
index 0cdcda35a05f..838a2e1d5bb2 100644
--- a/arch/x86/kernel/amd_iommu_init.c
+++ b/arch/x86/kernel/amd_iommu_init.c
@@ -1213,6 +1213,8 @@ static int __init parse_amd_iommu_options(char *str)
for (; *str; ++str) {
if (strncmp(str, "isolate", 7) == 0)
amd_iommu_isolate = 1;
+ if (strncmp(str, "share", 5) == 0)
+ amd_iommu_isolate = 0;
if (strncmp(str, "fullflush", 11) == 0)
amd_iommu_unmap_flush = true;
}