Skip to content

Commit

Permalink
AMD IOMMU: fix fullflush comparison length
Browse files Browse the repository at this point in the history
Impact: fix comparison length for 'fullflush'

Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
  • Loading branch information
Joerg Roedel committed Nov 18, 2008
1 parent 3ce1f93 commit 695b567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kernel/amd_iommu_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 695b567

Please sign in to comment.