#!/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}" ame='h' onchange='this.form.submit();'> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/kernel/power/snapshot.c
AgeCommit message (Expand)Author
2025-02-18PM: hibernate: Replace deprecated kmap_atomic() with kmap_local_page()David Reaver
2025-01-25mm/memblock: add memblock_alloc_or_panic interfaceGuo Weikang
2024-09-10PM: hibernate: Remove unused stub for saveable_highmem_page()Andy Shevchenko
2024-02-22PM: hibernate: Don't ignore return from set_memory_ro()Christophe Leroy
2023-12-19PM: hibernate: Use kmap_local_page() in copy_data_page()Chen Haonan
2023-12-11PM: hibernate: Do not initialize error in snapshot_write_next()Li zeming
2023-12-11PM: hibernate: Drop unnecessary local variable initializationWang chaodong
2023-10-09Merge back earlier system-wide PM changes for v6.7.Rafael J. Wysocki
2023-10-04PM: hibernate: Fix copying the zero bitmap to safe pagesPavankumar Kondeti
2023-09-26PM: hibernate: Clean up sync_read handling in snapshot_write_next()Brian Geffon
2023-09-21PM: hibernate: Use __get_safe_page() rather than touching the listBrian Geffon
2023-07-24PM: hibernate: don't store zero pages in the image fileBrian Geffon
2023-06-28Merge tag 'mm-stable-2023-06-24-19-15' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds
2023-06-09mm: page_alloc: move mark_free_page() into snapshot.cKefeng Wang
2023-05-24PM: hibernate: Correct spelling mistake in a commentWang Honghui
2022-12-01PM: hibernate: Complain about memory map mismatches during resumeXueqin Luo
2022-11-03PM: hibernate: Fix mistake in kerneldoc commentxiongxin
2022-04-13PM: hibernate: Don't mark comment as kernel-docHaowen Bai
2022-04-13PM: hibernate: Fix some kernel-doc commentsYang Li