diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2025-07-14 10:18:56 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2025-07-14 10:18:56 -0400 |
commit | e1e87f53cdfeb048747b1e6fa1d1a44b4a85376e (patch) | |
tree | b12305759419a953d75bda42519091a816265350 /libbcachefs/io_read.c | |
parent | b261da891a7d3bd8b9081b5814bfe9b7661e8ec7 (diff) |
Update bcachefs sources to 4b5105c627f4 workqueue: Basic memory allocation profiling support
Diffstat (limited to 'libbcachefs/io_read.c')
-rw-r--r-- | libbcachefs/io_read.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbcachefs/io_read.c b/libbcachefs/io_read.c index 3d484f1f..e854adea 100644 --- a/libbcachefs/io_read.c +++ b/libbcachefs/io_read.c @@ -87,7 +87,7 @@ void bch2_dev_congested_to_text(struct printbuf *out, struct bch_dev *ca) prt_printf(out, "read latency threshold:\t"); bch2_pr_time_units(out, - ca->io_latency[READ].quantiles.entries[QUANTILE_IDX(1)].m * 2); + ca->io_latency[READ].quantiles.entries[QUANTILE_IDX(1)].m << 2); prt_newline(out); prt_printf(out, "median read latency:\t"); @@ -97,7 +97,7 @@ void bch2_dev_congested_to_text(struct printbuf *out, struct bch_dev *ca) prt_printf(out, "write latency threshold:\t"); bch2_pr_time_units(out, - ca->io_latency[WRITE].quantiles.entries[QUANTILE_IDX(1)].m * 3); + ca->io_latency[WRITE].quantiles.entries[QUANTILE_IDX(1)].m << 3); prt_newline(out); prt_printf(out, "median write latency:\t"); |