#!/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}" onchange='this.form.submit();'> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/io_uring/nop.c
AgeCommit message (Expand)Author
2025-08-27io_uring/nop: add support for IORING_SETUP_CQE_MIXEDJens Axboe
2025-06-23io_uring/nop: add IORING_NOP_TW completion flagJens Axboe
2025-05-21io_uring: finish IOU_OK -> IOU_COMPLETE transitionJens Axboe
2025-02-28io_uring/nop: use io_find_buf_node()Caleb Sander Mateos
2025-02-27io_uring/nop: reuse req->buf_indexKeith Busch
2024-11-21io_uring/nop: ensure nop->fd is always initializedJens Axboe
2024-11-07io_uring/rsrc: add & apply io_req_assign_buf_node()Ming Lei
2024-11-06io_uring/rsrc: split io_kiocb node type assignmentsJens Axboe
2024-11-02io_uring/rsrc: add io_rsrc_node_lookup() helperJens Axboe
2024-11-02io_uring/rsrc: unify file and buffer resource tablesJens Axboe
2024-11-02io_uring/rsrc: get rid of per-ring io_rsrc_node listJens Axboe
2024-10-29io_uring/nop: add support for testing registered files and buffersJens Axboe
2024-05-10io_uring: support to inject result for NOPMing Lei
2024-05-10io_uring: fail NOP if non-zero op flags is passed inMing Lei