Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 695b5676 authored by Joerg Roedel's avatar Joerg Roedel
Browse files

AMD IOMMU: fix fullflush comparison length



Impact: fix comparison length for 'fullflush'

Signed-off-by: default avatarJoerg Roedel <joerg.roedel@amd.com>
parent 3ce1f93c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}