#!/bin/bash # description: syscall top # args: [comm] [interval] n_args=0 for i in "$@" do if expr match "$i" "-" > /dev/null ; then break fi n_args=$(( $n_args + 1 )) done if [ "$n_args" -gt 2 ] ; then echo "usage: sctop-report [comm] [interval]" exit fi if [ "$n_args" -gt 1 ] ; then comm=$1 interval=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then interval=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval >cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/io_uring/opdef.h
AgeCommit message (Expand)Author
2023-09-21io_uring/rw: mark readv/writev as vectored in the opcode definitionJens Axboe
2023-01-29io_uring: Split io_issue_def structBreno Leitao
2023-01-29io_uring: Rename struct io_op_defBreno Leitao
2022-12-07io_uring: dont remove file from msg_ring reqsPavel Begunkov
2022-09-21io_uring: add custom opcode hooks on failPavel Begunkov
2022-08-24io_uring: conditional ->async_data allocationPavel Begunkov
2022-07-24io_uring: move opcode table to opdef.cJens Axboe
2022-07-24io_uring: move poll handling into its own fileJens Axboe