#!/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}" ebf8f701d3566423ce8f17e614cde9806'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/arch/x86/kernel/cpu/mcheck/therm_throt.c
AgeCommit message (Expand)Author
2009-12-14x86, mce: Clean up thermal init by introducing intel_thermal_supported()Hidetoshi Seto
2009-12-14x86, mce: Thermal monitoring depends on APIC being enabledCyrill Gorcunov
2009-12-11x86: Limit the number of processor bootup messagesMike Travis
2009-11-12x86, mce: Fix __init annotationsHidetoshi Seto
2009-11-11x86: Mark the thermal init functions __initYong Wang
2009-11-10x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP valueYong Wang
2009-09-22x86: mce: Fix thermal throttling message stormIngo Molnar
2009-09-22x86: mce: Clean up thermal throttling state tracking codeIngo Molnar
2009-09-17Merge branch 'x86-mce-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds
2009-08-16x86, mce: therm_throt: Don't log redundant normalityHugh Dickins
2009-08-11x86, mce: therm_throt - change when we print messagesDmitry Torokhov
2009-07-29x86, mce: fix reporting of Thermal Monitoring mechanism enabledBartlomiej Zolnierkiewicz
2009-06-16x86, mce: remove therm_throt.hHidetoshi Seto
2009-06-16x86, mce: remove intel_set_thermal_handler()Hidetoshi Seto
2009-06-16x86, mce: squash mce_intel.c into therm_throt.cHidetoshi Seto
2009-06-16x86, mce: unify smp_thermal_interruptHidetoshi Seto
2009-05-28x86, mce: trivial clean up for therm_throt.cHidetoshi Seto
2009-05-28x86, mce: clean up therm_throt.cIngo Molnar
2008-07-21sysdev: Pass the attribute to the low level sysdev show/store functionAndi Kleen