#!/bin/bash # description: export perf data to a sqlite3 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-sqlite-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-sqlite.py $dbname $columns $calls en' name='id' value='0f4dcba31bf409930999a9ecfe67db7c6d125105'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/mm/memory.c
AgeCommit message (Expand)Author
2025-11-24mm/memory: do not populate page table entries beyond i_sizeKiryl Shutsemau
2025-04-25mm: fix apply_to_existing_page_range()Kirill A. Shutemov
2025-04-10x86/mm/pat: Fix VM_PAT handling when fork() fails in copy_page_range()David Hildenbrand
2025-04-10lockdep/mm: Fix might_fault() lockdep check of current->mm->mmap_lockPeter Zijlstra
2025-03-13mm: don't skip arch_sync_kernel_mappings() in error pathsRyan Roberts