#!/bin/bash # # Profiling physical memory by all retired load instructions/uops event # MEM_INST_RETIRED.ALL_LOADS or MEM_UOPS_RETIRED.ALL_LOADS # load=`perf list | grep mem_inst_retired.all_loads` if [ -z "$load" ]; then load=`perf list | grep mem_uops_retired.all_loads` fi if [ -z "$load" ]; then echo "There is no event to count all retired load instructions/uops." exit 1 fi arg=$(echo $load | tr -d ' ') arg="$arg:P" perf record --phys-data -e $arg $@ ='logo' rowspan='2'>cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/mm/page_isolation.c
AgeCommit message (Expand)Author
2024-09-03mm: remove migration for HugePage in isolate_single_pageblock()Kefeng Wang
2024-09-01mm: page_isolation: handle unaccepted memory isolationKirill A. Shutemov
2024-04-25mm: page_isolation: prepare for hygienic freelistsJohannes Weiner
2024-04-25mm: page_alloc: set migratetype inside move_freepages()Zi Yan
2024-04-25mm: page_alloc: fix freelist movement during block conversionJohannes Weiner
2024-03-04mm: add alloc_contig_migrate_range allocation statisticsRichard Chang
2024-01-08mm, treewide: rename MAX_ORDER to MAX_PAGE_ORDERKirill A. Shutemov
2023-08-18mm/hugetlb: get rid of page_hstate()Sidhartha Kumar