Skip to content

Commit

Permalink
Consolidate ack checking
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeeter committed Nov 15, 2024
1 parent 515725c commit f3d07aa
Show file tree
Hide file tree
Showing 4 changed files with 190 additions and 373 deletions.
13 changes: 2 additions & 11 deletions tools/dtrace/perf-upstairs-wf.d
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,10 @@ crucible_upstairs*:::up-to-ds-write-start
substart[arg0] = timestamp;
}

crucible_upstairs*:::up-to-ds-flush-done,
crucible_upstairs*:::up-to-ds-write-done
crucible_upstairs*:::gw-flush-done,
crucible_upstairs*:::gw-write-done
/substart[arg0]/
{
@[probename] = quantize(timestamp - substart[arg0]);
substart[arg0] = 0;
final[arg0] = timestamp;
}

crucible_upstairs*:::gw-flush-done,
crucible_upstairs*:::gw-write-done
/final[arg0]/
{
@[probename] = quantize(timestamp - final[arg0]);
final[arg0] = 0;
}
Loading

0 comments on commit f3d07aa

Please sign in to comment.