#!/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}" -v7.0 Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath/ath9k/debug.c
linux-6.6.y&id=591dd4c10146e541b9f7a461cb6b638ab313718d'>device.c
AgeCommit message (Expand)Author
AgeCommit message (Expand)Author
2019-10-10s390/cio: fix virtio-ccw DMA without PVHalil Pasic
2019-07-30drivers: Introduce device lookup variants by nameSuzuki K Poulose
2019-07-12Merge tag 'driver-core-5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds
2019-06-26drivers: s390/cio: Fix compilation warning about const qualifiersSuzuki K Poulose
2019-06-24driver_find_device: Unify the match function with class_find_device()Suzuki K Poulose
2019-06-24bus_find_device: Unify the match callback with class_find_deviceSuzuki K Poulose
2019-06-15s390/cio: add basic protected virtualization supportHalil Pasic
2018-03-26s390/cio: fix unbind of io_subchannel_driverSebastian Ott
2018-01-09treewide: Use DEVICE_ATTR_ROJoe Perches
2018-01-09treewide: Use DEVICE_ATTR_RWJoe Perches
2017-11-24s390: drivers: Remove redundant license textGreg Kroah-Hartman
2017-11-24s390: cio: add SPDX identifiers to the remaining filesGreg Kroah-Hartman
2017-11-14s390/cio: Convert timers to use timer_setup()Kees Cook
2017-09-19s390/cio: recover from bad pathsSebastian Ott