]>
Commit | Line | Data |
---|---|---|
5e5a94b6 BC |
1 | /* |
2 | * QEMU System Emulator block accounting | |
3 | * | |
4 | * Copyright (c) 2011 Christoph Hellwig | |
aece5edc | 5 | * Copyright (c) 2015 Igalia, S.L. |
5e5a94b6 BC |
6 | * |
7 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
8 | * of this software and associated documentation files (the "Software"), to deal | |
9 | * in the Software without restriction, including without limitation the rights | |
10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
11 | * copies of the Software, and to permit persons to whom the Software is | |
12 | * furnished to do so, subject to the following conditions: | |
13 | * | |
14 | * The above copyright notice and this permission notice shall be included in | |
15 | * all copies or substantial portions of the Software. | |
16 | * | |
17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
23 | * THE SOFTWARE. | |
24 | */ | |
25 | #ifndef BLOCK_ACCOUNTING_H | |
26 | #define BLOCK_ACCOUNTING_H | |
27 | ||
979e9b03 | 28 | #include "qemu/timed-average.h" |
5b50bf77 | 29 | #include "qemu/thread.h" |
b2aaf354 | 30 | #include "qapi/qapi-types-common.h" |
979e9b03 AG |
31 | |
32 | typedef struct BlockAcctTimedStats BlockAcctTimedStats; | |
5b50bf77 | 33 | typedef struct BlockAcctStats BlockAcctStats; |
5e5a94b6 BC |
34 | |
35 | enum BlockAcctType { | |
f3444466 | 36 | BLOCK_ACCT_NONE = 0, |
28298fd3 BC |
37 | BLOCK_ACCT_READ, |
38 | BLOCK_ACCT_WRITE, | |
39 | BLOCK_ACCT_FLUSH, | |
159f85dd | 40 | BLOCK_ACCT_UNMAP, |
28298fd3 | 41 | BLOCK_MAX_IOTYPE, |
5e5a94b6 BC |
42 | }; |
43 | ||
979e9b03 | 44 | struct BlockAcctTimedStats { |
5b50bf77 | 45 | BlockAcctStats *stats; |
979e9b03 AG |
46 | TimedAverage latency[BLOCK_MAX_IOTYPE]; |
47 | unsigned interval_length; /* in seconds */ | |
48 | QSLIST_ENTRY(BlockAcctTimedStats) entries; | |
49 | }; | |
50 | ||
b741ae74 VSO |
51 | typedef struct BlockLatencyHistogram { |
52 | /* The following histogram is represented like this: | |
53 | * | |
54 | * 5| * | |
55 | * 4| * | |
56 | * 3| * * | |
57 | * 2| * * * | |
58 | * 1| * * * * | |
59 | * +------------------ | |
60 | * 10 50 100 | |
61 | * | |
62 | * BlockLatencyHistogram histogram = { | |
63 | * .nbins = 4, | |
64 | * .boundaries = {10, 50, 100}, | |
65 | * .bins = {3, 1, 5, 2}, | |
66 | * }; | |
67 | * | |
68 | * @boundaries array define histogram intervals as follows: | |
69 | * [0, boundaries[0]), [boundaries[0], boundaries[1]), ... | |
70 | * [boundaries[nbins-2], +inf) | |
71 | * | |
72 | * So, for example above, histogram intervals are: | |
73 | * [0, 10), [10, 50), [50, 100), [100, +inf) | |
74 | */ | |
75 | int nbins; | |
76 | uint64_t *boundaries; /* @nbins-1 numbers here | |
77 | (all boundaries, except 0 and +inf) */ | |
78 | uint64_t *bins; | |
79 | } BlockLatencyHistogram; | |
80 | ||
5b50bf77 PB |
81 | struct BlockAcctStats { |
82 | QemuMutex lock; | |
28298fd3 BC |
83 | uint64_t nr_bytes[BLOCK_MAX_IOTYPE]; |
84 | uint64_t nr_ops[BLOCK_MAX_IOTYPE]; | |
7ee12daf AG |
85 | uint64_t invalid_ops[BLOCK_MAX_IOTYPE]; |
86 | uint64_t failed_ops[BLOCK_MAX_IOTYPE]; | |
28298fd3 | 87 | uint64_t total_time_ns[BLOCK_MAX_IOTYPE]; |
f4564d53 | 88 | uint64_t merged[BLOCK_MAX_IOTYPE]; |
cb38fffb | 89 | int64_t last_access_time_ns; |
979e9b03 | 90 | QSLIST_HEAD(, BlockAcctTimedStats) intervals; |
362e9299 AG |
91 | bool account_invalid; |
92 | bool account_failed; | |
b741ae74 | 93 | BlockLatencyHistogram latency_histogram[BLOCK_MAX_IOTYPE]; |
5b50bf77 | 94 | }; |
5e5a94b6 BC |
95 | |
96 | typedef struct BlockAcctCookie { | |
97 | int64_t bytes; | |
98 | int64_t start_time_ns; | |
99 | enum BlockAcctType type; | |
100 | } BlockAcctCookie; | |
101 | ||
9caa6f3d | 102 | void block_acct_init(BlockAcctStats *stats); |
b2aaf354 DL |
103 | void block_acct_setup(BlockAcctStats *stats, enum OnOffAuto account_invalid, |
104 | enum OnOffAuto account_failed); | |
979e9b03 AG |
105 | void block_acct_cleanup(BlockAcctStats *stats); |
106 | void block_acct_add_interval(BlockAcctStats *stats, unsigned interval_length); | |
107 | BlockAcctTimedStats *block_acct_interval_next(BlockAcctStats *stats, | |
108 | BlockAcctTimedStats *s); | |
5366d0c8 BC |
109 | void block_acct_start(BlockAcctStats *stats, BlockAcctCookie *cookie, |
110 | int64_t bytes, enum BlockAcctType type); | |
111 | void block_acct_done(BlockAcctStats *stats, BlockAcctCookie *cookie); | |
7ee12daf AG |
112 | void block_acct_failed(BlockAcctStats *stats, BlockAcctCookie *cookie); |
113 | void block_acct_invalid(BlockAcctStats *stats, enum BlockAcctType type); | |
f4564d53 PL |
114 | void block_acct_merge_done(BlockAcctStats *stats, enum BlockAcctType type, |
115 | int num_requests); | |
cb38fffb | 116 | int64_t block_acct_idle_time_ns(BlockAcctStats *stats); |
96e4deda AG |
117 | double block_acct_queue_depth(BlockAcctTimedStats *stats, |
118 | enum BlockAcctType type); | |
b741ae74 VSO |
119 | int block_latency_histogram_set(BlockAcctStats *stats, enum BlockAcctType type, |
120 | uint64List *boundaries); | |
121 | void block_latency_histograms_clear(BlockAcctStats *stats); | |
5e5a94b6 BC |
122 | |
123 | #endif |