dect
/
linux-2.6
Archived
13
0
Fork 0

AMD IOMMU: fix fullflush comparison length

Impact: fix comparison length for 'fullflush'

Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
This commit is contained in:
Joerg Roedel 2008-11-17 15:16:43 +01:00
parent 3ce1f93c6d
commit 695b5676c7
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}