projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ce1f93
)
AMD IOMMU: fix fullflush comparison length
author
Joerg Roedel
<joerg.roedel@amd.com>
Mon, 17 Nov 2008 14:16:43 +0000
(15:16 +0100)
committer
Joerg Roedel
<joerg.roedel@amd.com>
Tue, 18 Nov 2008 14:44:42 +0000
(15:44 +0100)
Impact: fix comparison length for 'fullflush'
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
arch/x86/kernel/amd_iommu_init.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/amd_iommu_init.c
b/arch/x86/kernel/amd_iommu_init.c
index
595edd2
..
30ae270
100644
(file)
--- a/
arch/x86/kernel/amd_iommu_init.c
+++ b/
arch/x86/kernel/amd_iommu_init.c
@@
-1215,7
+1215,7
@@
static int __init parse_amd_iommu_options(char *str)
amd_iommu_isolate = 1;
if (strncmp(str, "share", 5) == 0)
amd_iommu_isolate = 0;
- if (strncmp(str, "fullflush",
11
) == 0)
+ if (strncmp(str, "fullflush",
9
) == 0)
amd_iommu_unmap_flush = true;
}