Linux-6.18.2/tools/testing/selftests/ublk/trace/count_ios_per_tid.bt
2025-12-23 20:06:59 +08:00

12 lines
179 B
Plaintext

/*
* Tabulates and prints I/O completions per thread for the given device
*
* $1: dev_t
*/
tracepoint:block:block_rq_complete
{
if (args.dev == $1) {
@[tid] = count();
}
}