#!/bin/bash # description: export perf data to a postgresql database # args: [database name] [columns] [calls] n_args=0 for i in "$@" do if expr match "$i" "-" > /dev/null ; then break fi n_args=$(( $n_args + 1 )) done if [ "$n_args" -gt 3 ] ; then echo "usage: export-to-postgresql-report [database name] [columns] [calls]" exit fi if [ "$n_args" -gt 2 ] ; then dbname=$1 columns=$2 calls=$3 shift 3 elif [ "$n_args" -gt 1 ] ; then dbname=$1 columns=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then dbname=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/export-to-postgresql.py $dbname $columns $calls lected='selected'>0x221E-v0.0-v7.0 Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/mm/show_mem.c
AgeCommit message (Expand)Author
2026-01-31mm/vmscan: add tracepoint and reason for kswapd_failures resetJiayuan Chen
2025-09-21mm: re-enable kswapd when memory pressure subsides or demotion is toggledChanwon Park
2025-09-21mm/show_mem: add trylock while printing alloc infoYueyang Pan
2025-09-21mm/show_mem: dump the status of the mem alloc profiling before printingYueyang Pan
2025-09-21mm: show_mem: show number of zspages in show_free_areasThadeu Lima de Souza Cascardo
2025-07-19mm, vmstat: remove the NR_WRITEBACK_TEMP node_stat_item counterVlastimil Babka
2025-05-31Merge tag 'mm-stable-2025-05-31-14-50' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds