Skip to content

Commit

Permalink
AMD IOMMU: add stats counter for cross-page request
Browse files Browse the repository at this point in the history
Impact: see number of requests for more than one page in debugfs

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

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

#endif
Expand Down Expand Up @@ -1217,6 +1219,9 @@ static dma_addr_t __map_single(struct device *dev,
pages = iommu_num_pages(paddr, size, PAGE_SIZE);
paddr &= PAGE_MASK;

if (pages > 1)
INC_STATS_COUNTER(cross_page);

if (align)
align_mask = (1UL << get_order(size)) - 1;

Expand Down

0 comments on commit c185897

Please sign in to comment.