提交 dc3814f4 编写于 作者: C Colin Cross 提交者: Joerg Roedel

iommu/exynos: Tell kmemleak to ignore 2nd level page tables

The pointers to the 2nd level page tables are converted to 1st level
page table entries, which means kmemleak can't find them and assumes
they have been leaked.  Call kmemleak_ignore on the 2nd level page
tables to prevent them from showing up in kmemleak reports.
Signed-off-by: NColin Cross <ccross@android.com>
Signed-off-by: NDmitry Torokhov <dtor@chromium.org>
Signed-off-by: NJoerg Roedel <jroedel@suse.de>
上级 030bbdbf
......@@ -862,6 +862,7 @@ static sysmmu_pte_t *alloc_lv2entry(struct exynos_iommu_domain *priv,
return ERR_PTR(-ENOMEM);
*sent = mk_lv1ent_page(virt_to_phys(pent));
kmemleak_ignore(pent);
*pgcounter = NUM_LV2ENTRIES;
pgtable_flush(pent, pent + NUM_LV2ENTRIES);
pgtable_flush(sent, sent + 1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册