aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/amd_iommu.c
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2009-05-22 06:27:53 -0400
committerJoerg Roedel <joerg.roedel@amd.com>2009-05-28 12:17:13 -0400
commitfe16f088a88fb73161bba8784375c829f7e87b54 (patch)
tree6d581b943eb397d68bf241f5a3cffcf385e8f364 /arch/x86/kernel/amd_iommu.c
parentd9cfed925448f097ec7faab80d903eb7e5f99712 (diff)
amd-iommu: disable round-robin allocator for CONFIG_IOMMU_STRESS
Disabling the round-robin allocator results in reusing the same dma-addresses again very fast. This is a good test if the iotlb flushing is working correctly. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'arch/x86/kernel/amd_iommu.c')
-rw-r--r--arch/x86/kernel/amd_iommu.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/kernel/amd_iommu.c b/arch/x86/kernel/amd_iommu.c
index 31d56c36010a..543822b39a84 100644
--- a/arch/x86/kernel/amd_iommu.c
+++ b/arch/x86/kernel/amd_iommu.c
@@ -783,6 +783,11 @@ static unsigned long dma_ops_alloc_addresses(struct device *dev,
783{ 783{
784 unsigned long address; 784 unsigned long address;
785 785
786#ifdef CONFIG_IOMMU_STRESS
787 dom->next_address = 0;
788 dom->need_flush = true;
789#endif
790
786 address = dma_ops_area_alloc(dev, dom, pages, align_mask, 791 address = dma_ops_area_alloc(dev, dom, pages, align_mask,
787 dma_mask, dom->next_address); 792 dma_mask, dom->next_address);
788 793