#!/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}" ct name='h' onchange='this.form.submit();'> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/net/e1000/LICENSE
howmsg=1'>Expand)
AgeCommit message (Expand)Author
Author
2007-04-28e1000: ROUND_UP macro cleanup in drivers/net/e1000Milind Arun Choudhary
2007-02-05e1000: simplify case handling gigabit at half duplexJesse Brandeburg
2006-12-26[PATCH] e1000: The user-supplied itr setting needs the lower 2 bits masked offJesse Brandeburg
2006-12-02e1000: add dynamic itr modesJesse Brandeburg
2006-12-02e1000: reorder e1000_param.cAuke Kok
2006-09-27e1000: rename flow control symbolsJeff Kirsher
2006-09-27e100, e1000, ixgb: update copyright header and remove LICENSEAuke Kok
2006-08-28e1000: Use module param array codeAuke Kok
2006-06-27e1000: allow user to disable ich8 lock loss workaroundAuke Kok
2006-06-27e1000: rework module param code with uninitialized valuesAuke Kok
2006-06-27e1000: add smart power down codeAuke Kok
2006-04-14e1000: Version bump, contact fix, year string changeAuke Kok