aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2008-12-12 09:14:21 -0500
committerJoerg Roedel <joerg.roedel@amd.com>2009-01-03 08:11:59 -0500
commitc8f0fb36bffa9e21d214a2910b825567d52bfc2c (patch)
tree6bd89aae7d27da187c5bb8484d09527f2c3725d0 /arch/x86
parent55877a6bcdf0843414eecc658550c6551f5b5e1d (diff)
AMD IOMMU: add stats counter for alloc_coherent requests
Impact: see number of alloc_coherent requests in debugfs Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/kernel/amd_iommu.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/kernel/amd_iommu.c b/arch/x86/kernel/amd_iommu.c
index 49f2c8533e12..ecc89f8857b6 100644
--- a/arch/x86/kernel/amd_iommu.c
+++ b/arch/x86/kernel/amd_iommu.c
@@ -69,6 +69,7 @@ DECLARE_STATS_COUNTER(cnt_map_single);
69DECLARE_STATS_COUNTER(cnt_unmap_single); 69DECLARE_STATS_COUNTER(cnt_unmap_single);
70DECLARE_STATS_COUNTER(cnt_map_sg); 70DECLARE_STATS_COUNTER(cnt_map_sg);
71DECLARE_STATS_COUNTER(cnt_unmap_sg); 71DECLARE_STATS_COUNTER(cnt_unmap_sg);
72DECLARE_STATS_COUNTER(cnt_alloc_coherent);
72 73
73static struct dentry *stats_dir; 74static struct dentry *stats_dir;
74static struct dentry *de_isolate; 75static struct dentry *de_isolate;
@@ -100,6 +101,7 @@ static void amd_iommu_stats_init(void)
100 amd_iommu_stats_add(&cnt_unmap_single); 101 amd_iommu_stats_add(&cnt_unmap_single);
101 amd_iommu_stats_add(&cnt_map_sg); 102 amd_iommu_stats_add(&cnt_map_sg);
102 amd_iommu_stats_add(&cnt_unmap_sg); 103 amd_iommu_stats_add(&cnt_unmap_sg);
104 amd_iommu_stats_add(&cnt_alloc_coherent);
103} 105}
104 106
105#endif 107#endif
@@ -1481,6 +1483,8 @@ static void *alloc_coherent(struct device *dev, size_t size,
1481 phys_addr_t paddr; 1483 phys_addr_t paddr;
1482 u64 dma_mask = dev->coherent_dma_mask; 1484 u64 dma_mask = dev->coherent_dma_mask;
1483 1485
1486 INC_STATS_COUNTER(cnt_alloc_coherent);
1487
1484 if (!check_device(dev)) 1488 if (!check_device(dev))
1485 return NULL; 1489 return NULL;
1486 1490