blob: f4aa63ff2938a4097c2b848f379dbc87fe898a7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* 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();
}
}
|