blob: f30f9b37fcf0d10dc4ab2a3d36fb4ab1ccb67104 [file] [log] [blame]
Tejun Heo7caa4712019-08-28 15:05:58 -07001/* SPDX-License-Identifier: GPL-2.0
2 *
3 * IO cost model based controller.
4 *
5 * Copyright (C) 2019 Tejun Heo <tj@kernel.org>
6 * Copyright (C) 2019 Andy Newell <newella@fb.com>
7 * Copyright (C) 2019 Facebook
8 *
9 * One challenge of controlling IO resources is the lack of trivially
10 * observable cost metric. This is distinguished from CPU and memory where
11 * wallclock time and the number of bytes can serve as accurate enough
12 * approximations.
13 *
14 * Bandwidth and iops are the most commonly used metrics for IO devices but
15 * depending on the type and specifics of the device, different IO patterns
16 * easily lead to multiple orders of magnitude variations rendering them
17 * useless for the purpose of IO capacity distribution. While on-device
18 * time, with a lot of clutches, could serve as a useful approximation for
19 * non-queued rotational devices, this is no longer viable with modern
20 * devices, even the rotational ones.
21 *
22 * While there is no cost metric we can trivially observe, it isn't a
23 * complete mystery. For example, on a rotational device, seek cost
24 * dominates while a contiguous transfer contributes a smaller amount
25 * proportional to the size. If we can characterize at least the relative
26 * costs of these different types of IOs, it should be possible to
27 * implement a reasonable work-conserving proportional IO resource
28 * distribution.
29 *
30 * 1. IO Cost Model
31 *
32 * IO cost model estimates the cost of an IO given its basic parameters and
33 * history (e.g. the end sector of the last IO). The cost is measured in
34 * device time. If a given IO is estimated to cost 10ms, the device should
35 * be able to process ~100 of those IOs in a second.
36 *
37 * Currently, there's only one builtin cost model - linear. Each IO is
38 * classified as sequential or random and given a base cost accordingly.
39 * On top of that, a size cost proportional to the length of the IO is
40 * added. While simple, this model captures the operational
41 * characteristics of a wide varienty of devices well enough. Default
42 * paramters for several different classes of devices are provided and the
43 * parameters can be configured from userspace via
44 * /sys/fs/cgroup/io.cost.model.
45 *
46 * If needed, tools/cgroup/iocost_coef_gen.py can be used to generate
47 * device-specific coefficients.
48 *
49 * 2. Control Strategy
50 *
51 * The device virtual time (vtime) is used as the primary control metric.
52 * The control strategy is composed of the following three parts.
53 *
54 * 2-1. Vtime Distribution
55 *
56 * When a cgroup becomes active in terms of IOs, its hierarchical share is
57 * calculated. Please consider the following hierarchy where the numbers
58 * inside parentheses denote the configured weights.
59 *
60 * root
61 * / \
62 * A (w:100) B (w:300)
63 * / \
64 * A0 (w:100) A1 (w:100)
65 *
66 * If B is idle and only A0 and A1 are actively issuing IOs, as the two are
67 * of equal weight, each gets 50% share. If then B starts issuing IOs, B
68 * gets 300/(100+300) or 75% share, and A0 and A1 equally splits the rest,
69 * 12.5% each. The distribution mechanism only cares about these flattened
70 * shares. They're called hweights (hierarchical weights) and always add
Tejun Heofe20cdb52020-09-01 14:52:38 -040071 * upto 1 (WEIGHT_ONE).
Tejun Heo7caa4712019-08-28 15:05:58 -070072 *
73 * A given cgroup's vtime runs slower in inverse proportion to its hweight.
74 * For example, with 12.5% weight, A0's time runs 8 times slower (100/12.5)
75 * against the device vtime - an IO which takes 10ms on the underlying
76 * device is considered to take 80ms on A0.
77 *
78 * This constitutes the basis of IO capacity distribution. Each cgroup's
79 * vtime is running at a rate determined by its hweight. A cgroup tracks
80 * the vtime consumed by past IOs and can issue a new IO iff doing so
81 * wouldn't outrun the current device vtime. Otherwise, the IO is
82 * suspended until the vtime has progressed enough to cover it.
83 *
84 * 2-2. Vrate Adjustment
85 *
86 * It's unrealistic to expect the cost model to be perfect. There are too
87 * many devices and even on the same device the overall performance
88 * fluctuates depending on numerous factors such as IO mixture and device
89 * internal garbage collection. The controller needs to adapt dynamically.
90 *
91 * This is achieved by adjusting the overall IO rate according to how busy
92 * the device is. If the device becomes overloaded, we're sending down too
93 * many IOs and should generally slow down. If there are waiting issuers
94 * but the device isn't saturated, we're issuing too few and should
95 * generally speed up.
96 *
97 * To slow down, we lower the vrate - the rate at which the device vtime
98 * passes compared to the wall clock. For example, if the vtime is running
99 * at the vrate of 75%, all cgroups added up would only be able to issue
100 * 750ms worth of IOs per second, and vice-versa for speeding up.
101 *
102 * Device business is determined using two criteria - rq wait and
103 * completion latencies.
104 *
105 * When a device gets saturated, the on-device and then the request queues
106 * fill up and a bio which is ready to be issued has to wait for a request
107 * to become available. When this delay becomes noticeable, it's a clear
108 * indication that the device is saturated and we lower the vrate. This
109 * saturation signal is fairly conservative as it only triggers when both
110 * hardware and software queues are filled up, and is used as the default
111 * busy signal.
112 *
113 * As devices can have deep queues and be unfair in how the queued commands
114 * are executed, soley depending on rq wait may not result in satisfactory
115 * control quality. For a better control quality, completion latency QoS
116 * parameters can be configured so that the device is considered saturated
117 * if N'th percentile completion latency rises above the set point.
118 *
119 * The completion latency requirements are a function of both the
120 * underlying device characteristics and the desired IO latency quality of
121 * service. There is an inherent trade-off - the tighter the latency QoS,
122 * the higher the bandwidth lossage. Latency QoS is disabled by default
123 * and can be set through /sys/fs/cgroup/io.cost.qos.
124 *
125 * 2-3. Work Conservation
126 *
127 * Imagine two cgroups A and B with equal weights. A is issuing a small IO
128 * periodically while B is sending out enough parallel IOs to saturate the
129 * device on its own. Let's say A's usage amounts to 100ms worth of IO
130 * cost per second, i.e., 10% of the device capacity. The naive
131 * distribution of half and half would lead to 60% utilization of the
132 * device, a significant reduction in the total amount of work done
133 * compared to free-for-all competition. This is too high a cost to pay
134 * for IO control.
135 *
136 * To conserve the total amount of work done, we keep track of how much
137 * each active cgroup is actually using and yield part of its weight if
138 * there are other cgroups which can make use of it. In the above case,
139 * A's weight will be lowered so that it hovers above the actual usage and
140 * B would be able to use the rest.
141 *
142 * As we don't want to penalize a cgroup for donating its weight, the
143 * surplus weight adjustment factors in a margin and has an immediate
144 * snapback mechanism in case the cgroup needs more IO vtime for itself.
145 *
146 * Note that adjusting down surplus weights has the same effects as
147 * accelerating vtime for other cgroups and work conservation can also be
148 * implemented by adjusting vrate dynamically. However, squaring who can
149 * donate and should take back how much requires hweight propagations
150 * anyway making it easier to implement and understand as a separate
151 * mechanism.
Tejun Heo6954ff12019-08-28 15:05:59 -0700152 *
153 * 3. Monitoring
154 *
155 * Instead of debugfs or other clumsy monitoring mechanisms, this
156 * controller uses a drgn based monitoring script -
157 * tools/cgroup/iocost_monitor.py. For details on drgn, please see
158 * https://github.com/osandov/drgn. The ouput looks like the following.
159 *
160 * sdb RUN per=300ms cur_per=234.218:v203.695 busy= +1 vrate= 62.12%
Tejun Heo7c1ee702019-09-04 12:45:56 -0700161 * active weight hweight% inflt% dbt delay usages%
162 * test/a * 50/ 50 33.33/ 33.33 27.65 2 0*041 033:033:033
163 * test/b * 100/ 100 66.67/ 66.67 17.56 0 0*000 066:079:077
Tejun Heo6954ff12019-08-28 15:05:59 -0700164 *
165 * - per : Timer period
166 * - cur_per : Internal wall and device vtime clock
167 * - vrate : Device virtual time rate against wall clock
168 * - weight : Surplus-adjusted and configured weights
169 * - hweight : Surplus-adjusted and configured hierarchical weights
170 * - inflt : The percentage of in-flight IO cost at the end of last period
171 * - del_ms : Deferred issuer delay induction level and duration
172 * - usages : Usage history
Tejun Heo7caa4712019-08-28 15:05:58 -0700173 */
174
175#include <linux/kernel.h>
176#include <linux/module.h>
177#include <linux/timer.h>
178#include <linux/time64.h>
179#include <linux/parser.h>
180#include <linux/sched/signal.h>
181#include <linux/blk-cgroup.h>
Tejun Heo5e124f72020-09-01 14:52:33 -0400182#include <asm/local.h>
183#include <asm/local64.h>
Tejun Heo7caa4712019-08-28 15:05:58 -0700184#include "blk-rq-qos.h"
185#include "blk-stat.h"
186#include "blk-wbt.h"
187
188#ifdef CONFIG_TRACEPOINTS
189
190/* copied from TRACE_CGROUP_PATH, see cgroup-internal.h */
191#define TRACE_IOCG_PATH_LEN 1024
192static DEFINE_SPINLOCK(trace_iocg_path_lock);
193static char trace_iocg_path[TRACE_IOCG_PATH_LEN];
194
195#define TRACE_IOCG_PATH(type, iocg, ...) \
196 do { \
197 unsigned long flags; \
198 if (trace_iocost_##type##_enabled()) { \
199 spin_lock_irqsave(&trace_iocg_path_lock, flags); \
200 cgroup_path(iocg_to_blkg(iocg)->blkcg->css.cgroup, \
201 trace_iocg_path, TRACE_IOCG_PATH_LEN); \
202 trace_iocost_##type(iocg, trace_iocg_path, \
203 ##__VA_ARGS__); \
204 spin_unlock_irqrestore(&trace_iocg_path_lock, flags); \
205 } \
206 } while (0)
207
208#else /* CONFIG_TRACE_POINTS */
209#define TRACE_IOCG_PATH(type, iocg, ...) do { } while (0)
210#endif /* CONFIG_TRACE_POINTS */
211
212enum {
213 MILLION = 1000000,
214
215 /* timer period is calculated from latency requirements, bound it */
216 MIN_PERIOD = USEC_PER_MSEC,
217 MAX_PERIOD = USEC_PER_SEC,
218
219 /*
220 * A cgroup's vtime can run 50% behind the device vtime, which
221 * serves as its IO credit buffer. Surplus weight adjustment is
222 * immediately canceled if the vtime margin runs below 10%.
223 */
Tejun Heo7ca5b2e2020-09-01 14:52:41 -0400224 MARGIN_MIN_PCT = 10,
225 MARGIN_MAX_PCT = 50,
Tejun Heo7caa4712019-08-28 15:05:58 -0700226
Tejun Heo7ca5b2e2020-09-01 14:52:41 -0400227 /* Have some play in timer operations */
228 TIMER_SLACK_PCT = 1,
Tejun Heo7caa4712019-08-28 15:05:58 -0700229
230 /*
231 * vtime can wrap well within a reasonable uptime when vrate is
232 * consistently raised. Don't trust recorded cgroup vtime if the
233 * period counter indicates that it's older than 5mins.
234 */
235 VTIME_VALID_DUR = 300 * USEC_PER_SEC,
236
237 /*
238 * Remember the past three non-zero usages and use the max for
239 * surplus calculation. Three slots guarantee that we remember one
240 * full period usage from the last active stretch even after
241 * partial deactivation and re-activation periods. Don't start
242 * giving away weight before collecting two data points to prevent
243 * hweight adjustments based on one partial activation period.
244 */
245 NR_USAGE_SLOTS = 3,
246 MIN_VALID_USAGES = 2,
247
248 /* 1/64k is granular enough and can easily be handled w/ u32 */
Tejun Heofe20cdb52020-09-01 14:52:38 -0400249 WEIGHT_ONE = 1 << 16,
Tejun Heo7caa4712019-08-28 15:05:58 -0700250
251 /*
252 * As vtime is used to calculate the cost of each IO, it needs to
253 * be fairly high precision. For example, it should be able to
254 * represent the cost of a single page worth of discard with
255 * suffificient accuracy. At the same time, it should be able to
256 * represent reasonably long enough durations to be useful and
257 * convenient during operation.
258 *
259 * 1s worth of vtime is 2^37. This gives us both sub-nanosecond
260 * granularity and days of wrap-around time even at extreme vrates.
261 */
262 VTIME_PER_SEC_SHIFT = 37,
263 VTIME_PER_SEC = 1LLU << VTIME_PER_SEC_SHIFT,
264 VTIME_PER_USEC = VTIME_PER_SEC / USEC_PER_SEC,
Tejun Heocd006502020-04-13 12:27:56 -0400265 VTIME_PER_NSEC = VTIME_PER_SEC / NSEC_PER_SEC,
Tejun Heo7caa4712019-08-28 15:05:58 -0700266
267 /* bound vrate adjustments within two orders of magnitude */
268 VRATE_MIN_PPM = 10000, /* 1% */
269 VRATE_MAX_PPM = 100000000, /* 10000% */
270
271 VRATE_MIN = VTIME_PER_USEC * VRATE_MIN_PPM / MILLION,
272 VRATE_CLAMP_ADJ_PCT = 4,
273
274 /* if IOs end up waiting for requests, issue less */
275 RQ_WAIT_BUSY_PCT = 5,
276
277 /* unbusy hysterisis */
278 UNBUSY_THR_PCT = 75,
279
280 /* don't let cmds which take a very long time pin lagging for too long */
281 MAX_LAGGING_PERIODS = 10,
282
283 /*
284 * If usage% * 1.25 + 2% is lower than hweight% by more than 3%,
285 * donate the surplus.
286 */
287 SURPLUS_SCALE_PCT = 125, /* * 125% */
Tejun Heofe20cdb52020-09-01 14:52:38 -0400288 SURPLUS_SCALE_ABS = WEIGHT_ONE / 50, /* + 2% */
289 SURPLUS_MIN_ADJ_DELTA = WEIGHT_ONE / 33, /* 3% */
Tejun Heo7caa4712019-08-28 15:05:58 -0700290
291 /* switch iff the conditions are met for longer than this */
292 AUTOP_CYCLE_NSEC = 10LLU * NSEC_PER_SEC,
293
294 /*
295 * Count IO size in 4k pages. The 12bit shift helps keeping
296 * size-proportional components of cost calculation in closer
297 * numbers of digits to per-IO cost components.
298 */
299 IOC_PAGE_SHIFT = 12,
300 IOC_PAGE_SIZE = 1 << IOC_PAGE_SHIFT,
301 IOC_SECT_TO_PAGE_SHIFT = IOC_PAGE_SHIFT - SECTOR_SHIFT,
302
303 /* if apart further than 16M, consider randio for linear model */
304 LCOEF_RANDIO_PAGES = 4096,
305};
306
307enum ioc_running {
308 IOC_IDLE,
309 IOC_RUNNING,
310 IOC_STOP,
311};
312
313/* io.cost.qos controls including per-dev enable of the whole controller */
314enum {
315 QOS_ENABLE,
316 QOS_CTRL,
317 NR_QOS_CTRL_PARAMS,
318};
319
320/* io.cost.qos params */
321enum {
322 QOS_RPPM,
323 QOS_RLAT,
324 QOS_WPPM,
325 QOS_WLAT,
326 QOS_MIN,
327 QOS_MAX,
328 NR_QOS_PARAMS,
329};
330
331/* io.cost.model controls */
332enum {
333 COST_CTRL,
334 COST_MODEL,
335 NR_COST_CTRL_PARAMS,
336};
337
338/* builtin linear cost model coefficients */
339enum {
340 I_LCOEF_RBPS,
341 I_LCOEF_RSEQIOPS,
342 I_LCOEF_RRANDIOPS,
343 I_LCOEF_WBPS,
344 I_LCOEF_WSEQIOPS,
345 I_LCOEF_WRANDIOPS,
346 NR_I_LCOEFS,
347};
348
349enum {
350 LCOEF_RPAGE,
351 LCOEF_RSEQIO,
352 LCOEF_RRANDIO,
353 LCOEF_WPAGE,
354 LCOEF_WSEQIO,
355 LCOEF_WRANDIO,
356 NR_LCOEFS,
357};
358
359enum {
360 AUTOP_INVALID,
361 AUTOP_HDD,
362 AUTOP_SSD_QD1,
363 AUTOP_SSD_DFL,
364 AUTOP_SSD_FAST,
365};
366
367struct ioc_gq;
368
369struct ioc_params {
370 u32 qos[NR_QOS_PARAMS];
371 u64 i_lcoefs[NR_I_LCOEFS];
372 u64 lcoefs[NR_LCOEFS];
373 u32 too_fast_vrate_pct;
374 u32 too_slow_vrate_pct;
375};
376
Tejun Heo7ca5b2e2020-09-01 14:52:41 -0400377struct ioc_margins {
378 s64 min;
379 s64 max;
380};
381
Tejun Heo7caa4712019-08-28 15:05:58 -0700382struct ioc_missed {
Tejun Heo5e124f72020-09-01 14:52:33 -0400383 local_t nr_met;
384 local_t nr_missed;
Tejun Heo7caa4712019-08-28 15:05:58 -0700385 u32 last_met;
386 u32 last_missed;
387};
388
389struct ioc_pcpu_stat {
390 struct ioc_missed missed[2];
391
Tejun Heo5e124f72020-09-01 14:52:33 -0400392 local64_t rq_wait_ns;
Tejun Heo7caa4712019-08-28 15:05:58 -0700393 u64 last_rq_wait_ns;
394};
395
396/* per device */
397struct ioc {
398 struct rq_qos rqos;
399
400 bool enabled;
401
402 struct ioc_params params;
Tejun Heo7ca5b2e2020-09-01 14:52:41 -0400403 struct ioc_margins margins;
Tejun Heo7caa4712019-08-28 15:05:58 -0700404 u32 period_us;
Tejun Heo7ca5b2e2020-09-01 14:52:41 -0400405 u32 timer_slack_ns;
Tejun Heo7caa4712019-08-28 15:05:58 -0700406 u64 vrate_min;
407 u64 vrate_max;
408
409 spinlock_t lock;
410 struct timer_list timer;
411 struct list_head active_iocgs; /* active cgroups */
412 struct ioc_pcpu_stat __percpu *pcpu_stat;
413
414 enum ioc_running running;
415 atomic64_t vtime_rate;
416
Ahmed S. Darwish67b7b642020-07-20 17:55:26 +0200417 seqcount_spinlock_t period_seqcount;
Tejun Heoce955702020-09-01 14:52:40 -0400418 u64 period_at; /* wallclock starttime */
Tejun Heo7caa4712019-08-28 15:05:58 -0700419 u64 period_at_vtime; /* vtime starttime */
420
421 atomic64_t cur_period; /* inc'd each period */
422 int busy_level; /* saturation history */
423
Tejun Heo7caa4712019-08-28 15:05:58 -0700424 bool weights_updated;
425 atomic_t hweight_gen; /* for lazy hweights */
426
427 u64 autop_too_fast_at;
428 u64 autop_too_slow_at;
429 int autop_idx;
430 bool user_qos_params:1;
431 bool user_cost_model:1;
432};
433
Tejun Heo97eb1972020-09-01 14:52:43 -0400434struct iocg_pcpu_stat {
435 local64_t abs_vusage;
436};
437
438struct iocg_stat {
439 u64 usage_us;
440};
441
Tejun Heo7caa4712019-08-28 15:05:58 -0700442/* per device-cgroup pair */
443struct ioc_gq {
444 struct blkg_policy_data pd;
445 struct ioc *ioc;
446
447 /*
448 * A iocg can get its weight from two sources - an explicit
449 * per-device-cgroup configuration or the default weight of the
450 * cgroup. `cfg_weight` is the explicit per-device-cgroup
451 * configuration. `weight` is the effective considering both
452 * sources.
453 *
454 * When an idle cgroup becomes active its `active` goes from 0 to
455 * `weight`. `inuse` is the surplus adjusted active weight.
456 * `active` and `inuse` are used to calculate `hweight_active` and
457 * `hweight_inuse`.
458 *
459 * `last_inuse` remembers `inuse` while an iocg is idle to persist
460 * surplus adjustments.
461 */
462 u32 cfg_weight;
463 u32 weight;
464 u32 active;
465 u32 inuse;
466 u32 last_inuse;
467
468 sector_t cursor; /* to detect randio */
469
470 /*
471 * `vtime` is this iocg's vtime cursor which progresses as IOs are
472 * issued. If lagging behind device vtime, the delta represents
473 * the currently available IO budget. If runnning ahead, the
474 * overage.
475 *
476 * `vtime_done` is the same but progressed on completion rather
477 * than issue. The delta behind `vtime` represents the cost of
478 * currently in-flight IOs.
479 *
480 * `last_vtime` is used to remember `vtime` at the end of the last
481 * period to calculate utilization.
482 */
483 atomic64_t vtime;
484 atomic64_t done_vtime;
Tejun Heo0b80f982020-05-04 19:27:54 -0400485 u64 abs_vdebt;
Tejun Heo7caa4712019-08-28 15:05:58 -0700486 u64 last_vtime;
487
488 /*
489 * The period this iocg was last active in. Used for deactivation
490 * and invalidating `vtime`.
491 */
492 atomic64_t active_period;
493 struct list_head active_list;
494
Tejun Heo00410f12020-09-01 14:52:34 -0400495 /* see __propagate_weights() and current_hweight() for details */
Tejun Heo7caa4712019-08-28 15:05:58 -0700496 u64 child_active_sum;
497 u64 child_inuse_sum;
498 int hweight_gen;
499 u32 hweight_active;
500 u32 hweight_inuse;
501 bool has_surplus;
502
Tejun Heo97eb1972020-09-01 14:52:43 -0400503 struct list_head walk_list;
504
Tejun Heo7caa4712019-08-28 15:05:58 -0700505 struct wait_queue_head waitq;
506 struct hrtimer waitq_timer;
507 struct hrtimer delay_timer;
508
Tejun Heo97eb1972020-09-01 14:52:43 -0400509 /* statistics */
510 struct iocg_pcpu_stat __percpu *pcpu_stat;
511 struct iocg_stat local_stat;
512 struct iocg_stat desc_stat;
513 struct iocg_stat last_stat;
514 u64 last_stat_abs_vusage;
515
Tejun Heofe20cdb52020-09-01 14:52:38 -0400516 /* usage is recorded as fractions of WEIGHT_ONE */
Tejun Heo7caa4712019-08-28 15:05:58 -0700517 int usage_idx;
518 u32 usages[NR_USAGE_SLOTS];
519
520 /* this iocg's depth in the hierarchy and ancestors including self */
521 int level;
522 struct ioc_gq *ancestors[];
523};
524
525/* per cgroup */
526struct ioc_cgrp {
527 struct blkcg_policy_data cpd;
528 unsigned int dfl_weight;
529};
530
531struct ioc_now {
532 u64 now_ns;
Tejun Heoce955702020-09-01 14:52:40 -0400533 u64 now;
Tejun Heo7caa4712019-08-28 15:05:58 -0700534 u64 vnow;
535 u64 vrate;
536};
537
538struct iocg_wait {
539 struct wait_queue_entry wait;
540 struct bio *bio;
541 u64 abs_cost;
542 bool committed;
543};
544
545struct iocg_wake_ctx {
546 struct ioc_gq *iocg;
547 u32 hw_inuse;
548 s64 vbudget;
549};
550
551static const struct ioc_params autop[] = {
552 [AUTOP_HDD] = {
553 .qos = {
Tejun Heo7afccca2019-09-25 16:03:35 -0700554 [QOS_RLAT] = 250000, /* 250ms */
555 [QOS_WLAT] = 250000,
Tejun Heo7caa4712019-08-28 15:05:58 -0700556 [QOS_MIN] = VRATE_MIN_PPM,
557 [QOS_MAX] = VRATE_MAX_PPM,
558 },
559 .i_lcoefs = {
560 [I_LCOEF_RBPS] = 174019176,
561 [I_LCOEF_RSEQIOPS] = 41708,
562 [I_LCOEF_RRANDIOPS] = 370,
563 [I_LCOEF_WBPS] = 178075866,
564 [I_LCOEF_WSEQIOPS] = 42705,
565 [I_LCOEF_WRANDIOPS] = 378,
566 },
567 },
568 [AUTOP_SSD_QD1] = {
569 .qos = {
570 [QOS_RLAT] = 25000, /* 25ms */
571 [QOS_WLAT] = 25000,
572 [QOS_MIN] = VRATE_MIN_PPM,
573 [QOS_MAX] = VRATE_MAX_PPM,
574 },
575 .i_lcoefs = {
576 [I_LCOEF_RBPS] = 245855193,
577 [I_LCOEF_RSEQIOPS] = 61575,
578 [I_LCOEF_RRANDIOPS] = 6946,
579 [I_LCOEF_WBPS] = 141365009,
580 [I_LCOEF_WSEQIOPS] = 33716,
581 [I_LCOEF_WRANDIOPS] = 26796,
582 },
583 },
584 [AUTOP_SSD_DFL] = {
585 .qos = {
586 [QOS_RLAT] = 25000, /* 25ms */
587 [QOS_WLAT] = 25000,
588 [QOS_MIN] = VRATE_MIN_PPM,
589 [QOS_MAX] = VRATE_MAX_PPM,
590 },
591 .i_lcoefs = {
592 [I_LCOEF_RBPS] = 488636629,
593 [I_LCOEF_RSEQIOPS] = 8932,
594 [I_LCOEF_RRANDIOPS] = 8518,
595 [I_LCOEF_WBPS] = 427891549,
596 [I_LCOEF_WSEQIOPS] = 28755,
597 [I_LCOEF_WRANDIOPS] = 21940,
598 },
599 .too_fast_vrate_pct = 500,
600 },
601 [AUTOP_SSD_FAST] = {
602 .qos = {
603 [QOS_RLAT] = 5000, /* 5ms */
604 [QOS_WLAT] = 5000,
605 [QOS_MIN] = VRATE_MIN_PPM,
606 [QOS_MAX] = VRATE_MAX_PPM,
607 },
608 .i_lcoefs = {
609 [I_LCOEF_RBPS] = 3102524156LLU,
610 [I_LCOEF_RSEQIOPS] = 724816,
611 [I_LCOEF_RRANDIOPS] = 778122,
612 [I_LCOEF_WBPS] = 1742780862LLU,
613 [I_LCOEF_WSEQIOPS] = 425702,
614 [I_LCOEF_WRANDIOPS] = 443193,
615 },
616 .too_slow_vrate_pct = 10,
617 },
618};
619
620/*
621 * vrate adjust percentages indexed by ioc->busy_level. We adjust up on
622 * vtime credit shortage and down on device saturation.
623 */
624static u32 vrate_adj_pct[] =
625 { 0, 0, 0, 0,
626 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
627 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
628 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 16 };
629
630static struct blkcg_policy blkcg_policy_iocost;
631
632/* accessors and helpers */
633static struct ioc *rqos_to_ioc(struct rq_qos *rqos)
634{
635 return container_of(rqos, struct ioc, rqos);
636}
637
638static struct ioc *q_to_ioc(struct request_queue *q)
639{
640 return rqos_to_ioc(rq_qos_id(q, RQ_QOS_COST));
641}
642
643static const char *q_name(struct request_queue *q)
644{
645 if (test_bit(QUEUE_FLAG_REGISTERED, &q->queue_flags))
646 return kobject_name(q->kobj.parent);
647 else
648 return "<unknown>";
649}
650
651static const char __maybe_unused *ioc_name(struct ioc *ioc)
652{
653 return q_name(ioc->rqos.q);
654}
655
656static struct ioc_gq *pd_to_iocg(struct blkg_policy_data *pd)
657{
658 return pd ? container_of(pd, struct ioc_gq, pd) : NULL;
659}
660
661static struct ioc_gq *blkg_to_iocg(struct blkcg_gq *blkg)
662{
663 return pd_to_iocg(blkg_to_pd(blkg, &blkcg_policy_iocost));
664}
665
666static struct blkcg_gq *iocg_to_blkg(struct ioc_gq *iocg)
667{
668 return pd_to_blkg(&iocg->pd);
669}
670
671static struct ioc_cgrp *blkcg_to_iocc(struct blkcg *blkcg)
672{
673 return container_of(blkcg_to_cpd(blkcg, &blkcg_policy_iocost),
674 struct ioc_cgrp, cpd);
675}
676
677/*
678 * Scale @abs_cost to the inverse of @hw_inuse. The lower the hierarchical
Tejun Heo36a52482019-09-04 12:45:52 -0700679 * weight, the more expensive each IO. Must round up.
Tejun Heo7caa4712019-08-28 15:05:58 -0700680 */
681static u64 abs_cost_to_cost(u64 abs_cost, u32 hw_inuse)
682{
Tejun Heofe20cdb52020-09-01 14:52:38 -0400683 return DIV64_U64_ROUND_UP(abs_cost * WEIGHT_ONE, hw_inuse);
Tejun Heo7caa4712019-08-28 15:05:58 -0700684}
685
Tejun Heo36a52482019-09-04 12:45:52 -0700686/*
687 * The inverse of abs_cost_to_cost(). Must round up.
688 */
689static u64 cost_to_abs_cost(u64 cost, u32 hw_inuse)
690{
Tejun Heofe20cdb52020-09-01 14:52:38 -0400691 return DIV64_U64_ROUND_UP(cost * hw_inuse, WEIGHT_ONE);
Tejun Heo36a52482019-09-04 12:45:52 -0700692}
693
Tejun Heo97eb1972020-09-01 14:52:43 -0400694static void iocg_commit_bio(struct ioc_gq *iocg, struct bio *bio,
695 u64 abs_cost, u64 cost)
Tejun Heo7caa4712019-08-28 15:05:58 -0700696{
Tejun Heo97eb1972020-09-01 14:52:43 -0400697 struct iocg_pcpu_stat *gcs;
698
Tejun Heo7caa4712019-08-28 15:05:58 -0700699 bio->bi_iocost_cost = cost;
700 atomic64_add(cost, &iocg->vtime);
Tejun Heo97eb1972020-09-01 14:52:43 -0400701
702 gcs = get_cpu_ptr(iocg->pcpu_stat);
703 local64_add(abs_cost, &gcs->abs_vusage);
704 put_cpu_ptr(gcs);
Tejun Heo7caa4712019-08-28 15:05:58 -0700705}
706
Tejun Heoda437b92020-09-01 14:52:42 -0400707static void iocg_lock(struct ioc_gq *iocg, bool lock_ioc, unsigned long *flags)
708{
709 if (lock_ioc) {
710 spin_lock_irqsave(&iocg->ioc->lock, *flags);
711 spin_lock(&iocg->waitq.lock);
712 } else {
713 spin_lock_irqsave(&iocg->waitq.lock, *flags);
714 }
715}
716
717static void iocg_unlock(struct ioc_gq *iocg, bool unlock_ioc, unsigned long *flags)
718{
719 if (unlock_ioc) {
720 spin_unlock(&iocg->waitq.lock);
721 spin_unlock_irqrestore(&iocg->ioc->lock, *flags);
722 } else {
723 spin_unlock_irqrestore(&iocg->waitq.lock, *flags);
724 }
725}
726
Tejun Heo7caa4712019-08-28 15:05:58 -0700727#define CREATE_TRACE_POINTS
728#include <trace/events/iocost.h>
729
Tejun Heo7ca5b2e2020-09-01 14:52:41 -0400730static void ioc_refresh_margins(struct ioc *ioc)
731{
732 struct ioc_margins *margins = &ioc->margins;
733 u32 period_us = ioc->period_us;
734 u64 vrate = atomic64_read(&ioc->vtime_rate);
735
736 margins->min = (period_us * MARGIN_MIN_PCT / 100) * vrate;
737 margins->max = (period_us * MARGIN_MAX_PCT / 100) * vrate;
738}
739
Tejun Heo7caa4712019-08-28 15:05:58 -0700740/* latency Qos params changed, update period_us and all the dependent params */
741static void ioc_refresh_period_us(struct ioc *ioc)
742{
743 u32 ppm, lat, multi, period_us;
744
745 lockdep_assert_held(&ioc->lock);
746
747 /* pick the higher latency target */
748 if (ioc->params.qos[QOS_RLAT] >= ioc->params.qos[QOS_WLAT]) {
749 ppm = ioc->params.qos[QOS_RPPM];
750 lat = ioc->params.qos[QOS_RLAT];
751 } else {
752 ppm = ioc->params.qos[QOS_WPPM];
753 lat = ioc->params.qos[QOS_WLAT];
754 }
755
756 /*
757 * We want the period to be long enough to contain a healthy number
758 * of IOs while short enough for granular control. Define it as a
759 * multiple of the latency target. Ideally, the multiplier should
760 * be scaled according to the percentile so that it would nominally
761 * contain a certain number of requests. Let's be simpler and
762 * scale it linearly so that it's 2x >= pct(90) and 10x at pct(50).
763 */
764 if (ppm)
765 multi = max_t(u32, (MILLION - ppm) / 50000, 2);
766 else
767 multi = 2;
768 period_us = multi * lat;
769 period_us = clamp_t(u32, period_us, MIN_PERIOD, MAX_PERIOD);
770
771 /* calculate dependent params */
772 ioc->period_us = period_us;
Tejun Heo7ca5b2e2020-09-01 14:52:41 -0400773 ioc->timer_slack_ns = div64_u64(
774 (u64)period_us * NSEC_PER_USEC * TIMER_SLACK_PCT,
775 100);
776 ioc_refresh_margins(ioc);
Tejun Heo7caa4712019-08-28 15:05:58 -0700777}
778
779static int ioc_autop_idx(struct ioc *ioc)
780{
781 int idx = ioc->autop_idx;
782 const struct ioc_params *p = &autop[idx];
783 u32 vrate_pct;
784 u64 now_ns;
785
786 /* rotational? */
787 if (!blk_queue_nonrot(ioc->rqos.q))
788 return AUTOP_HDD;
789
790 /* handle SATA SSDs w/ broken NCQ */
791 if (blk_queue_depth(ioc->rqos.q) == 1)
792 return AUTOP_SSD_QD1;
793
794 /* use one of the normal ssd sets */
795 if (idx < AUTOP_SSD_DFL)
796 return AUTOP_SSD_DFL;
797
798 /* if user is overriding anything, maintain what was there */
799 if (ioc->user_qos_params || ioc->user_cost_model)
800 return idx;
801
802 /* step up/down based on the vrate */
803 vrate_pct = div64_u64(atomic64_read(&ioc->vtime_rate) * 100,
804 VTIME_PER_USEC);
805 now_ns = ktime_get_ns();
806
807 if (p->too_fast_vrate_pct && p->too_fast_vrate_pct <= vrate_pct) {
808 if (!ioc->autop_too_fast_at)
809 ioc->autop_too_fast_at = now_ns;
810 if (now_ns - ioc->autop_too_fast_at >= AUTOP_CYCLE_NSEC)
811 return idx + 1;
812 } else {
813 ioc->autop_too_fast_at = 0;
814 }
815
816 if (p->too_slow_vrate_pct && p->too_slow_vrate_pct >= vrate_pct) {
817 if (!ioc->autop_too_slow_at)
818 ioc->autop_too_slow_at = now_ns;
819 if (now_ns - ioc->autop_too_slow_at >= AUTOP_CYCLE_NSEC)
820 return idx - 1;
821 } else {
822 ioc->autop_too_slow_at = 0;
823 }
824
825 return idx;
826}
827
828/*
829 * Take the followings as input
830 *
831 * @bps maximum sequential throughput
832 * @seqiops maximum sequential 4k iops
833 * @randiops maximum random 4k iops
834 *
835 * and calculate the linear model cost coefficients.
836 *
837 * *@page per-page cost 1s / (@bps / 4096)
838 * *@seqio base cost of a seq IO max((1s / @seqiops) - *@page, 0)
839 * @randiops base cost of a rand IO max((1s / @randiops) - *@page, 0)
840 */
841static void calc_lcoefs(u64 bps, u64 seqiops, u64 randiops,
842 u64 *page, u64 *seqio, u64 *randio)
843{
844 u64 v;
845
846 *page = *seqio = *randio = 0;
847
848 if (bps)
849 *page = DIV64_U64_ROUND_UP(VTIME_PER_SEC,
850 DIV_ROUND_UP_ULL(bps, IOC_PAGE_SIZE));
851
852 if (seqiops) {
853 v = DIV64_U64_ROUND_UP(VTIME_PER_SEC, seqiops);
854 if (v > *page)
855 *seqio = v - *page;
856 }
857
858 if (randiops) {
859 v = DIV64_U64_ROUND_UP(VTIME_PER_SEC, randiops);
860 if (v > *page)
861 *randio = v - *page;
862 }
863}
864
865static void ioc_refresh_lcoefs(struct ioc *ioc)
866{
867 u64 *u = ioc->params.i_lcoefs;
868 u64 *c = ioc->params.lcoefs;
869
870 calc_lcoefs(u[I_LCOEF_RBPS], u[I_LCOEF_RSEQIOPS], u[I_LCOEF_RRANDIOPS],
871 &c[LCOEF_RPAGE], &c[LCOEF_RSEQIO], &c[LCOEF_RRANDIO]);
872 calc_lcoefs(u[I_LCOEF_WBPS], u[I_LCOEF_WSEQIOPS], u[I_LCOEF_WRANDIOPS],
873 &c[LCOEF_WPAGE], &c[LCOEF_WSEQIO], &c[LCOEF_WRANDIO]);
874}
875
876static bool ioc_refresh_params(struct ioc *ioc, bool force)
877{
878 const struct ioc_params *p;
879 int idx;
880
881 lockdep_assert_held(&ioc->lock);
882
883 idx = ioc_autop_idx(ioc);
884 p = &autop[idx];
885
886 if (idx == ioc->autop_idx && !force)
887 return false;
888
889 if (idx != ioc->autop_idx)
890 atomic64_set(&ioc->vtime_rate, VTIME_PER_USEC);
891
892 ioc->autop_idx = idx;
893 ioc->autop_too_fast_at = 0;
894 ioc->autop_too_slow_at = 0;
895
896 if (!ioc->user_qos_params)
897 memcpy(ioc->params.qos, p->qos, sizeof(p->qos));
898 if (!ioc->user_cost_model)
899 memcpy(ioc->params.i_lcoefs, p->i_lcoefs, sizeof(p->i_lcoefs));
900
901 ioc_refresh_period_us(ioc);
902 ioc_refresh_lcoefs(ioc);
903
904 ioc->vrate_min = DIV64_U64_ROUND_UP((u64)ioc->params.qos[QOS_MIN] *
905 VTIME_PER_USEC, MILLION);
906 ioc->vrate_max = div64_u64((u64)ioc->params.qos[QOS_MAX] *
907 VTIME_PER_USEC, MILLION);
908
909 return true;
910}
911
912/* take a snapshot of the current [v]time and vrate */
913static void ioc_now(struct ioc *ioc, struct ioc_now *now)
914{
915 unsigned seq;
916
917 now->now_ns = ktime_get();
918 now->now = ktime_to_us(now->now_ns);
919 now->vrate = atomic64_read(&ioc->vtime_rate);
920
921 /*
922 * The current vtime is
923 *
924 * vtime at period start + (wallclock time since the start) * vrate
925 *
926 * As a consistent snapshot of `period_at_vtime` and `period_at` is
927 * needed, they're seqcount protected.
928 */
929 do {
930 seq = read_seqcount_begin(&ioc->period_seqcount);
931 now->vnow = ioc->period_at_vtime +
932 (now->now - ioc->period_at) * now->vrate;
933 } while (read_seqcount_retry(&ioc->period_seqcount, seq));
934}
935
936static void ioc_start_period(struct ioc *ioc, struct ioc_now *now)
937{
Tejun Heo7caa4712019-08-28 15:05:58 -0700938 WARN_ON_ONCE(ioc->running != IOC_RUNNING);
939
940 write_seqcount_begin(&ioc->period_seqcount);
941 ioc->period_at = now->now;
942 ioc->period_at_vtime = now->vnow;
943 write_seqcount_end(&ioc->period_seqcount);
944
945 ioc->timer.expires = jiffies + usecs_to_jiffies(ioc->period_us);
946 add_timer(&ioc->timer);
947}
948
949/*
950 * Update @iocg's `active` and `inuse` to @active and @inuse, update level
951 * weight sums and propagate upwards accordingly.
952 */
Tejun Heo00410f12020-09-01 14:52:34 -0400953static void __propagate_weights(struct ioc_gq *iocg, u32 active, u32 inuse)
Tejun Heo7caa4712019-08-28 15:05:58 -0700954{
955 struct ioc *ioc = iocg->ioc;
956 int lvl;
957
958 lockdep_assert_held(&ioc->lock);
959
Tejun Heodb84a722020-09-01 14:52:35 -0400960 inuse = clamp_t(u32, inuse, 1, active);
961
962 if (active == iocg->active && inuse == iocg->inuse)
963 return;
Tejun Heo7caa4712019-08-28 15:05:58 -0700964
965 for (lvl = iocg->level - 1; lvl >= 0; lvl--) {
966 struct ioc_gq *parent = iocg->ancestors[lvl];
967 struct ioc_gq *child = iocg->ancestors[lvl + 1];
968 u32 parent_active = 0, parent_inuse = 0;
969
970 /* update the level sums */
971 parent->child_active_sum += (s32)(active - child->active);
972 parent->child_inuse_sum += (s32)(inuse - child->inuse);
973 /* apply the udpates */
974 child->active = active;
975 child->inuse = inuse;
976
977 /*
978 * The delta between inuse and active sums indicates that
979 * that much of weight is being given away. Parent's inuse
980 * and active should reflect the ratio.
981 */
982 if (parent->child_active_sum) {
983 parent_active = parent->weight;
984 parent_inuse = DIV64_U64_ROUND_UP(
985 parent_active * parent->child_inuse_sum,
986 parent->child_active_sum);
987 }
988
989 /* do we need to keep walking up? */
990 if (parent_active == parent->active &&
991 parent_inuse == parent->inuse)
992 break;
993
994 active = parent_active;
995 inuse = parent_inuse;
996 }
997
998 ioc->weights_updated = true;
999}
1000
Tejun Heo00410f12020-09-01 14:52:34 -04001001static void commit_weights(struct ioc *ioc)
Tejun Heo7caa4712019-08-28 15:05:58 -07001002{
1003 lockdep_assert_held(&ioc->lock);
1004
1005 if (ioc->weights_updated) {
1006 /* paired with rmb in current_hweight(), see there */
1007 smp_wmb();
1008 atomic_inc(&ioc->hweight_gen);
1009 ioc->weights_updated = false;
1010 }
1011}
1012
Tejun Heo00410f12020-09-01 14:52:34 -04001013static void propagate_weights(struct ioc_gq *iocg, u32 active, u32 inuse)
Tejun Heo7caa4712019-08-28 15:05:58 -07001014{
Tejun Heo00410f12020-09-01 14:52:34 -04001015 __propagate_weights(iocg, active, inuse);
1016 commit_weights(iocg->ioc);
Tejun Heo7caa4712019-08-28 15:05:58 -07001017}
1018
1019static void current_hweight(struct ioc_gq *iocg, u32 *hw_activep, u32 *hw_inusep)
1020{
1021 struct ioc *ioc = iocg->ioc;
1022 int lvl;
1023 u32 hwa, hwi;
1024 int ioc_gen;
1025
1026 /* hot path - if uptodate, use cached */
1027 ioc_gen = atomic_read(&ioc->hweight_gen);
1028 if (ioc_gen == iocg->hweight_gen)
1029 goto out;
1030
1031 /*
Tejun Heo00410f12020-09-01 14:52:34 -04001032 * Paired with wmb in commit_weights(). If we saw the updated
1033 * hweight_gen, all the weight updates from __propagate_weights() are
1034 * visible too.
Tejun Heo7caa4712019-08-28 15:05:58 -07001035 *
1036 * We can race with weight updates during calculation and get it
1037 * wrong. However, hweight_gen would have changed and a future
1038 * reader will recalculate and we're guaranteed to discard the
1039 * wrong result soon.
1040 */
1041 smp_rmb();
1042
Tejun Heofe20cdb52020-09-01 14:52:38 -04001043 hwa = hwi = WEIGHT_ONE;
Tejun Heo7caa4712019-08-28 15:05:58 -07001044 for (lvl = 0; lvl <= iocg->level - 1; lvl++) {
1045 struct ioc_gq *parent = iocg->ancestors[lvl];
1046 struct ioc_gq *child = iocg->ancestors[lvl + 1];
Tejun Heobd0adb92020-09-01 14:52:39 -04001047 u64 active_sum = READ_ONCE(parent->child_active_sum);
1048 u64 inuse_sum = READ_ONCE(parent->child_inuse_sum);
Tejun Heo7caa4712019-08-28 15:05:58 -07001049 u32 active = READ_ONCE(child->active);
1050 u32 inuse = READ_ONCE(child->inuse);
1051
1052 /* we can race with deactivations and either may read as zero */
1053 if (!active_sum || !inuse_sum)
1054 continue;
1055
Tejun Heobd0adb92020-09-01 14:52:39 -04001056 active_sum = max_t(u64, active, active_sum);
1057 hwa = div64_u64((u64)hwa * active, active_sum);
Tejun Heo7caa4712019-08-28 15:05:58 -07001058
Tejun Heobd0adb92020-09-01 14:52:39 -04001059 inuse_sum = max_t(u64, inuse, inuse_sum);
1060 hwi = div64_u64((u64)hwi * inuse, inuse_sum);
Tejun Heo7caa4712019-08-28 15:05:58 -07001061 }
1062
1063 iocg->hweight_active = max_t(u32, hwa, 1);
1064 iocg->hweight_inuse = max_t(u32, hwi, 1);
1065 iocg->hweight_gen = ioc_gen;
1066out:
1067 if (hw_activep)
1068 *hw_activep = iocg->hweight_active;
1069 if (hw_inusep)
1070 *hw_inusep = iocg->hweight_inuse;
1071}
1072
1073static void weight_updated(struct ioc_gq *iocg)
1074{
1075 struct ioc *ioc = iocg->ioc;
1076 struct blkcg_gq *blkg = iocg_to_blkg(iocg);
1077 struct ioc_cgrp *iocc = blkcg_to_iocc(blkg->blkcg);
1078 u32 weight;
1079
1080 lockdep_assert_held(&ioc->lock);
1081
1082 weight = iocg->cfg_weight ?: iocc->dfl_weight;
1083 if (weight != iocg->weight && iocg->active)
Tejun Heo00410f12020-09-01 14:52:34 -04001084 propagate_weights(iocg, weight,
Tejun Heobd0adb92020-09-01 14:52:39 -04001085 DIV64_U64_ROUND_UP((u64)iocg->inuse * weight,
1086 iocg->weight));
Tejun Heo7caa4712019-08-28 15:05:58 -07001087 iocg->weight = weight;
1088}
1089
1090static bool iocg_activate(struct ioc_gq *iocg, struct ioc_now *now)
1091{
1092 struct ioc *ioc = iocg->ioc;
1093 u64 last_period, cur_period, max_period_delta;
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001094 u64 vtime, vmin;
Tejun Heo7caa4712019-08-28 15:05:58 -07001095 int i;
1096
1097 /*
1098 * If seem to be already active, just update the stamp to tell the
1099 * timer that we're still active. We don't mind occassional races.
1100 */
1101 if (!list_empty(&iocg->active_list)) {
1102 ioc_now(ioc, now);
1103 cur_period = atomic64_read(&ioc->cur_period);
1104 if (atomic64_read(&iocg->active_period) != cur_period)
1105 atomic64_set(&iocg->active_period, cur_period);
1106 return true;
1107 }
1108
1109 /* racy check on internal node IOs, treat as root level IOs */
1110 if (iocg->child_active_sum)
1111 return false;
1112
1113 spin_lock_irq(&ioc->lock);
1114
1115 ioc_now(ioc, now);
1116
1117 /* update period */
1118 cur_period = atomic64_read(&ioc->cur_period);
1119 last_period = atomic64_read(&iocg->active_period);
1120 atomic64_set(&iocg->active_period, cur_period);
1121
1122 /* already activated or breaking leaf-only constraint? */
Jiufei Xue8b37bc22019-11-13 15:21:31 +08001123 if (!list_empty(&iocg->active_list))
1124 goto succeed_unlock;
1125 for (i = iocg->level - 1; i > 0; i--)
1126 if (!list_empty(&iocg->ancestors[i]->active_list))
Tejun Heo7caa4712019-08-28 15:05:58 -07001127 goto fail_unlock;
Jiufei Xue8b37bc22019-11-13 15:21:31 +08001128
Tejun Heo7caa4712019-08-28 15:05:58 -07001129 if (iocg->child_active_sum)
1130 goto fail_unlock;
1131
1132 /*
1133 * vtime may wrap when vrate is raised substantially due to
1134 * underestimated IO costs. Look at the period and ignore its
1135 * vtime if the iocg has been idle for too long. Also, cap the
1136 * budget it can start with to the margin.
1137 */
1138 max_period_delta = DIV64_U64_ROUND_UP(VTIME_VALID_DUR, ioc->period_us);
1139 vtime = atomic64_read(&iocg->vtime);
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001140 vmin = now->vnow - ioc->margins.max;
Tejun Heo7caa4712019-08-28 15:05:58 -07001141
1142 if (last_period + max_period_delta < cur_period ||
1143 time_before64(vtime, vmin)) {
1144 atomic64_add(vmin - vtime, &iocg->vtime);
1145 atomic64_add(vmin - vtime, &iocg->done_vtime);
1146 vtime = vmin;
1147 }
1148
1149 /*
1150 * Activate, propagate weight and start period timer if not
1151 * running. Reset hweight_gen to avoid accidental match from
1152 * wrapping.
1153 */
1154 iocg->hweight_gen = atomic_read(&ioc->hweight_gen) - 1;
1155 list_add(&iocg->active_list, &ioc->active_iocgs);
Tejun Heo00410f12020-09-01 14:52:34 -04001156 propagate_weights(iocg, iocg->weight,
1157 iocg->last_inuse ?: iocg->weight);
Tejun Heo7caa4712019-08-28 15:05:58 -07001158
1159 TRACE_IOCG_PATH(iocg_activate, iocg, now,
1160 last_period, cur_period, vtime);
1161
1162 iocg->last_vtime = vtime;
1163
1164 if (ioc->running == IOC_IDLE) {
1165 ioc->running = IOC_RUNNING;
1166 ioc_start_period(ioc, now);
1167 }
1168
Jiufei Xue8b37bc22019-11-13 15:21:31 +08001169succeed_unlock:
Tejun Heo7caa4712019-08-28 15:05:58 -07001170 spin_unlock_irq(&ioc->lock);
1171 return true;
1172
1173fail_unlock:
1174 spin_unlock_irq(&ioc->lock);
1175 return false;
1176}
1177
Tejun Heo6ef20f72020-09-01 14:52:36 -04001178static bool iocg_kick_delay(struct ioc_gq *iocg, struct ioc_now *now)
1179{
1180 struct ioc *ioc = iocg->ioc;
1181 struct blkcg_gq *blkg = iocg_to_blkg(iocg);
1182 u64 vtime = atomic64_read(&iocg->vtime);
Tejun Heo6ef20f72020-09-01 14:52:36 -04001183 u64 delta_ns, expires, oexpires;
1184 u32 hw_inuse;
1185
1186 lockdep_assert_held(&iocg->waitq.lock);
1187
1188 /* debt-adjust vtime */
1189 current_hweight(iocg, NULL, &hw_inuse);
1190 vtime += abs_cost_to_cost(iocg->abs_vdebt, hw_inuse);
1191
1192 /*
1193 * Clear or maintain depending on the overage. Non-zero vdebt is what
1194 * guarantees that @iocg is online and future iocg_kick_delay() will
1195 * clear use_delay. Don't leave it on when there's no vdebt.
1196 */
1197 if (!iocg->abs_vdebt || time_before_eq64(vtime, now->vnow)) {
1198 blkcg_clear_delay(blkg);
1199 return false;
1200 }
1201 if (!atomic_read(&blkg->use_delay) &&
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001202 time_before_eq64(vtime, now->vnow + ioc->margins.max))
Tejun Heo6ef20f72020-09-01 14:52:36 -04001203 return false;
1204
1205 /* use delay */
1206 delta_ns = DIV64_U64_ROUND_UP(vtime - now->vnow,
1207 now->vrate) * NSEC_PER_USEC;
1208 blkcg_set_delay(blkg, delta_ns);
1209 expires = now->now_ns + delta_ns;
1210
1211 /* if already active and close enough, don't bother */
1212 oexpires = ktime_to_ns(hrtimer_get_softexpires(&iocg->delay_timer));
1213 if (hrtimer_is_queued(&iocg->delay_timer) &&
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001214 abs(oexpires - expires) <= ioc->timer_slack_ns)
Tejun Heo6ef20f72020-09-01 14:52:36 -04001215 return true;
1216
1217 hrtimer_start_range_ns(&iocg->delay_timer, ns_to_ktime(expires),
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001218 ioc->timer_slack_ns, HRTIMER_MODE_ABS);
Tejun Heo6ef20f72020-09-01 14:52:36 -04001219 return true;
1220}
1221
1222static enum hrtimer_restart iocg_delay_timer_fn(struct hrtimer *timer)
1223{
1224 struct ioc_gq *iocg = container_of(timer, struct ioc_gq, delay_timer);
1225 struct ioc_now now;
1226 unsigned long flags;
1227
1228 spin_lock_irqsave(&iocg->waitq.lock, flags);
1229 ioc_now(iocg->ioc, &now);
1230 iocg_kick_delay(iocg, &now);
1231 spin_unlock_irqrestore(&iocg->waitq.lock, flags);
1232
1233 return HRTIMER_NORESTART;
1234}
1235
Tejun Heo7caa4712019-08-28 15:05:58 -07001236static int iocg_wake_fn(struct wait_queue_entry *wq_entry, unsigned mode,
1237 int flags, void *key)
1238{
1239 struct iocg_wait *wait = container_of(wq_entry, struct iocg_wait, wait);
1240 struct iocg_wake_ctx *ctx = (struct iocg_wake_ctx *)key;
1241 u64 cost = abs_cost_to_cost(wait->abs_cost, ctx->hw_inuse);
1242
1243 ctx->vbudget -= cost;
1244
1245 if (ctx->vbudget < 0)
1246 return -1;
1247
Tejun Heo97eb1972020-09-01 14:52:43 -04001248 iocg_commit_bio(ctx->iocg, wait->bio, wait->abs_cost, cost);
Tejun Heo7caa4712019-08-28 15:05:58 -07001249
1250 /*
1251 * autoremove_wake_function() removes the wait entry only when it
1252 * actually changed the task state. We want the wait always
1253 * removed. Remove explicitly and use default_wake_function().
1254 */
1255 list_del_init(&wq_entry->entry);
1256 wait->committed = true;
1257
1258 default_wake_function(wq_entry, mode, flags, key);
1259 return 0;
1260}
1261
Tejun Heoda437b92020-09-01 14:52:42 -04001262/*
1263 * Calculate the accumulated budget, pay debt if @pay_debt and wake up waiters
1264 * accordingly. When @pay_debt is %true, the caller must be holding ioc->lock in
1265 * addition to iocg->waitq.lock.
1266 */
1267static void iocg_kick_waitq(struct ioc_gq *iocg, bool pay_debt,
1268 struct ioc_now *now)
Tejun Heo7caa4712019-08-28 15:05:58 -07001269{
1270 struct ioc *ioc = iocg->ioc;
1271 struct iocg_wake_ctx ctx = { .iocg = iocg };
Tejun Heoda437b92020-09-01 14:52:42 -04001272 u64 vshortage, expires, oexpires;
Tejun Heo36a52482019-09-04 12:45:52 -07001273 s64 vbudget;
1274 u32 hw_inuse;
Tejun Heo7caa4712019-08-28 15:05:58 -07001275
1276 lockdep_assert_held(&iocg->waitq.lock);
1277
Tejun Heo36a52482019-09-04 12:45:52 -07001278 current_hweight(iocg, NULL, &hw_inuse);
1279 vbudget = now->vnow - atomic64_read(&iocg->vtime);
1280
1281 /* pay off debt */
Tejun Heoda437b92020-09-01 14:52:42 -04001282 if (pay_debt && iocg->abs_vdebt && vbudget > 0) {
1283 u64 vdebt = abs_cost_to_cost(iocg->abs_vdebt, hw_inuse);
Tejun Heo36a52482019-09-04 12:45:52 -07001284 u64 delta = min_t(u64, vbudget, vdebt);
1285 u64 abs_delta = min(cost_to_abs_cost(delta, hw_inuse),
Tejun Heo0b80f982020-05-04 19:27:54 -04001286 iocg->abs_vdebt);
Tejun Heo36a52482019-09-04 12:45:52 -07001287
Tejun Heoda437b92020-09-01 14:52:42 -04001288 lockdep_assert_held(&ioc->lock);
1289
Tejun Heo36a52482019-09-04 12:45:52 -07001290 atomic64_add(delta, &iocg->vtime);
1291 atomic64_add(delta, &iocg->done_vtime);
Tejun Heo0b80f982020-05-04 19:27:54 -04001292 iocg->abs_vdebt -= abs_delta;
Tejun Heoda437b92020-09-01 14:52:42 -04001293 vbudget -= vdebt;
Tejun Heo7b84b492020-09-01 14:52:37 -04001294
1295 iocg_kick_delay(iocg, now);
Tejun Heo36a52482019-09-04 12:45:52 -07001296 }
1297
Tejun Heo7caa4712019-08-28 15:05:58 -07001298 /*
Tejun Heoda437b92020-09-01 14:52:42 -04001299 * Debt can still be outstanding if we haven't paid all yet or the
1300 * caller raced and called without @pay_debt. Shouldn't wake up waiters
1301 * under debt. Make sure @vbudget reflects the outstanding amount and is
1302 * not positive.
1303 */
1304 if (iocg->abs_vdebt) {
1305 s64 vdebt = abs_cost_to_cost(iocg->abs_vdebt, hw_inuse);
1306 vbudget = min_t(s64, 0, vbudget - vdebt);
1307 }
1308
1309 /*
Tejun Heo7caa4712019-08-28 15:05:58 -07001310 * Wake up the ones which are due and see how much vtime we'll need
1311 * for the next one.
1312 */
Tejun Heo36a52482019-09-04 12:45:52 -07001313 ctx.hw_inuse = hw_inuse;
Tejun Heoda437b92020-09-01 14:52:42 -04001314 ctx.vbudget = vbudget;
Tejun Heo7caa4712019-08-28 15:05:58 -07001315 __wake_up_locked_key(&iocg->waitq, TASK_NORMAL, &ctx);
1316 if (!waitqueue_active(&iocg->waitq))
1317 return;
1318 if (WARN_ON_ONCE(ctx.vbudget >= 0))
1319 return;
1320
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001321 /* determine next wakeup, add a timer margin to guarantee chunking */
Tejun Heo7caa4712019-08-28 15:05:58 -07001322 vshortage = -ctx.vbudget;
1323 expires = now->now_ns +
1324 DIV64_U64_ROUND_UP(vshortage, now->vrate) * NSEC_PER_USEC;
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001325 expires += ioc->timer_slack_ns;
Tejun Heo7caa4712019-08-28 15:05:58 -07001326
1327 /* if already active and close enough, don't bother */
1328 oexpires = ktime_to_ns(hrtimer_get_softexpires(&iocg->waitq_timer));
1329 if (hrtimer_is_queued(&iocg->waitq_timer) &&
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001330 abs(oexpires - expires) <= ioc->timer_slack_ns)
Tejun Heo7caa4712019-08-28 15:05:58 -07001331 return;
1332
1333 hrtimer_start_range_ns(&iocg->waitq_timer, ns_to_ktime(expires),
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001334 ioc->timer_slack_ns, HRTIMER_MODE_ABS);
Tejun Heo7caa4712019-08-28 15:05:58 -07001335}
1336
1337static enum hrtimer_restart iocg_waitq_timer_fn(struct hrtimer *timer)
1338{
1339 struct ioc_gq *iocg = container_of(timer, struct ioc_gq, waitq_timer);
Tejun Heoda437b92020-09-01 14:52:42 -04001340 bool pay_debt = READ_ONCE(iocg->abs_vdebt);
Tejun Heo7caa4712019-08-28 15:05:58 -07001341 struct ioc_now now;
1342 unsigned long flags;
1343
1344 ioc_now(iocg->ioc, &now);
1345
Tejun Heoda437b92020-09-01 14:52:42 -04001346 iocg_lock(iocg, pay_debt, &flags);
1347 iocg_kick_waitq(iocg, pay_debt, &now);
1348 iocg_unlock(iocg, pay_debt, &flags);
Tejun Heo7caa4712019-08-28 15:05:58 -07001349
1350 return HRTIMER_NORESTART;
1351}
1352
Tejun Heo7caa4712019-08-28 15:05:58 -07001353static void ioc_lat_stat(struct ioc *ioc, u32 *missed_ppm_ar, u32 *rq_wait_pct_p)
1354{
1355 u32 nr_met[2] = { };
1356 u32 nr_missed[2] = { };
1357 u64 rq_wait_ns = 0;
1358 int cpu, rw;
1359
1360 for_each_online_cpu(cpu) {
1361 struct ioc_pcpu_stat *stat = per_cpu_ptr(ioc->pcpu_stat, cpu);
1362 u64 this_rq_wait_ns;
1363
1364 for (rw = READ; rw <= WRITE; rw++) {
Tejun Heo5e124f72020-09-01 14:52:33 -04001365 u32 this_met = local_read(&stat->missed[rw].nr_met);
1366 u32 this_missed = local_read(&stat->missed[rw].nr_missed);
Tejun Heo7caa4712019-08-28 15:05:58 -07001367
1368 nr_met[rw] += this_met - stat->missed[rw].last_met;
1369 nr_missed[rw] += this_missed - stat->missed[rw].last_missed;
1370 stat->missed[rw].last_met = this_met;
1371 stat->missed[rw].last_missed = this_missed;
1372 }
1373
Tejun Heo5e124f72020-09-01 14:52:33 -04001374 this_rq_wait_ns = local64_read(&stat->rq_wait_ns);
Tejun Heo7caa4712019-08-28 15:05:58 -07001375 rq_wait_ns += this_rq_wait_ns - stat->last_rq_wait_ns;
1376 stat->last_rq_wait_ns = this_rq_wait_ns;
1377 }
1378
1379 for (rw = READ; rw <= WRITE; rw++) {
1380 if (nr_met[rw] + nr_missed[rw])
1381 missed_ppm_ar[rw] =
1382 DIV64_U64_ROUND_UP((u64)nr_missed[rw] * MILLION,
1383 nr_met[rw] + nr_missed[rw]);
1384 else
1385 missed_ppm_ar[rw] = 0;
1386 }
1387
1388 *rq_wait_pct_p = div64_u64(rq_wait_ns * 100,
1389 ioc->period_us * NSEC_PER_USEC);
1390}
1391
1392/* was iocg idle this period? */
1393static bool iocg_is_idle(struct ioc_gq *iocg)
1394{
1395 struct ioc *ioc = iocg->ioc;
1396
1397 /* did something get issued this period? */
1398 if (atomic64_read(&iocg->active_period) ==
1399 atomic64_read(&ioc->cur_period))
1400 return false;
1401
1402 /* is something in flight? */
Tejun Heodcd65892020-03-10 13:07:46 -04001403 if (atomic64_read(&iocg->done_vtime) != atomic64_read(&iocg->vtime))
Tejun Heo7caa4712019-08-28 15:05:58 -07001404 return false;
1405
1406 return true;
1407}
1408
Tejun Heo97eb1972020-09-01 14:52:43 -04001409/*
1410 * Call this function on the target leaf @iocg's to build pre-order traversal
1411 * list of all the ancestors in @inner_walk. The inner nodes are linked through
1412 * ->walk_list and the caller is responsible for dissolving the list after use.
1413 */
1414static void iocg_build_inner_walk(struct ioc_gq *iocg,
1415 struct list_head *inner_walk)
1416{
1417 int lvl;
1418
1419 WARN_ON_ONCE(!list_empty(&iocg->walk_list));
1420
1421 /* find the first ancestor which hasn't been visited yet */
1422 for (lvl = iocg->level - 1; lvl >= 0; lvl--) {
1423 if (!list_empty(&iocg->ancestors[lvl]->walk_list))
1424 break;
1425 }
1426
1427 /* walk down and visit the inner nodes to get pre-order traversal */
1428 while (++lvl <= iocg->level - 1) {
1429 struct ioc_gq *inner = iocg->ancestors[lvl];
1430
1431 /* record traversal order */
1432 list_add_tail(&inner->walk_list, inner_walk);
1433 }
1434}
1435
1436/* collect per-cpu counters and propagate the deltas to the parent */
1437static void iocg_flush_stat_one(struct ioc_gq *iocg, struct ioc_now *now)
1438{
1439 struct iocg_stat new_stat;
1440 u64 abs_vusage = 0;
1441 u64 vusage_delta;
1442 int cpu;
1443
1444 lockdep_assert_held(&iocg->ioc->lock);
1445
1446 /* collect per-cpu counters */
1447 for_each_possible_cpu(cpu) {
1448 abs_vusage += local64_read(
1449 per_cpu_ptr(&iocg->pcpu_stat->abs_vusage, cpu));
1450 }
1451 vusage_delta = abs_vusage - iocg->last_stat_abs_vusage;
1452 iocg->last_stat_abs_vusage = abs_vusage;
1453
1454 iocg->local_stat.usage_us += div64_u64(vusage_delta, now->vrate);
1455
1456 new_stat.usage_us =
1457 iocg->local_stat.usage_us + iocg->desc_stat.usage_us;
1458
1459 /* propagate the deltas to the parent */
1460 if (iocg->level > 0) {
1461 struct iocg_stat *parent_stat =
1462 &iocg->ancestors[iocg->level - 1]->desc_stat;
1463
1464 parent_stat->usage_us +=
1465 new_stat.usage_us - iocg->last_stat.usage_us;
1466 }
1467
1468 iocg->last_stat = new_stat;
1469}
1470
1471/* get stat counters ready for reading on all active iocgs */
1472static void iocg_flush_stat(struct list_head *target_iocgs, struct ioc_now *now)
1473{
1474 LIST_HEAD(inner_walk);
1475 struct ioc_gq *iocg, *tiocg;
1476
1477 /* flush leaves and build inner node walk list */
1478 list_for_each_entry(iocg, target_iocgs, active_list) {
1479 iocg_flush_stat_one(iocg, now);
1480 iocg_build_inner_walk(iocg, &inner_walk);
1481 }
1482
1483 /* keep flushing upwards by walking the inner list backwards */
1484 list_for_each_entry_safe_reverse(iocg, tiocg, &inner_walk, walk_list) {
1485 iocg_flush_stat_one(iocg, now);
1486 list_del_init(&iocg->walk_list);
1487 }
1488}
1489
Tejun Heo7caa4712019-08-28 15:05:58 -07001490/* returns usage with margin added if surplus is large enough */
1491static u32 surplus_adjusted_hweight_inuse(u32 usage, u32 hw_inuse)
1492{
1493 /* add margin */
1494 usage = DIV_ROUND_UP(usage * SURPLUS_SCALE_PCT, 100);
1495 usage += SURPLUS_SCALE_ABS;
1496
1497 /* don't bother if the surplus is too small */
1498 if (usage + SURPLUS_MIN_ADJ_DELTA > hw_inuse)
1499 return 0;
1500
1501 return usage;
1502}
1503
1504static void ioc_timer_fn(struct timer_list *timer)
1505{
1506 struct ioc *ioc = container_of(timer, struct ioc, timer);
1507 struct ioc_gq *iocg, *tiocg;
1508 struct ioc_now now;
1509 int nr_surpluses = 0, nr_shortages = 0, nr_lagging = 0;
1510 u32 ppm_rthr = MILLION - ioc->params.qos[QOS_RPPM];
1511 u32 ppm_wthr = MILLION - ioc->params.qos[QOS_WPPM];
1512 u32 missed_ppm[2], rq_wait_pct;
1513 u64 period_vtime;
Tejun Heo25d41e42019-09-25 16:02:07 -07001514 int prev_busy_level, i;
Tejun Heo7caa4712019-08-28 15:05:58 -07001515
1516 /* how were the latencies during the period? */
1517 ioc_lat_stat(ioc, missed_ppm, &rq_wait_pct);
1518
1519 /* take care of active iocgs */
1520 spin_lock_irq(&ioc->lock);
1521
1522 ioc_now(ioc, &now);
1523
1524 period_vtime = now.vnow - ioc->period_at_vtime;
1525 if (WARN_ON_ONCE(!period_vtime)) {
1526 spin_unlock_irq(&ioc->lock);
1527 return;
1528 }
1529
Tejun Heo97eb1972020-09-01 14:52:43 -04001530 iocg_flush_stat(&ioc->active_iocgs, &now);
1531
Tejun Heo7caa4712019-08-28 15:05:58 -07001532 /*
1533 * Waiters determine the sleep durations based on the vrate they
1534 * saw at the time of sleep. If vrate has increased, some waiters
1535 * could be sleeping for too long. Wake up tardy waiters which
1536 * should have woken up in the last period and expire idle iocgs.
1537 */
1538 list_for_each_entry_safe(iocg, tiocg, &ioc->active_iocgs, active_list) {
Chengming Zhoud9012a52020-07-30 17:03:21 +08001539 if (!waitqueue_active(&iocg->waitq) && !iocg->abs_vdebt &&
Tejun Heo0b80f982020-05-04 19:27:54 -04001540 !iocg_is_idle(iocg))
Tejun Heo7caa4712019-08-28 15:05:58 -07001541 continue;
1542
1543 spin_lock(&iocg->waitq.lock);
1544
Tejun Heo0b80f982020-05-04 19:27:54 -04001545 if (waitqueue_active(&iocg->waitq) || iocg->abs_vdebt) {
Tejun Heo7caa4712019-08-28 15:05:58 -07001546 /* might be oversleeping vtime / hweight changes, kick */
Tejun Heoda437b92020-09-01 14:52:42 -04001547 iocg_kick_waitq(iocg, true, &now);
Tejun Heo7caa4712019-08-28 15:05:58 -07001548 } else if (iocg_is_idle(iocg)) {
1549 /* no waiter and idle, deactivate */
1550 iocg->last_inuse = iocg->inuse;
Tejun Heo00410f12020-09-01 14:52:34 -04001551 __propagate_weights(iocg, 0, 0);
Tejun Heo7caa4712019-08-28 15:05:58 -07001552 list_del_init(&iocg->active_list);
1553 }
1554
1555 spin_unlock(&iocg->waitq.lock);
1556 }
Tejun Heo00410f12020-09-01 14:52:34 -04001557 commit_weights(ioc);
Tejun Heo7caa4712019-08-28 15:05:58 -07001558
1559 /* calc usages and see whether some weights need to be moved around */
1560 list_for_each_entry(iocg, &ioc->active_iocgs, active_list) {
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001561 u64 vdone, vtime, vusage, vmin;
Tejun Heo7caa4712019-08-28 15:05:58 -07001562 u32 hw_active, hw_inuse, usage;
1563
1564 /*
1565 * Collect unused and wind vtime closer to vnow to prevent
1566 * iocgs from accumulating a large amount of budget.
1567 */
1568 vdone = atomic64_read(&iocg->done_vtime);
1569 vtime = atomic64_read(&iocg->vtime);
1570 current_hweight(iocg, &hw_active, &hw_inuse);
1571
1572 /*
1573 * Latency QoS detection doesn't account for IOs which are
1574 * in-flight for longer than a period. Detect them by
1575 * comparing vdone against period start. If lagging behind
1576 * IOs from past periods, don't increase vrate.
1577 */
Tejun Heo7cd806a2019-09-25 16:03:09 -07001578 if ((ppm_rthr != MILLION || ppm_wthr != MILLION) &&
1579 !atomic_read(&iocg_to_blkg(iocg)->use_delay) &&
Tejun Heo7caa4712019-08-28 15:05:58 -07001580 time_after64(vtime, vdone) &&
1581 time_after64(vtime, now.vnow -
1582 MAX_LAGGING_PERIODS * period_vtime) &&
1583 time_before64(vdone, now.vnow - period_vtime))
1584 nr_lagging++;
1585
1586 if (waitqueue_active(&iocg->waitq))
1587 vusage = now.vnow - iocg->last_vtime;
1588 else if (time_before64(iocg->last_vtime, vtime))
1589 vusage = vtime - iocg->last_vtime;
1590 else
1591 vusage = 0;
1592
1593 iocg->last_vtime += vusage;
1594 /*
1595 * Factor in in-flight vtime into vusage to avoid
1596 * high-latency completions appearing as idle. This should
1597 * be done after the above ->last_time adjustment.
1598 */
1599 vusage = max(vusage, vtime - vdone);
1600
1601 /* calculate hweight based usage ratio and record */
1602 if (vusage) {
1603 usage = DIV64_U64_ROUND_UP(vusage * hw_inuse,
1604 period_vtime);
1605 iocg->usage_idx = (iocg->usage_idx + 1) % NR_USAGE_SLOTS;
1606 iocg->usages[iocg->usage_idx] = usage;
1607 } else {
1608 usage = 0;
1609 }
1610
1611 /* see whether there's surplus vtime */
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001612 vmin = now.vnow - ioc->margins.max;
Tejun Heo7caa4712019-08-28 15:05:58 -07001613
1614 iocg->has_surplus = false;
1615
1616 if (!waitqueue_active(&iocg->waitq) &&
1617 time_before64(vtime, vmin)) {
1618 u64 delta = vmin - vtime;
1619
1620 /* throw away surplus vtime */
1621 atomic64_add(delta, &iocg->vtime);
1622 atomic64_add(delta, &iocg->done_vtime);
1623 iocg->last_vtime += delta;
1624 /* if usage is sufficiently low, maybe it can donate */
1625 if (surplus_adjusted_hweight_inuse(usage, hw_inuse)) {
1626 iocg->has_surplus = true;
1627 nr_surpluses++;
1628 }
1629 } else if (hw_inuse < hw_active) {
1630 u32 new_hwi, new_inuse;
1631
1632 /* was donating but might need to take back some */
1633 if (waitqueue_active(&iocg->waitq)) {
1634 new_hwi = hw_active;
1635 } else {
1636 new_hwi = max(hw_inuse,
1637 usage * SURPLUS_SCALE_PCT / 100 +
1638 SURPLUS_SCALE_ABS);
1639 }
1640
1641 new_inuse = div64_u64((u64)iocg->inuse * new_hwi,
1642 hw_inuse);
1643 new_inuse = clamp_t(u32, new_inuse, 1, iocg->active);
1644
1645 if (new_inuse > iocg->inuse) {
1646 TRACE_IOCG_PATH(inuse_takeback, iocg, &now,
1647 iocg->inuse, new_inuse,
1648 hw_inuse, new_hwi);
Tejun Heo00410f12020-09-01 14:52:34 -04001649 __propagate_weights(iocg, iocg->weight,
1650 new_inuse);
Tejun Heo7caa4712019-08-28 15:05:58 -07001651 }
1652 } else {
1653 /* genuninely out of vtime */
1654 nr_shortages++;
1655 }
1656 }
1657
1658 if (!nr_shortages || !nr_surpluses)
1659 goto skip_surplus_transfers;
1660
1661 /* there are both shortages and surpluses, transfer surpluses */
1662 list_for_each_entry(iocg, &ioc->active_iocgs, active_list) {
1663 u32 usage, hw_active, hw_inuse, new_hwi, new_inuse;
1664 int nr_valid = 0;
1665
1666 if (!iocg->has_surplus)
1667 continue;
1668
1669 /* base the decision on max historical usage */
1670 for (i = 0, usage = 0; i < NR_USAGE_SLOTS; i++) {
1671 if (iocg->usages[i]) {
1672 usage = max(usage, iocg->usages[i]);
1673 nr_valid++;
1674 }
1675 }
1676 if (nr_valid < MIN_VALID_USAGES)
1677 continue;
1678
1679 current_hweight(iocg, &hw_active, &hw_inuse);
1680 new_hwi = surplus_adjusted_hweight_inuse(usage, hw_inuse);
1681 if (!new_hwi)
1682 continue;
1683
1684 new_inuse = DIV64_U64_ROUND_UP((u64)iocg->inuse * new_hwi,
1685 hw_inuse);
1686 if (new_inuse < iocg->inuse) {
1687 TRACE_IOCG_PATH(inuse_giveaway, iocg, &now,
1688 iocg->inuse, new_inuse,
1689 hw_inuse, new_hwi);
Tejun Heo00410f12020-09-01 14:52:34 -04001690 __propagate_weights(iocg, iocg->weight, new_inuse);
Tejun Heo7caa4712019-08-28 15:05:58 -07001691 }
1692 }
1693skip_surplus_transfers:
Tejun Heo00410f12020-09-01 14:52:34 -04001694 commit_weights(ioc);
Tejun Heo7caa4712019-08-28 15:05:58 -07001695
1696 /*
1697 * If q is getting clogged or we're missing too much, we're issuing
1698 * too much IO and should lower vtime rate. If we're not missing
1699 * and experiencing shortages but not surpluses, we're too stingy
1700 * and should increase vtime rate.
1701 */
Tejun Heo25d41e42019-09-25 16:02:07 -07001702 prev_busy_level = ioc->busy_level;
Tejun Heo7caa4712019-08-28 15:05:58 -07001703 if (rq_wait_pct > RQ_WAIT_BUSY_PCT ||
1704 missed_ppm[READ] > ppm_rthr ||
1705 missed_ppm[WRITE] > ppm_wthr) {
Tejun Heo81ca6272019-10-14 17:18:11 -07001706 /* clearly missing QoS targets, slow down vrate */
Tejun Heo7caa4712019-08-28 15:05:58 -07001707 ioc->busy_level = max(ioc->busy_level, 0);
1708 ioc->busy_level++;
Tejun Heo7cd806a2019-09-25 16:03:09 -07001709 } else if (rq_wait_pct <= RQ_WAIT_BUSY_PCT * UNBUSY_THR_PCT / 100 &&
Tejun Heo7caa4712019-08-28 15:05:58 -07001710 missed_ppm[READ] <= ppm_rthr * UNBUSY_THR_PCT / 100 &&
1711 missed_ppm[WRITE] <= ppm_wthr * UNBUSY_THR_PCT / 100) {
Tejun Heo81ca6272019-10-14 17:18:11 -07001712 /* QoS targets are being met with >25% margin */
1713 if (nr_shortages) {
1714 /*
1715 * We're throttling while the device has spare
1716 * capacity. If vrate was being slowed down, stop.
1717 */
Tejun Heo7cd806a2019-09-25 16:03:09 -07001718 ioc->busy_level = min(ioc->busy_level, 0);
Tejun Heo81ca6272019-10-14 17:18:11 -07001719
1720 /*
1721 * If there are IOs spanning multiple periods, wait
1722 * them out before pushing the device harder. If
1723 * there are surpluses, let redistribution work it
1724 * out first.
1725 */
1726 if (!nr_lagging && !nr_surpluses)
Tejun Heo7cd806a2019-09-25 16:03:09 -07001727 ioc->busy_level--;
Tejun Heo81ca6272019-10-14 17:18:11 -07001728 } else {
1729 /*
1730 * Nobody is being throttled and the users aren't
1731 * issuing enough IOs to saturate the device. We
1732 * simply don't know how close the device is to
1733 * saturation. Coast.
1734 */
1735 ioc->busy_level = 0;
Tejun Heo7cd806a2019-09-25 16:03:09 -07001736 }
Tejun Heo7caa4712019-08-28 15:05:58 -07001737 } else {
Tejun Heo81ca6272019-10-14 17:18:11 -07001738 /* inside the hysterisis margin, we're good */
Tejun Heo7caa4712019-08-28 15:05:58 -07001739 ioc->busy_level = 0;
1740 }
1741
1742 ioc->busy_level = clamp(ioc->busy_level, -1000, 1000);
1743
Tejun Heo7cd806a2019-09-25 16:03:09 -07001744 if (ioc->busy_level > 0 || (ioc->busy_level < 0 && !nr_lagging)) {
Tejun Heo7caa4712019-08-28 15:05:58 -07001745 u64 vrate = atomic64_read(&ioc->vtime_rate);
1746 u64 vrate_min = ioc->vrate_min, vrate_max = ioc->vrate_max;
1747
1748 /* rq_wait signal is always reliable, ignore user vrate_min */
1749 if (rq_wait_pct > RQ_WAIT_BUSY_PCT)
1750 vrate_min = VRATE_MIN;
1751
1752 /*
1753 * If vrate is out of bounds, apply clamp gradually as the
1754 * bounds can change abruptly. Otherwise, apply busy_level
1755 * based adjustment.
1756 */
1757 if (vrate < vrate_min) {
1758 vrate = div64_u64(vrate * (100 + VRATE_CLAMP_ADJ_PCT),
1759 100);
1760 vrate = min(vrate, vrate_min);
1761 } else if (vrate > vrate_max) {
1762 vrate = div64_u64(vrate * (100 - VRATE_CLAMP_ADJ_PCT),
1763 100);
1764 vrate = max(vrate, vrate_max);
1765 } else {
1766 int idx = min_t(int, abs(ioc->busy_level),
1767 ARRAY_SIZE(vrate_adj_pct) - 1);
1768 u32 adj_pct = vrate_adj_pct[idx];
1769
1770 if (ioc->busy_level > 0)
1771 adj_pct = 100 - adj_pct;
1772 else
1773 adj_pct = 100 + adj_pct;
1774
1775 vrate = clamp(DIV64_U64_ROUND_UP(vrate * adj_pct, 100),
1776 vrate_min, vrate_max);
1777 }
1778
Waiman Longd6c8e942020-04-21 09:07:55 -04001779 trace_iocost_ioc_vrate_adj(ioc, vrate, missed_ppm, rq_wait_pct,
Tejun Heo7caa4712019-08-28 15:05:58 -07001780 nr_lagging, nr_shortages,
1781 nr_surpluses);
1782
1783 atomic64_set(&ioc->vtime_rate, vrate);
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001784 ioc_refresh_margins(ioc);
Tejun Heo25d41e42019-09-25 16:02:07 -07001785 } else if (ioc->busy_level != prev_busy_level || nr_lagging) {
1786 trace_iocost_ioc_vrate_adj(ioc, atomic64_read(&ioc->vtime_rate),
Waiman Longd6c8e942020-04-21 09:07:55 -04001787 missed_ppm, rq_wait_pct, nr_lagging,
Tejun Heo25d41e42019-09-25 16:02:07 -07001788 nr_shortages, nr_surpluses);
Tejun Heo7caa4712019-08-28 15:05:58 -07001789 }
1790
1791 ioc_refresh_params(ioc, false);
1792
1793 /*
1794 * This period is done. Move onto the next one. If nothing's
1795 * going on with the device, stop the timer.
1796 */
1797 atomic64_inc(&ioc->cur_period);
1798
1799 if (ioc->running != IOC_STOP) {
1800 if (!list_empty(&ioc->active_iocgs)) {
1801 ioc_start_period(ioc, &now);
1802 } else {
1803 ioc->busy_level = 0;
1804 ioc->running = IOC_IDLE;
1805 }
1806 }
1807
1808 spin_unlock_irq(&ioc->lock);
1809}
1810
1811static void calc_vtime_cost_builtin(struct bio *bio, struct ioc_gq *iocg,
1812 bool is_merge, u64 *costp)
1813{
1814 struct ioc *ioc = iocg->ioc;
1815 u64 coef_seqio, coef_randio, coef_page;
1816 u64 pages = max_t(u64, bio_sectors(bio) >> IOC_SECT_TO_PAGE_SHIFT, 1);
1817 u64 seek_pages = 0;
1818 u64 cost = 0;
1819
1820 switch (bio_op(bio)) {
1821 case REQ_OP_READ:
1822 coef_seqio = ioc->params.lcoefs[LCOEF_RSEQIO];
1823 coef_randio = ioc->params.lcoefs[LCOEF_RRANDIO];
1824 coef_page = ioc->params.lcoefs[LCOEF_RPAGE];
1825 break;
1826 case REQ_OP_WRITE:
1827 coef_seqio = ioc->params.lcoefs[LCOEF_WSEQIO];
1828 coef_randio = ioc->params.lcoefs[LCOEF_WRANDIO];
1829 coef_page = ioc->params.lcoefs[LCOEF_WPAGE];
1830 break;
1831 default:
1832 goto out;
1833 }
1834
1835 if (iocg->cursor) {
1836 seek_pages = abs(bio->bi_iter.bi_sector - iocg->cursor);
1837 seek_pages >>= IOC_SECT_TO_PAGE_SHIFT;
1838 }
1839
1840 if (!is_merge) {
1841 if (seek_pages > LCOEF_RANDIO_PAGES) {
1842 cost += coef_randio;
1843 } else {
1844 cost += coef_seqio;
1845 }
1846 }
1847 cost += pages * coef_page;
1848out:
1849 *costp = cost;
1850}
1851
1852static u64 calc_vtime_cost(struct bio *bio, struct ioc_gq *iocg, bool is_merge)
1853{
1854 u64 cost;
1855
1856 calc_vtime_cost_builtin(bio, iocg, is_merge, &cost);
1857 return cost;
1858}
1859
Tejun Heocd006502020-04-13 12:27:56 -04001860static void calc_size_vtime_cost_builtin(struct request *rq, struct ioc *ioc,
1861 u64 *costp)
1862{
1863 unsigned int pages = blk_rq_stats_sectors(rq) >> IOC_SECT_TO_PAGE_SHIFT;
1864
1865 switch (req_op(rq)) {
1866 case REQ_OP_READ:
1867 *costp = pages * ioc->params.lcoefs[LCOEF_RPAGE];
1868 break;
1869 case REQ_OP_WRITE:
1870 *costp = pages * ioc->params.lcoefs[LCOEF_WPAGE];
1871 break;
1872 default:
1873 *costp = 0;
1874 }
1875}
1876
1877static u64 calc_size_vtime_cost(struct request *rq, struct ioc *ioc)
1878{
1879 u64 cost;
1880
1881 calc_size_vtime_cost_builtin(rq, ioc, &cost);
1882 return cost;
1883}
1884
Tejun Heo7caa4712019-08-28 15:05:58 -07001885static void ioc_rqos_throttle(struct rq_qos *rqos, struct bio *bio)
1886{
1887 struct blkcg_gq *blkg = bio->bi_blkg;
1888 struct ioc *ioc = rqos_to_ioc(rqos);
1889 struct ioc_gq *iocg = blkg_to_iocg(blkg);
1890 struct ioc_now now;
1891 struct iocg_wait wait;
1892 u32 hw_active, hw_inuse;
1893 u64 abs_cost, cost, vtime;
Tejun Heoda437b92020-09-01 14:52:42 -04001894 bool use_debt, ioc_locked;
1895 unsigned long flags;
Tejun Heo7caa4712019-08-28 15:05:58 -07001896
1897 /* bypass IOs if disabled or for root cgroup */
1898 if (!ioc->enabled || !iocg->level)
1899 return;
1900
1901 /* always activate so that even 0 cost IOs get protected to some level */
1902 if (!iocg_activate(iocg, &now))
1903 return;
1904
1905 /* calculate the absolute vtime cost */
1906 abs_cost = calc_vtime_cost(bio, iocg, false);
1907 if (!abs_cost)
1908 return;
1909
1910 iocg->cursor = bio_end_sector(bio);
1911
1912 vtime = atomic64_read(&iocg->vtime);
1913 current_hweight(iocg, &hw_active, &hw_inuse);
1914
1915 if (hw_inuse < hw_active &&
Tejun Heo7ca5b2e2020-09-01 14:52:41 -04001916 time_after_eq64(vtime + ioc->margins.min, now.vnow)) {
Tejun Heo7caa4712019-08-28 15:05:58 -07001917 TRACE_IOCG_PATH(inuse_reset, iocg, &now,
1918 iocg->inuse, iocg->weight, hw_inuse, hw_active);
1919 spin_lock_irq(&ioc->lock);
Tejun Heo00410f12020-09-01 14:52:34 -04001920 propagate_weights(iocg, iocg->weight, iocg->weight);
Tejun Heo7caa4712019-08-28 15:05:58 -07001921 spin_unlock_irq(&ioc->lock);
1922 current_hweight(iocg, &hw_active, &hw_inuse);
1923 }
1924
1925 cost = abs_cost_to_cost(abs_cost, hw_inuse);
1926
1927 /*
1928 * If no one's waiting and within budget, issue right away. The
1929 * tests are racy but the races aren't systemic - we only miss once
1930 * in a while which is fine.
1931 */
Tejun Heo0b80f982020-05-04 19:27:54 -04001932 if (!waitqueue_active(&iocg->waitq) && !iocg->abs_vdebt &&
Tejun Heo7caa4712019-08-28 15:05:58 -07001933 time_before_eq64(vtime + cost, now.vnow)) {
Tejun Heo97eb1972020-09-01 14:52:43 -04001934 iocg_commit_bio(iocg, bio, abs_cost, cost);
Tejun Heo7caa4712019-08-28 15:05:58 -07001935 return;
1936 }
1937
Tejun Heo36a52482019-09-04 12:45:52 -07001938 /*
Tejun Heoda437b92020-09-01 14:52:42 -04001939 * We're over budget. This can be handled in two ways. IOs which may
1940 * cause priority inversions are punted to @ioc->aux_iocg and charged as
1941 * debt. Otherwise, the issuer is blocked on @iocg->waitq. Debt handling
1942 * requires @ioc->lock, waitq handling @iocg->waitq.lock. Determine
1943 * whether debt handling is needed and acquire locks accordingly.
Tejun Heo0b80f982020-05-04 19:27:54 -04001944 */
Tejun Heoda437b92020-09-01 14:52:42 -04001945 use_debt = bio_issue_as_root_blkg(bio) || fatal_signal_pending(current);
1946 ioc_locked = use_debt || READ_ONCE(iocg->abs_vdebt);
Tejun Heo0b80f982020-05-04 19:27:54 -04001947
Tejun Heoda437b92020-09-01 14:52:42 -04001948 iocg_lock(iocg, ioc_locked, &flags);
1949
1950 /*
1951 * @iocg must stay activated for debt and waitq handling. Deactivation
1952 * is synchronized against both ioc->lock and waitq.lock and we won't
1953 * get deactivated as long as we're waiting or has debt, so we're good
1954 * if we're activated here. In the unlikely cases that we aren't, just
1955 * issue the IO.
1956 */
Tejun Heo0b80f982020-05-04 19:27:54 -04001957 if (unlikely(list_empty(&iocg->active_list))) {
Tejun Heoda437b92020-09-01 14:52:42 -04001958 iocg_unlock(iocg, ioc_locked, &flags);
Tejun Heo97eb1972020-09-01 14:52:43 -04001959 iocg_commit_bio(iocg, bio, abs_cost, cost);
Tejun Heo0b80f982020-05-04 19:27:54 -04001960 return;
1961 }
1962
1963 /*
1964 * We're over budget. If @bio has to be issued regardless, remember
1965 * the abs_cost instead of advancing vtime. iocg_kick_waitq() will pay
1966 * off the debt before waking more IOs.
1967 *
Tejun Heo36a52482019-09-04 12:45:52 -07001968 * This way, the debt is continuously paid off each period with the
Tejun Heo0b80f982020-05-04 19:27:54 -04001969 * actual budget available to the cgroup. If we just wound vtime, we
1970 * would incorrectly use the current hw_inuse for the entire amount
1971 * which, for example, can lead to the cgroup staying blocked for a
1972 * long time even with substantially raised hw_inuse.
1973 *
1974 * An iocg with vdebt should stay online so that the timer can keep
1975 * deducting its vdebt and [de]activate use_delay mechanism
1976 * accordingly. We don't want to race against the timer trying to
1977 * clear them and leave @iocg inactive w/ dangling use_delay heavily
1978 * penalizing the cgroup and its descendants.
Tejun Heo36a52482019-09-04 12:45:52 -07001979 */
Tejun Heoda437b92020-09-01 14:52:42 -04001980 if (use_debt) {
Tejun Heo0b80f982020-05-04 19:27:54 -04001981 iocg->abs_vdebt += abs_cost;
Tejun Heo54c52e12020-04-13 12:27:55 -04001982 if (iocg_kick_delay(iocg, &now))
Tejun Heod7bd15a2019-12-16 13:34:00 -08001983 blkcg_schedule_throttle(rqos->q,
1984 (bio->bi_opf & REQ_SWAP) == REQ_SWAP);
Tejun Heoda437b92020-09-01 14:52:42 -04001985 iocg_unlock(iocg, ioc_locked, &flags);
Tejun Heo7caa4712019-08-28 15:05:58 -07001986 return;
1987 }
1988
1989 /*
1990 * Append self to the waitq and schedule the wakeup timer if we're
1991 * the first waiter. The timer duration is calculated based on the
1992 * current vrate. vtime and hweight changes can make it too short
1993 * or too long. Each wait entry records the absolute cost it's
1994 * waiting for to allow re-evaluation using a custom wait entry.
1995 *
1996 * If too short, the timer simply reschedules itself. If too long,
1997 * the period timer will notice and trigger wakeups.
1998 *
1999 * All waiters are on iocg->waitq and the wait states are
2000 * synchronized using waitq.lock.
2001 */
Tejun Heo7caa4712019-08-28 15:05:58 -07002002 init_waitqueue_func_entry(&wait.wait, iocg_wake_fn);
2003 wait.wait.private = current;
2004 wait.bio = bio;
2005 wait.abs_cost = abs_cost;
2006 wait.committed = false; /* will be set true by waker */
2007
2008 __add_wait_queue_entry_tail(&iocg->waitq, &wait.wait);
Tejun Heoda437b92020-09-01 14:52:42 -04002009 iocg_kick_waitq(iocg, ioc_locked, &now);
Tejun Heo7caa4712019-08-28 15:05:58 -07002010
Tejun Heoda437b92020-09-01 14:52:42 -04002011 iocg_unlock(iocg, ioc_locked, &flags);
Tejun Heo7caa4712019-08-28 15:05:58 -07002012
2013 while (true) {
2014 set_current_state(TASK_UNINTERRUPTIBLE);
2015 if (wait.committed)
2016 break;
2017 io_schedule();
2018 }
2019
2020 /* waker already committed us, proceed */
2021 finish_wait(&iocg->waitq, &wait.wait);
2022}
2023
2024static void ioc_rqos_merge(struct rq_qos *rqos, struct request *rq,
2025 struct bio *bio)
2026{
2027 struct ioc_gq *iocg = blkg_to_iocg(bio->bi_blkg);
Tejun Heoe1518f62019-09-04 12:45:53 -07002028 struct ioc *ioc = iocg->ioc;
Tejun Heo7caa4712019-08-28 15:05:58 -07002029 sector_t bio_end = bio_end_sector(bio);
Tejun Heoe1518f62019-09-04 12:45:53 -07002030 struct ioc_now now;
Tejun Heo7caa4712019-08-28 15:05:58 -07002031 u32 hw_inuse;
2032 u64 abs_cost, cost;
Tejun Heo0b80f982020-05-04 19:27:54 -04002033 unsigned long flags;
Tejun Heo7caa4712019-08-28 15:05:58 -07002034
Tejun Heoe1518f62019-09-04 12:45:53 -07002035 /* bypass if disabled or for root cgroup */
2036 if (!ioc->enabled || !iocg->level)
Tejun Heo7caa4712019-08-28 15:05:58 -07002037 return;
2038
2039 abs_cost = calc_vtime_cost(bio, iocg, true);
2040 if (!abs_cost)
2041 return;
2042
Tejun Heoe1518f62019-09-04 12:45:53 -07002043 ioc_now(ioc, &now);
2044 current_hweight(iocg, NULL, &hw_inuse);
2045 cost = abs_cost_to_cost(abs_cost, hw_inuse);
2046
Tejun Heo7caa4712019-08-28 15:05:58 -07002047 /* update cursor if backmerging into the request at the cursor */
2048 if (blk_rq_pos(rq) < bio_end &&
2049 blk_rq_pos(rq) + blk_rq_sectors(rq) == iocg->cursor)
2050 iocg->cursor = bio_end;
2051
Tejun Heoe1518f62019-09-04 12:45:53 -07002052 /*
Tejun Heo0b80f982020-05-04 19:27:54 -04002053 * Charge if there's enough vtime budget and the existing request has
2054 * cost assigned.
Tejun Heoe1518f62019-09-04 12:45:53 -07002055 */
2056 if (rq->bio && rq->bio->bi_iocost_cost &&
Tejun Heo0b80f982020-05-04 19:27:54 -04002057 time_before_eq64(atomic64_read(&iocg->vtime) + cost, now.vnow)) {
Tejun Heo97eb1972020-09-01 14:52:43 -04002058 iocg_commit_bio(iocg, bio, abs_cost, cost);
Tejun Heo0b80f982020-05-04 19:27:54 -04002059 return;
2060 }
2061
2062 /*
2063 * Otherwise, account it as debt if @iocg is online, which it should
2064 * be for the vast majority of cases. See debt handling in
2065 * ioc_rqos_throttle() for details.
2066 */
2067 spin_lock_irqsave(&iocg->waitq.lock, flags);
2068 if (likely(!list_empty(&iocg->active_list))) {
2069 iocg->abs_vdebt += abs_cost;
Jens Axboe873f1c82020-05-09 16:13:58 -06002070 iocg_kick_delay(iocg, &now);
Tejun Heo0b80f982020-05-04 19:27:54 -04002071 } else {
Tejun Heo97eb1972020-09-01 14:52:43 -04002072 iocg_commit_bio(iocg, bio, abs_cost, cost);
Tejun Heo0b80f982020-05-04 19:27:54 -04002073 }
2074 spin_unlock_irqrestore(&iocg->waitq.lock, flags);
Tejun Heo7caa4712019-08-28 15:05:58 -07002075}
2076
2077static void ioc_rqos_done_bio(struct rq_qos *rqos, struct bio *bio)
2078{
2079 struct ioc_gq *iocg = blkg_to_iocg(bio->bi_blkg);
2080
2081 if (iocg && bio->bi_iocost_cost)
2082 atomic64_add(bio->bi_iocost_cost, &iocg->done_vtime);
2083}
2084
2085static void ioc_rqos_done(struct rq_qos *rqos, struct request *rq)
2086{
2087 struct ioc *ioc = rqos_to_ioc(rqos);
Tejun Heo5e124f72020-09-01 14:52:33 -04002088 struct ioc_pcpu_stat *ccs;
Tejun Heocd006502020-04-13 12:27:56 -04002089 u64 on_q_ns, rq_wait_ns, size_nsec;
Tejun Heo7caa4712019-08-28 15:05:58 -07002090 int pidx, rw;
2091
2092 if (!ioc->enabled || !rq->alloc_time_ns || !rq->start_time_ns)
2093 return;
2094
2095 switch (req_op(rq) & REQ_OP_MASK) {
2096 case REQ_OP_READ:
2097 pidx = QOS_RLAT;
2098 rw = READ;
2099 break;
2100 case REQ_OP_WRITE:
2101 pidx = QOS_WLAT;
2102 rw = WRITE;
2103 break;
2104 default:
2105 return;
2106 }
2107
2108 on_q_ns = ktime_get_ns() - rq->alloc_time_ns;
2109 rq_wait_ns = rq->start_time_ns - rq->alloc_time_ns;
Tejun Heocd006502020-04-13 12:27:56 -04002110 size_nsec = div64_u64(calc_size_vtime_cost(rq, ioc), VTIME_PER_NSEC);
Tejun Heo7caa4712019-08-28 15:05:58 -07002111
Tejun Heo5e124f72020-09-01 14:52:33 -04002112 ccs = get_cpu_ptr(ioc->pcpu_stat);
2113
Tejun Heocd006502020-04-13 12:27:56 -04002114 if (on_q_ns <= size_nsec ||
2115 on_q_ns - size_nsec <= ioc->params.qos[pidx] * NSEC_PER_USEC)
Tejun Heo5e124f72020-09-01 14:52:33 -04002116 local_inc(&ccs->missed[rw].nr_met);
Tejun Heo7caa4712019-08-28 15:05:58 -07002117 else
Tejun Heo5e124f72020-09-01 14:52:33 -04002118 local_inc(&ccs->missed[rw].nr_missed);
Tejun Heo7caa4712019-08-28 15:05:58 -07002119
Tejun Heo5e124f72020-09-01 14:52:33 -04002120 local64_add(rq_wait_ns, &ccs->rq_wait_ns);
2121
2122 put_cpu_ptr(ccs);
Tejun Heo7caa4712019-08-28 15:05:58 -07002123}
2124
2125static void ioc_rqos_queue_depth_changed(struct rq_qos *rqos)
2126{
2127 struct ioc *ioc = rqos_to_ioc(rqos);
2128
2129 spin_lock_irq(&ioc->lock);
2130 ioc_refresh_params(ioc, false);
2131 spin_unlock_irq(&ioc->lock);
2132}
2133
2134static void ioc_rqos_exit(struct rq_qos *rqos)
2135{
2136 struct ioc *ioc = rqos_to_ioc(rqos);
2137
2138 blkcg_deactivate_policy(rqos->q, &blkcg_policy_iocost);
2139
2140 spin_lock_irq(&ioc->lock);
2141 ioc->running = IOC_STOP;
2142 spin_unlock_irq(&ioc->lock);
2143
2144 del_timer_sync(&ioc->timer);
2145 free_percpu(ioc->pcpu_stat);
2146 kfree(ioc);
2147}
2148
2149static struct rq_qos_ops ioc_rqos_ops = {
2150 .throttle = ioc_rqos_throttle,
2151 .merge = ioc_rqos_merge,
2152 .done_bio = ioc_rqos_done_bio,
2153 .done = ioc_rqos_done,
2154 .queue_depth_changed = ioc_rqos_queue_depth_changed,
2155 .exit = ioc_rqos_exit,
2156};
2157
2158static int blk_iocost_init(struct request_queue *q)
2159{
2160 struct ioc *ioc;
2161 struct rq_qos *rqos;
Tejun Heo5e124f72020-09-01 14:52:33 -04002162 int i, cpu, ret;
Tejun Heo7caa4712019-08-28 15:05:58 -07002163
2164 ioc = kzalloc(sizeof(*ioc), GFP_KERNEL);
2165 if (!ioc)
2166 return -ENOMEM;
2167
2168 ioc->pcpu_stat = alloc_percpu(struct ioc_pcpu_stat);
2169 if (!ioc->pcpu_stat) {
2170 kfree(ioc);
2171 return -ENOMEM;
2172 }
2173
Tejun Heo5e124f72020-09-01 14:52:33 -04002174 for_each_possible_cpu(cpu) {
2175 struct ioc_pcpu_stat *ccs = per_cpu_ptr(ioc->pcpu_stat, cpu);
2176
2177 for (i = 0; i < ARRAY_SIZE(ccs->missed); i++) {
2178 local_set(&ccs->missed[i].nr_met, 0);
2179 local_set(&ccs->missed[i].nr_missed, 0);
2180 }
2181 local64_set(&ccs->rq_wait_ns, 0);
2182 }
2183
Tejun Heo7caa4712019-08-28 15:05:58 -07002184 rqos = &ioc->rqos;
2185 rqos->id = RQ_QOS_COST;
2186 rqos->ops = &ioc_rqos_ops;
2187 rqos->q = q;
2188
2189 spin_lock_init(&ioc->lock);
2190 timer_setup(&ioc->timer, ioc_timer_fn, 0);
2191 INIT_LIST_HEAD(&ioc->active_iocgs);
2192
2193 ioc->running = IOC_IDLE;
2194 atomic64_set(&ioc->vtime_rate, VTIME_PER_USEC);
Ahmed S. Darwish67b7b642020-07-20 17:55:26 +02002195 seqcount_spinlock_init(&ioc->period_seqcount, &ioc->lock);
Tejun Heo7caa4712019-08-28 15:05:58 -07002196 ioc->period_at = ktime_to_us(ktime_get());
2197 atomic64_set(&ioc->cur_period, 0);
2198 atomic_set(&ioc->hweight_gen, 0);
2199
2200 spin_lock_irq(&ioc->lock);
2201 ioc->autop_idx = AUTOP_INVALID;
2202 ioc_refresh_params(ioc, true);
2203 spin_unlock_irq(&ioc->lock);
2204
2205 rq_qos_add(q, rqos);
2206 ret = blkcg_activate_policy(q, &blkcg_policy_iocost);
2207 if (ret) {
2208 rq_qos_del(q, rqos);
Tejun Heo3532e722019-08-29 08:53:06 -07002209 free_percpu(ioc->pcpu_stat);
Tejun Heo7caa4712019-08-28 15:05:58 -07002210 kfree(ioc);
2211 return ret;
2212 }
2213 return 0;
2214}
2215
2216static struct blkcg_policy_data *ioc_cpd_alloc(gfp_t gfp)
2217{
2218 struct ioc_cgrp *iocc;
2219
2220 iocc = kzalloc(sizeof(struct ioc_cgrp), gfp);
Tejun Heoe916ad22019-08-30 06:10:58 -07002221 if (!iocc)
2222 return NULL;
Tejun Heo7caa4712019-08-28 15:05:58 -07002223
Tejun Heobd0adb92020-09-01 14:52:39 -04002224 iocc->dfl_weight = CGROUP_WEIGHT_DFL * WEIGHT_ONE;
Tejun Heo7caa4712019-08-28 15:05:58 -07002225 return &iocc->cpd;
2226}
2227
2228static void ioc_cpd_free(struct blkcg_policy_data *cpd)
2229{
2230 kfree(container_of(cpd, struct ioc_cgrp, cpd));
2231}
2232
2233static struct blkg_policy_data *ioc_pd_alloc(gfp_t gfp, struct request_queue *q,
2234 struct blkcg *blkcg)
2235{
2236 int levels = blkcg->css.cgroup->level + 1;
2237 struct ioc_gq *iocg;
2238
Gustavo A. R. Silvaf61d6e22020-06-19 18:08:30 -05002239 iocg = kzalloc_node(struct_size(iocg, ancestors, levels), gfp, q->node);
Tejun Heo7caa4712019-08-28 15:05:58 -07002240 if (!iocg)
2241 return NULL;
2242
Tejun Heo97eb1972020-09-01 14:52:43 -04002243 iocg->pcpu_stat = alloc_percpu_gfp(struct iocg_pcpu_stat, gfp);
2244 if (!iocg->pcpu_stat) {
2245 kfree(iocg);
2246 return NULL;
2247 }
2248
Tejun Heo7caa4712019-08-28 15:05:58 -07002249 return &iocg->pd;
2250}
2251
2252static void ioc_pd_init(struct blkg_policy_data *pd)
2253{
2254 struct ioc_gq *iocg = pd_to_iocg(pd);
2255 struct blkcg_gq *blkg = pd_to_blkg(&iocg->pd);
2256 struct ioc *ioc = q_to_ioc(blkg->q);
2257 struct ioc_now now;
2258 struct blkcg_gq *tblkg;
2259 unsigned long flags;
2260
2261 ioc_now(ioc, &now);
2262
2263 iocg->ioc = ioc;
2264 atomic64_set(&iocg->vtime, now.vnow);
2265 atomic64_set(&iocg->done_vtime, now.vnow);
2266 atomic64_set(&iocg->active_period, atomic64_read(&ioc->cur_period));
2267 INIT_LIST_HEAD(&iocg->active_list);
Tejun Heo97eb1972020-09-01 14:52:43 -04002268 INIT_LIST_HEAD(&iocg->walk_list);
Tejun Heofe20cdb52020-09-01 14:52:38 -04002269 iocg->hweight_active = WEIGHT_ONE;
2270 iocg->hweight_inuse = WEIGHT_ONE;
Tejun Heo7caa4712019-08-28 15:05:58 -07002271
2272 init_waitqueue_head(&iocg->waitq);
2273 hrtimer_init(&iocg->waitq_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2274 iocg->waitq_timer.function = iocg_waitq_timer_fn;
2275 hrtimer_init(&iocg->delay_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2276 iocg->delay_timer.function = iocg_delay_timer_fn;
2277
2278 iocg->level = blkg->blkcg->css.cgroup->level;
2279
2280 for (tblkg = blkg; tblkg; tblkg = tblkg->parent) {
2281 struct ioc_gq *tiocg = blkg_to_iocg(tblkg);
2282 iocg->ancestors[tiocg->level] = tiocg;
2283 }
2284
2285 spin_lock_irqsave(&ioc->lock, flags);
2286 weight_updated(iocg);
2287 spin_unlock_irqrestore(&ioc->lock, flags);
2288}
2289
2290static void ioc_pd_free(struct blkg_policy_data *pd)
2291{
2292 struct ioc_gq *iocg = pd_to_iocg(pd);
2293 struct ioc *ioc = iocg->ioc;
Tejun Heo5aeac7c2020-09-01 14:52:31 -04002294 unsigned long flags;
Tejun Heo7caa4712019-08-28 15:05:58 -07002295
2296 if (ioc) {
Tejun Heo5aeac7c2020-09-01 14:52:31 -04002297 spin_lock_irqsave(&ioc->lock, flags);
Tejun Heo97eb1972020-09-01 14:52:43 -04002298
Tejun Heo7caa4712019-08-28 15:05:58 -07002299 if (!list_empty(&iocg->active_list)) {
Tejun Heo00410f12020-09-01 14:52:34 -04002300 propagate_weights(iocg, 0, 0);
Tejun Heo7caa4712019-08-28 15:05:58 -07002301 list_del_init(&iocg->active_list);
2302 }
Tejun Heo97eb1972020-09-01 14:52:43 -04002303
2304 WARN_ON_ONCE(!list_empty(&iocg->walk_list));
2305
Tejun Heo5aeac7c2020-09-01 14:52:31 -04002306 spin_unlock_irqrestore(&ioc->lock, flags);
Tejun Heoe036c4c2019-09-10 09:15:25 -07002307
2308 hrtimer_cancel(&iocg->waitq_timer);
2309 hrtimer_cancel(&iocg->delay_timer);
Tejun Heo7caa4712019-08-28 15:05:58 -07002310 }
Tejun Heo97eb1972020-09-01 14:52:43 -04002311 free_percpu(iocg->pcpu_stat);
Tejun Heo7caa4712019-08-28 15:05:58 -07002312 kfree(iocg);
2313}
2314
Tejun Heo97eb1972020-09-01 14:52:43 -04002315static size_t ioc_pd_stat(struct blkg_policy_data *pd, char *buf, size_t size)
2316{
2317 struct ioc_gq *iocg = pd_to_iocg(pd);
2318 struct ioc *ioc = iocg->ioc;
2319 size_t pos = 0;
2320
2321 if (!ioc->enabled)
2322 return 0;
2323
2324 if (iocg->level == 0) {
2325 unsigned vp10k = DIV64_U64_ROUND_CLOSEST(
2326 atomic64_read(&ioc->vtime_rate) * 10000,
2327 VTIME_PER_USEC);
2328 pos += scnprintf(buf + pos, size - pos, " cost.vrate=%u.%02u",
2329 vp10k / 100, vp10k % 100);
2330 }
2331
2332 pos += scnprintf(buf + pos, size - pos, " cost.usage=%llu",
2333 iocg->last_stat.usage_us);
2334
2335 return pos;
2336}
2337
Tejun Heo7caa4712019-08-28 15:05:58 -07002338static u64 ioc_weight_prfill(struct seq_file *sf, struct blkg_policy_data *pd,
2339 int off)
2340{
2341 const char *dname = blkg_dev_name(pd->blkg);
2342 struct ioc_gq *iocg = pd_to_iocg(pd);
2343
2344 if (dname && iocg->cfg_weight)
Tejun Heobd0adb92020-09-01 14:52:39 -04002345 seq_printf(sf, "%s %u\n", dname, iocg->cfg_weight / WEIGHT_ONE);
Tejun Heo7caa4712019-08-28 15:05:58 -07002346 return 0;
2347}
2348
2349
2350static int ioc_weight_show(struct seq_file *sf, void *v)
2351{
2352 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
2353 struct ioc_cgrp *iocc = blkcg_to_iocc(blkcg);
2354
Tejun Heobd0adb92020-09-01 14:52:39 -04002355 seq_printf(sf, "default %u\n", iocc->dfl_weight / WEIGHT_ONE);
Tejun Heo7caa4712019-08-28 15:05:58 -07002356 blkcg_print_blkgs(sf, blkcg, ioc_weight_prfill,
2357 &blkcg_policy_iocost, seq_cft(sf)->private, false);
2358 return 0;
2359}
2360
2361static ssize_t ioc_weight_write(struct kernfs_open_file *of, char *buf,
2362 size_t nbytes, loff_t off)
2363{
2364 struct blkcg *blkcg = css_to_blkcg(of_css(of));
2365 struct ioc_cgrp *iocc = blkcg_to_iocc(blkcg);
2366 struct blkg_conf_ctx ctx;
2367 struct ioc_gq *iocg;
2368 u32 v;
2369 int ret;
2370
2371 if (!strchr(buf, ':')) {
2372 struct blkcg_gq *blkg;
2373
2374 if (!sscanf(buf, "default %u", &v) && !sscanf(buf, "%u", &v))
2375 return -EINVAL;
2376
2377 if (v < CGROUP_WEIGHT_MIN || v > CGROUP_WEIGHT_MAX)
2378 return -EINVAL;
2379
2380 spin_lock(&blkcg->lock);
Tejun Heobd0adb92020-09-01 14:52:39 -04002381 iocc->dfl_weight = v * WEIGHT_ONE;
Tejun Heo7caa4712019-08-28 15:05:58 -07002382 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
2383 struct ioc_gq *iocg = blkg_to_iocg(blkg);
2384
2385 if (iocg) {
2386 spin_lock_irq(&iocg->ioc->lock);
2387 weight_updated(iocg);
2388 spin_unlock_irq(&iocg->ioc->lock);
2389 }
2390 }
2391 spin_unlock(&blkcg->lock);
2392
2393 return nbytes;
2394 }
2395
2396 ret = blkg_conf_prep(blkcg, &blkcg_policy_iocost, buf, &ctx);
2397 if (ret)
2398 return ret;
2399
2400 iocg = blkg_to_iocg(ctx.blkg);
2401
2402 if (!strncmp(ctx.body, "default", 7)) {
2403 v = 0;
2404 } else {
2405 if (!sscanf(ctx.body, "%u", &v))
2406 goto einval;
2407 if (v < CGROUP_WEIGHT_MIN || v > CGROUP_WEIGHT_MAX)
2408 goto einval;
2409 }
2410
Dan Carpenter41591a52019-10-31 13:53:41 +03002411 spin_lock(&iocg->ioc->lock);
Tejun Heobd0adb92020-09-01 14:52:39 -04002412 iocg->cfg_weight = v * WEIGHT_ONE;
Tejun Heo7caa4712019-08-28 15:05:58 -07002413 weight_updated(iocg);
Dan Carpenter41591a52019-10-31 13:53:41 +03002414 spin_unlock(&iocg->ioc->lock);
Tejun Heo7caa4712019-08-28 15:05:58 -07002415
2416 blkg_conf_finish(&ctx);
2417 return nbytes;
2418
2419einval:
2420 blkg_conf_finish(&ctx);
2421 return -EINVAL;
2422}
2423
2424static u64 ioc_qos_prfill(struct seq_file *sf, struct blkg_policy_data *pd,
2425 int off)
2426{
2427 const char *dname = blkg_dev_name(pd->blkg);
2428 struct ioc *ioc = pd_to_iocg(pd)->ioc;
2429
2430 if (!dname)
2431 return 0;
2432
2433 seq_printf(sf, "%s enable=%d ctrl=%s rpct=%u.%02u rlat=%u wpct=%u.%02u wlat=%u min=%u.%02u max=%u.%02u\n",
2434 dname, ioc->enabled, ioc->user_qos_params ? "user" : "auto",
2435 ioc->params.qos[QOS_RPPM] / 10000,
2436 ioc->params.qos[QOS_RPPM] % 10000 / 100,
2437 ioc->params.qos[QOS_RLAT],
2438 ioc->params.qos[QOS_WPPM] / 10000,
2439 ioc->params.qos[QOS_WPPM] % 10000 / 100,
2440 ioc->params.qos[QOS_WLAT],
2441 ioc->params.qos[QOS_MIN] / 10000,
2442 ioc->params.qos[QOS_MIN] % 10000 / 100,
2443 ioc->params.qos[QOS_MAX] / 10000,
2444 ioc->params.qos[QOS_MAX] % 10000 / 100);
2445 return 0;
2446}
2447
2448static int ioc_qos_show(struct seq_file *sf, void *v)
2449{
2450 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
2451
2452 blkcg_print_blkgs(sf, blkcg, ioc_qos_prfill,
2453 &blkcg_policy_iocost, seq_cft(sf)->private, false);
2454 return 0;
2455}
2456
2457static const match_table_t qos_ctrl_tokens = {
2458 { QOS_ENABLE, "enable=%u" },
2459 { QOS_CTRL, "ctrl=%s" },
2460 { NR_QOS_CTRL_PARAMS, NULL },
2461};
2462
2463static const match_table_t qos_tokens = {
2464 { QOS_RPPM, "rpct=%s" },
2465 { QOS_RLAT, "rlat=%u" },
2466 { QOS_WPPM, "wpct=%s" },
2467 { QOS_WLAT, "wlat=%u" },
2468 { QOS_MIN, "min=%s" },
2469 { QOS_MAX, "max=%s" },
2470 { NR_QOS_PARAMS, NULL },
2471};
2472
2473static ssize_t ioc_qos_write(struct kernfs_open_file *of, char *input,
2474 size_t nbytes, loff_t off)
2475{
2476 struct gendisk *disk;
2477 struct ioc *ioc;
2478 u32 qos[NR_QOS_PARAMS];
2479 bool enable, user;
2480 char *p;
2481 int ret;
2482
2483 disk = blkcg_conf_get_disk(&input);
2484 if (IS_ERR(disk))
2485 return PTR_ERR(disk);
2486
2487 ioc = q_to_ioc(disk->queue);
2488 if (!ioc) {
2489 ret = blk_iocost_init(disk->queue);
2490 if (ret)
2491 goto err;
2492 ioc = q_to_ioc(disk->queue);
2493 }
2494
2495 spin_lock_irq(&ioc->lock);
2496 memcpy(qos, ioc->params.qos, sizeof(qos));
2497 enable = ioc->enabled;
2498 user = ioc->user_qos_params;
2499 spin_unlock_irq(&ioc->lock);
2500
2501 while ((p = strsep(&input, " \t\n"))) {
2502 substring_t args[MAX_OPT_ARGS];
2503 char buf[32];
2504 int tok;
2505 s64 v;
2506
2507 if (!*p)
2508 continue;
2509
2510 switch (match_token(p, qos_ctrl_tokens, args)) {
2511 case QOS_ENABLE:
2512 match_u64(&args[0], &v);
2513 enable = v;
2514 continue;
2515 case QOS_CTRL:
2516 match_strlcpy(buf, &args[0], sizeof(buf));
2517 if (!strcmp(buf, "auto"))
2518 user = false;
2519 else if (!strcmp(buf, "user"))
2520 user = true;
2521 else
2522 goto einval;
2523 continue;
2524 }
2525
2526 tok = match_token(p, qos_tokens, args);
2527 switch (tok) {
2528 case QOS_RPPM:
2529 case QOS_WPPM:
2530 if (match_strlcpy(buf, &args[0], sizeof(buf)) >=
2531 sizeof(buf))
2532 goto einval;
2533 if (cgroup_parse_float(buf, 2, &v))
2534 goto einval;
2535 if (v < 0 || v > 10000)
2536 goto einval;
2537 qos[tok] = v * 100;
2538 break;
2539 case QOS_RLAT:
2540 case QOS_WLAT:
2541 if (match_u64(&args[0], &v))
2542 goto einval;
2543 qos[tok] = v;
2544 break;
2545 case QOS_MIN:
2546 case QOS_MAX:
2547 if (match_strlcpy(buf, &args[0], sizeof(buf)) >=
2548 sizeof(buf))
2549 goto einval;
2550 if (cgroup_parse_float(buf, 2, &v))
2551 goto einval;
2552 if (v < 0)
2553 goto einval;
2554 qos[tok] = clamp_t(s64, v * 100,
2555 VRATE_MIN_PPM, VRATE_MAX_PPM);
2556 break;
2557 default:
2558 goto einval;
2559 }
2560 user = true;
2561 }
2562
2563 if (qos[QOS_MIN] > qos[QOS_MAX])
2564 goto einval;
2565
2566 spin_lock_irq(&ioc->lock);
2567
2568 if (enable) {
Tejun Heocd006502020-04-13 12:27:56 -04002569 blk_stat_enable_accounting(ioc->rqos.q);
Tejun Heo7caa4712019-08-28 15:05:58 -07002570 blk_queue_flag_set(QUEUE_FLAG_RQ_ALLOC_TIME, ioc->rqos.q);
2571 ioc->enabled = true;
2572 } else {
2573 blk_queue_flag_clear(QUEUE_FLAG_RQ_ALLOC_TIME, ioc->rqos.q);
2574 ioc->enabled = false;
2575 }
2576
2577 if (user) {
2578 memcpy(ioc->params.qos, qos, sizeof(qos));
2579 ioc->user_qos_params = true;
2580 } else {
2581 ioc->user_qos_params = false;
2582 }
2583
2584 ioc_refresh_params(ioc, true);
2585 spin_unlock_irq(&ioc->lock);
2586
2587 put_disk_and_module(disk);
2588 return nbytes;
2589einval:
2590 ret = -EINVAL;
2591err:
2592 put_disk_and_module(disk);
2593 return ret;
2594}
2595
2596static u64 ioc_cost_model_prfill(struct seq_file *sf,
2597 struct blkg_policy_data *pd, int off)
2598{
2599 const char *dname = blkg_dev_name(pd->blkg);
2600 struct ioc *ioc = pd_to_iocg(pd)->ioc;
2601 u64 *u = ioc->params.i_lcoefs;
2602
2603 if (!dname)
2604 return 0;
2605
2606 seq_printf(sf, "%s ctrl=%s model=linear "
2607 "rbps=%llu rseqiops=%llu rrandiops=%llu "
2608 "wbps=%llu wseqiops=%llu wrandiops=%llu\n",
2609 dname, ioc->user_cost_model ? "user" : "auto",
2610 u[I_LCOEF_RBPS], u[I_LCOEF_RSEQIOPS], u[I_LCOEF_RRANDIOPS],
2611 u[I_LCOEF_WBPS], u[I_LCOEF_WSEQIOPS], u[I_LCOEF_WRANDIOPS]);
2612 return 0;
2613}
2614
2615static int ioc_cost_model_show(struct seq_file *sf, void *v)
2616{
2617 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
2618
2619 blkcg_print_blkgs(sf, blkcg, ioc_cost_model_prfill,
2620 &blkcg_policy_iocost, seq_cft(sf)->private, false);
2621 return 0;
2622}
2623
2624static const match_table_t cost_ctrl_tokens = {
2625 { COST_CTRL, "ctrl=%s" },
2626 { COST_MODEL, "model=%s" },
2627 { NR_COST_CTRL_PARAMS, NULL },
2628};
2629
2630static const match_table_t i_lcoef_tokens = {
2631 { I_LCOEF_RBPS, "rbps=%u" },
2632 { I_LCOEF_RSEQIOPS, "rseqiops=%u" },
2633 { I_LCOEF_RRANDIOPS, "rrandiops=%u" },
2634 { I_LCOEF_WBPS, "wbps=%u" },
2635 { I_LCOEF_WSEQIOPS, "wseqiops=%u" },
2636 { I_LCOEF_WRANDIOPS, "wrandiops=%u" },
2637 { NR_I_LCOEFS, NULL },
2638};
2639
2640static ssize_t ioc_cost_model_write(struct kernfs_open_file *of, char *input,
2641 size_t nbytes, loff_t off)
2642{
2643 struct gendisk *disk;
2644 struct ioc *ioc;
2645 u64 u[NR_I_LCOEFS];
2646 bool user;
2647 char *p;
2648 int ret;
2649
2650 disk = blkcg_conf_get_disk(&input);
2651 if (IS_ERR(disk))
2652 return PTR_ERR(disk);
2653
2654 ioc = q_to_ioc(disk->queue);
2655 if (!ioc) {
2656 ret = blk_iocost_init(disk->queue);
2657 if (ret)
2658 goto err;
2659 ioc = q_to_ioc(disk->queue);
2660 }
2661
2662 spin_lock_irq(&ioc->lock);
2663 memcpy(u, ioc->params.i_lcoefs, sizeof(u));
2664 user = ioc->user_cost_model;
2665 spin_unlock_irq(&ioc->lock);
2666
2667 while ((p = strsep(&input, " \t\n"))) {
2668 substring_t args[MAX_OPT_ARGS];
2669 char buf[32];
2670 int tok;
2671 u64 v;
2672
2673 if (!*p)
2674 continue;
2675
2676 switch (match_token(p, cost_ctrl_tokens, args)) {
2677 case COST_CTRL:
2678 match_strlcpy(buf, &args[0], sizeof(buf));
2679 if (!strcmp(buf, "auto"))
2680 user = false;
2681 else if (!strcmp(buf, "user"))
2682 user = true;
2683 else
2684 goto einval;
2685 continue;
2686 case COST_MODEL:
2687 match_strlcpy(buf, &args[0], sizeof(buf));
2688 if (strcmp(buf, "linear"))
2689 goto einval;
2690 continue;
2691 }
2692
2693 tok = match_token(p, i_lcoef_tokens, args);
2694 if (tok == NR_I_LCOEFS)
2695 goto einval;
2696 if (match_u64(&args[0], &v))
2697 goto einval;
2698 u[tok] = v;
2699 user = true;
2700 }
2701
2702 spin_lock_irq(&ioc->lock);
2703 if (user) {
2704 memcpy(ioc->params.i_lcoefs, u, sizeof(u));
2705 ioc->user_cost_model = true;
2706 } else {
2707 ioc->user_cost_model = false;
2708 }
2709 ioc_refresh_params(ioc, true);
2710 spin_unlock_irq(&ioc->lock);
2711
2712 put_disk_and_module(disk);
2713 return nbytes;
2714
2715einval:
2716 ret = -EINVAL;
2717err:
2718 put_disk_and_module(disk);
2719 return ret;
2720}
2721
2722static struct cftype ioc_files[] = {
2723 {
2724 .name = "weight",
2725 .flags = CFTYPE_NOT_ON_ROOT,
2726 .seq_show = ioc_weight_show,
2727 .write = ioc_weight_write,
2728 },
2729 {
2730 .name = "cost.qos",
2731 .flags = CFTYPE_ONLY_ON_ROOT,
2732 .seq_show = ioc_qos_show,
2733 .write = ioc_qos_write,
2734 },
2735 {
2736 .name = "cost.model",
2737 .flags = CFTYPE_ONLY_ON_ROOT,
2738 .seq_show = ioc_cost_model_show,
2739 .write = ioc_cost_model_write,
2740 },
2741 {}
2742};
2743
2744static struct blkcg_policy blkcg_policy_iocost = {
2745 .dfl_cftypes = ioc_files,
2746 .cpd_alloc_fn = ioc_cpd_alloc,
2747 .cpd_free_fn = ioc_cpd_free,
2748 .pd_alloc_fn = ioc_pd_alloc,
2749 .pd_init_fn = ioc_pd_init,
2750 .pd_free_fn = ioc_pd_free,
Tejun Heo97eb1972020-09-01 14:52:43 -04002751 .pd_stat_fn = ioc_pd_stat,
Tejun Heo7caa4712019-08-28 15:05:58 -07002752};
2753
2754static int __init ioc_init(void)
2755{
2756 return blkcg_policy_register(&blkcg_policy_iocost);
2757}
2758
2759static void __exit ioc_exit(void)
2760{
2761 return blkcg_policy_unregister(&blkcg_policy_iocost);
2762}
2763
2764module_init(ioc_init);
2765module_exit(ioc_exit);