fs/proc/task_mmu: convert smaps_hugetlb_range() to work on folios
authorDavid Hildenbrand <david@redhat.com>
Wed, 17 Apr 2024 09:23:13 +0000 (11:23 +0200)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 6 May 2024 00:53:41 +0000 (17:53 -0700)
commit6401a2e6900843a77a27873c0529dea68f61193d
tree252d938f3180ce36ad3a5877bbc57a7d688f0b0a
parent88e4e47c12836cf6875f73fca87baaf20c6ca1a2
fs/proc/task_mmu: convert smaps_hugetlb_range() to work on folios

Let's get rid of another page_mapcount() check and simply use
folio_likely_mapped_shared(), which is precise for hugetlb folios.

While at it, use huge_ptep_get() + pte_page() instead of ptep_get() +
vm_normal_page(), just like we do in pagemap_hugetlb_range().

No functional change intended.

Link: https://lkml.kernel.org/r/20240417092313.753919-3-david@redhat.com
Signed-off-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Oscar Salvador <osalvador@suse.de>
Cc: Muchun Song <muchun.song@linux.dev>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/proc/task_mmu.c