Skip to content

Commit

Permalink
AMD IOMMU: add stats counter for single iommu domain tlb flushes
Browse files Browse the repository at this point in the history
Impact: see number of single iommu domain tlb flushes in debugfs

Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
  • Loading branch information
Joerg Roedel committed Jan 3, 2009
1 parent c185897 commit f57d98a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arch/x86/kernel/amd_iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ DECLARE_STATS_COUNTER(cnt_unmap_sg);
DECLARE_STATS_COUNTER(cnt_alloc_coherent);
DECLARE_STATS_COUNTER(cnt_free_coherent);
DECLARE_STATS_COUNTER(cross_page);
DECLARE_STATS_COUNTER(domain_flush_single);

static struct dentry *stats_dir;
static struct dentry *de_isolate;
Expand Down Expand Up @@ -106,6 +107,7 @@ static void amd_iommu_stats_init(void)
amd_iommu_stats_add(&cnt_alloc_coherent);
amd_iommu_stats_add(&cnt_free_coherent);
amd_iommu_stats_add(&cross_page);
amd_iommu_stats_add(&domain_flush_single);
}

#endif
Expand Down Expand Up @@ -413,6 +415,8 @@ static void iommu_flush_tlb(struct amd_iommu *iommu, u16 domid)
{
u64 address = CMD_INV_IOMMU_ALL_PAGES_ADDRESS;

INC_STATS_COUNTER(domain_flush_single);

iommu_queue_inv_iommu_pages(iommu, address, domid, 0, 1);
}

Expand Down

0 comments on commit f57d98a

Please sign in to comment.