iommu/amd: Allow NULL pointer parameter for domain_flush_complete()
authorJoerg Roedel <jroedel@suse.de>
Wed, 6 Jul 2016 10:50:35 +0000 (12:50 +0200)
committerJoerg Roedel <jroedel@suse.de>
Wed, 13 Jul 2016 10:48:35 +0000 (12:48 +0200)
If domain == NULL is passed to the function, it will queue a
completion-wait command on all IOMMUs in the system.

Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/amd_iommu.c

index 38f8a5e..0884b12 100644 (file)
@@ -1177,7 +1177,7 @@ static void domain_flush_complete(struct protection_domain *domain)
        int i;
 
        for (i = 0; i < amd_iommus_present; ++i) {
-               if (!domain->dev_iommu[i])
+               if (domain && !domain->dev_iommu[i])
                        continue;
 
                /*