Skip to content

Commit

Permalink
mm: add thp_utilization metrics to /proc/thp_utilization
Browse files Browse the repository at this point in the history
THPs have historically been enabled on a per application basis due to
performance increase or decrease depending on how the particular
application uses physical memory. When THPs are heavily utilized,
application performance improves due to fewer TLB cache misses.
It has long been suspected that performance regressions when THP
is enabled happens due to heavily underutilized anonymous THPs.

Previously there was no way to track how much of a THP is
actually being used. With this change, we seek to gain visibility
into the utilization of THPs in order to make more intelligent
decisions regarding paging.

This change introduces a tool that scans through all of physical
memory for anonymous THPs and groups them into buckets based
on utilization. It also includes an interface under
/proc/thp_utilization.

Utilization of a THP is defined as the percentage of nonzero
pages in the THP. The worker thread will scan through all
of physical memory and obtain utilization of all anonymous
THPs. It will gather this information by periodically scanning
through all of physical memory for anonymous THPs, group them
into buckets based on utilization, and report utilization
information through /proc/thp_utilization.

Signed-off-by: Alexander Zhu <alexlzhu@fb.com>
  • Loading branch information
alexlzhu authored and intel-lab-lkp committed Aug 5, 2022
1 parent 9e2f402 commit c3896ed
Show file tree
Hide file tree
Showing 4 changed files with 204 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Documentation/admin-guide/mm/transhuge.rst
Expand Up @@ -297,6 +297,11 @@ To identify what applications are mapping file transparent huge pages, it
is necessary to read ``/proc/PID/smaps`` and count the FileHugeMapped fields
for each mapping.

The utilization of transparent hugepages can be viewed by reading
``/proc/thp_utilization``. This shows the number of THPs per
utilization bucket and the number of zero pages in each bucket. The
last two lines show the time and the duration of the last scan.

Note that reading the smaps file is expensive and reading it
frequently will incur overhead.

Expand Down
30 changes: 30 additions & 0 deletions Documentation/filesystems/proc.rst
Expand Up @@ -720,6 +720,7 @@ files are there, and which are missing.
sys See chapter 2
sysvipc Info of SysVIPC Resources (msg, sem, shm) (2.4)
tty Info of tty drivers
thp_utilization Info on thp utilization
uptime Wall clock since boot, combined idle time of all cpus
version Kernel version
video bttv info of video resources (2.4)
Expand Down Expand Up @@ -1158,6 +1159,35 @@ DirectMap4k, DirectMap2M, DirectMap1G
Breakdown of page table sizes used in the kernel's
identity mapping of RAM

thp_utilization
~~~~~~~~~~~~~~~

Provides information on the utilization of Transparent Hugepages. The
utilization of a THP is defined as the ratio of non zero filled 4kb
pages to the total number of pages in a THP. The buckets are labelled
by the range of total utilized 4kb pages with one line per utilization
bucket. Each line contains the total number of THPs in that bucket
and the total number of zero filled 4kb pages summed over all THPs
in that bucket. The last two lines show the timestamp and duration
respectively of the most recent scan over all of physical memory.

::

> cat /proc/thp_utilization
Utilized[0-50]: 435 217667
Utilized[51-101]: 58 25394
Utilized[102-152]: 51 19605
Utilized[153-203]: 43 14169
Utilized[204-255]: 54 15300
Utilized[256-306]: 55 12537
Utilized[307-357]: 49 8675
Utilized[358-408]: 67 8601
Utilized[409-459]: 82 6259
Utilized[460-512]: 189 2613
Last Scan Time: 1202.83
Last Scan Duration: 70.72


vmallocinfo
~~~~~~~~~~~

Expand Down
2 changes: 2 additions & 0 deletions include/linux/huge_mm.h
Expand Up @@ -196,6 +196,8 @@ bool transparent_hugepage_active(struct vm_area_struct *vma);
unsigned long thp_get_unmapped_area(struct file *filp, unsigned long addr,
unsigned long len, unsigned long pgoff, unsigned long flags);

int thp_number_utilized_pages(struct page *page);

void prep_transhuge_page(struct page *page);
void free_transhuge_page(struct page *page);

Expand Down
167 changes: 167 additions & 0 deletions mm/huge_memory.c
Expand Up @@ -31,6 +31,7 @@
#include <linux/hashtable.h>
#include <linux/userfaultfd_k.h>
#include <linux/page_idle.h>
#include <linux/proc_fs.h>
#include <linux/shmem_fs.h>
#include <linux/oom.h>
#include <linux/numa.h>
Expand All @@ -45,6 +46,16 @@
#define CREATE_TRACE_POINTS
#include <trace/events/thp.h>

/*
* The number of utilization buckets THPs will be grouped in
* under /proc/thp_utilization.
*/
#define THP_UTIL_BUCKET_NR 10
/*
* The number of addresses to scan through on each periodic
* run of the scanner that generates /proc/thp_utilization.
*/
#define THP_UTIL_SCAN_SIZE 256
/*
* By default, transparent hugepage support is disabled in order to avoid
* risking an increased memory footprint for applications that are not
Expand All @@ -70,6 +81,52 @@ static atomic_t huge_zero_refcount;
struct page *huge_zero_page __read_mostly;
unsigned long huge_zero_pfn __read_mostly = ~0UL;

static void thp_utilization_workfn(struct work_struct *work);
static DECLARE_DELAYED_WORK(thp_utilization_work, thp_utilization_workfn);

struct thp_scan_info_bucket {
int nr_thps;
int nr_zero_pages;
};

struct thp_scan_info {
struct thp_scan_info_bucket buckets[THP_UTIL_BUCKET_NR];
struct zone *scan_zone;
struct timespec64 last_scan_duration;
struct timespec64 last_scan_time;
unsigned long pfn;
};

static struct thp_scan_info thp_scan_proc;
static struct thp_scan_info thp_scan;

static int thp_utilization_show(struct seq_file *seqf, void *pos)
{
int i;
int start;
int end;

for (i = 0; i < THP_UTIL_BUCKET_NR; i++) {
start = i * HPAGE_PMD_NR / THP_UTIL_BUCKET_NR;
end = (i + 1 == THP_UTIL_BUCKET_NR)
? HPAGE_PMD_NR
: ((i + 1) * HPAGE_PMD_NR / THP_UTIL_BUCKET_NR - 1);
/* The last bucket will need to contain 100 */
seq_printf(seqf, "Utilized[%d-%d]: %d %d\n", start, end,
thp_scan_proc.buckets[i].nr_thps,
thp_scan_proc.buckets[i].nr_zero_pages);
}
seq_printf(seqf, "Last Scan Time: %lu.%02lu\n",
(unsigned long)thp_scan_proc.last_scan_time.tv_sec,
(thp_scan_proc.last_scan_time.tv_nsec / (NSEC_PER_SEC / 100)));

seq_printf(seqf, "Last Scan Duration: %lu.%02lu\n",
(unsigned long)thp_scan_proc.last_scan_duration.tv_sec,
(thp_scan_proc.last_scan_duration.tv_nsec / (NSEC_PER_SEC / 100)));

return 0;
}

bool transparent_hugepage_active(struct vm_area_struct *vma)
{
/* The addr is used to check if the vma size fits */
Expand Down Expand Up @@ -424,6 +481,9 @@ static int __init hugepage_init(void)
if (err)
goto err_slab;

proc_create_single("thp_utilization", 0, NULL, &thp_utilization_show);
schedule_delayed_work(&thp_utilization_work, HZ);

err = register_shrinker(&huge_zero_page_shrinker);
if (err)
goto err_hzp_shrinker;
Expand Down Expand Up @@ -538,6 +598,12 @@ static inline bool is_transparent_hugepage(struct page *page)
page[1].compound_dtor == TRANSHUGE_PAGE_DTOR;
}

bool is_anon_transparent_hugepage(struct page *page)
{
return PageAnon(page) && is_transparent_hugepage(page);
}
EXPORT_SYMBOL_GPL(is_anon_transparent_hugepage);

static unsigned long __thp_get_unmapped_area(struct file *filp,
unsigned long addr, unsigned long len,
loff_t off, unsigned long flags, unsigned long size)
Expand Down Expand Up @@ -588,6 +654,34 @@ unsigned long thp_get_unmapped_area(struct file *filp, unsigned long addr,
}
EXPORT_SYMBOL_GPL(thp_get_unmapped_area);

int thp_number_utilized_pages(struct page *page)
{
unsigned long page_index, page_offset, value;
int thp_nr_utilized_pages = HPAGE_PMD_NR;
int step_size = sizeof(unsigned long);
bool is_all_zeroes;
void *kaddr;

if (!page || !is_anon_transparent_hugepage(page))
return -1;

kaddr = kmap_local_page(page);
for (page_index = 0; page_index < HPAGE_PMD_NR; page_index++) {
is_all_zeroes = true;
for (page_offset = 0; page_offset < PAGE_SIZE; page_offset += step_size) {
value = *(unsigned long *)(kaddr + page_index * PAGE_SIZE + page_offset);
if (value != 0) {
is_all_zeroes = false;
break;
}
}
if (is_all_zeroes)
thp_nr_utilized_pages--;
}
kunmap_local(kaddr);
return thp_nr_utilized_pages;
}

static vm_fault_t __do_huge_pmd_anonymous_page(struct vm_fault *vmf,
struct page *page, gfp_t gfp)
{
Expand Down Expand Up @@ -3172,3 +3266,76 @@ void remove_migration_pmd(struct page_vma_mapped_walk *pvmw, struct page *new)
trace_remove_migration_pmd(address, pmd_val(pmde));
}
#endif

static void thp_scan_next_zone(void)
{
struct timespec64 current_time;
int i;
bool update_proc;

thp_scan.scan_zone = next_zone(thp_scan.scan_zone);
update_proc = !thp_scan.scan_zone;
thp_scan.scan_zone = update_proc ? (first_online_pgdat())->node_zones
: thp_scan.scan_zone;
thp_scan.pfn = (thp_scan.scan_zone->zone_start_pfn + HPAGE_PMD_NR - 1)
& ~(HPAGE_PMD_SIZE - 1);
if (!update_proc)
return;

ktime_get_ts64(&current_time);
thp_scan_proc.last_scan_duration = timespec64_sub(current_time,
thp_scan_proc.last_scan_time);
thp_scan_proc.last_scan_time = current_time;

for (i = 0; i < THP_UTIL_BUCKET_NR; i++) {
thp_scan_proc.buckets[i].nr_thps = thp_scan.buckets[i].nr_thps;
thp_scan_proc.buckets[i].nr_zero_pages = thp_scan.buckets[i].nr_zero_pages;
thp_scan.buckets[i].nr_thps = 0;
thp_scan.buckets[i].nr_zero_pages = 0;
}
}

static void thp_util_scan(unsigned long pfn_end)
{
struct page *page, *head = NULL;
int bucket, num_utilized_pages, current_pfn;
int i;

for (i = 0; i < THP_UTIL_SCAN_SIZE; i++) {
current_pfn = thp_scan.pfn;
thp_scan.pfn += HPAGE_PMD_NR;
if (current_pfn >= pfn_end)
return;
if (!pfn_valid(current_pfn))
continue;

page = pfn_to_page(current_pfn);
num_utilized_pages = thp_number_utilized_pages(page);
if (num_utilized_pages < 0)
continue;

head = compound_head(page);
bucket = num_utilized_pages * THP_UTIL_BUCKET_NR / HPAGE_PMD_NR;
bucket = min(bucket, THP_UTIL_BUCKET_NR - 1);
thp_scan.buckets[bucket].nr_thps++;
thp_scan.buckets[bucket].nr_zero_pages += (HPAGE_PMD_NR - num_utilized_pages);
}
}

static void thp_utilization_workfn(struct work_struct *work)
{
unsigned long pfn_end;

if (!thp_scan.scan_zone)
thp_scan.scan_zone = (first_online_pgdat())->node_zones;

pfn_end = (thp_scan.scan_zone->zone_start_pfn +
thp_scan.scan_zone->spanned_pages + HPAGE_PMD_NR - 1)
& ~(HPAGE_PMD_SIZE - 1);
if (!populated_zone(thp_scan.scan_zone) || thp_scan.pfn >= pfn_end)
thp_scan_next_zone();
else
thp_util_scan(pfn_end);

schedule_delayed_work(&thp_utilization_work, HZ);
}

0 comments on commit c3896ed

Please sign in to comment.