#!/bin/sh # SPDX-License-Identifier: GPL-2.0 outfile="" now=`date +%s` while [ $# -gt 0 ] do case "$1" in -o) outfile="$2" shift 2;; -h) echo "usage: $0 [-o outfile] " exit 0;; *) break;; esac done if [ -z "$outfile" ] then outfile=`mktemp --tmpdir stackusage.$$.XXXX` fi KCFLAGS="${KCFLAGS} -fstack-usage" make "$@" # Prepend directory name to file names, remove column information, # make file:line/function/size/type properly tab-separated. find . -name '*.su' -newermt "@${now}" -print | \ xargs perl -MFile::Basename -pe \ '$d = dirname($ARGV); s#([^:]+:[0-9]+):[0-9]+:#$d/$1\t#;' | \ sort -k3,3nr > "${outfile}" echo "$0: output written to ${outfile}" select name='h' onchange='this.form.submit();'> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/mm/damon/tests/core-kunit.h
AgeCommit message (Expand)Author
2025-07-19mm/damon/core: add cleanup_target() ops callbackSeongJae Park
2025-05-22mm/damon/tests/core-kunit: add a test for damos_set_filters_default_reject()SeongJae Park
2025-03-17mm/damon/core: make damon_set_attrs() be safe to be called from damon_call()SeongJae Park
2025-01-25mm/damon: add 'allow' argument to damos_new_filter()SeongJae Park
2025-01-25mm/damon/core: support damos_filter->allowSeongJae Park
2024-09-09mm/damon/tests/core-kunit: skip damon_test_nr_accesses_to_accesses_bp() if ag...SeongJae Park
2024-09-03mm/damon: move kunit tests to tests/ subdirectory with _kunit suffixSeongJae Park