Linux-6.18.2/tools/testing/selftests/ublk/trace/count_ios_per_tid.bt

12 lines
179 B
Plaintext
Raw Normal View History

2025-12-23 20:05:50 +08:00
/*
* 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();
}
}