1 // SPDX-License-Identifier: GPL-2.0
3 #include "blk-rq-qos.h"
6 * Increment 'v', if 'v' is below 'below'. Returns true if we succeeded,
7 * false if 'v' + 1 would be bigger than 'below'.
9 static bool atomic_inc_below(atomic_t *v, unsigned int below)
11 unsigned int cur = atomic_read(v);
18 old = atomic_cmpxchg(v, cur, cur + 1);
27 bool rq_wait_inc_below(struct rq_wait *rq_wait, unsigned int limit)
29 return atomic_inc_below(&rq_wait->inflight, limit);
32 void __rq_qos_cleanup(struct rq_qos *rqos, struct bio *bio)
35 if (rqos->ops->cleanup)
36 rqos->ops->cleanup(rqos, bio);
41 void __rq_qos_done(struct rq_qos *rqos, struct request *rq)
45 rqos->ops->done(rqos, rq);
50 void __rq_qos_issue(struct rq_qos *rqos, struct request *rq)
54 rqos->ops->issue(rqos, rq);
59 void __rq_qos_requeue(struct rq_qos *rqos, struct request *rq)
62 if (rqos->ops->requeue)
63 rqos->ops->requeue(rqos, rq);
68 void __rq_qos_throttle(struct rq_qos *rqos, struct bio *bio)
71 if (rqos->ops->throttle)
72 rqos->ops->throttle(rqos, bio);
77 void __rq_qos_track(struct rq_qos *rqos, struct request *rq, struct bio *bio)
81 rqos->ops->track(rqos, rq, bio);
86 void __rq_qos_done_bio(struct rq_qos *rqos, struct bio *bio)
89 if (rqos->ops->done_bio)
90 rqos->ops->done_bio(rqos, bio);
96 * Return true, if we can't increase the depth further by scaling
98 bool rq_depth_calc_max_depth(struct rq_depth *rqd)
104 * For QD=1 devices, this is a special case. It's important for those
105 * to have one request ready when one completes, so force a depth of
106 * 2 for those devices. On the backend, it'll be a depth of 1 anyway,
107 * since the device can't have more than that in flight. If we're
108 * scaling down, then keep a setting of 1/1/1.
110 if (rqd->queue_depth == 1) {
111 if (rqd->scale_step > 0)
119 * scale_step == 0 is our default state. If we have suffered
120 * latency spikes, step will be > 0, and we shrink the
121 * allowed write depths. If step is < 0, we're only doing
122 * writes, and we allow a temporarily higher depth to
123 * increase performance.
125 depth = min_t(unsigned int, rqd->default_depth,
127 if (rqd->scale_step > 0)
128 depth = 1 + ((depth - 1) >> min(31, rqd->scale_step));
129 else if (rqd->scale_step < 0) {
130 unsigned int maxd = 3 * rqd->queue_depth / 4;
132 depth = 1 + ((depth - 1) << -rqd->scale_step);
139 rqd->max_depth = depth;
145 void rq_depth_scale_up(struct rq_depth *rqd)
148 * Hit max in previous round, stop here
155 rqd->scaled_max = rq_depth_calc_max_depth(rqd);
159 * Scale rwb down. If 'hard_throttle' is set, do it quicker, since we
160 * had a latency violation.
162 void rq_depth_scale_down(struct rq_depth *rqd, bool hard_throttle)
165 * Stop scaling down when we've hit the limit. This also prevents
166 * ->scale_step from going to crazy values, if the device can't
169 if (rqd->max_depth == 1)
172 if (rqd->scale_step < 0 && hard_throttle)
177 rqd->scaled_max = false;
178 rq_depth_calc_max_depth(rqd);
181 struct rq_qos_wait_data {
182 struct wait_queue_entry wq;
183 struct task_struct *task;
185 acquire_inflight_cb_t *cb;
190 static int rq_qos_wake_function(struct wait_queue_entry *curr,
191 unsigned int mode, int wake_flags, void *key)
193 struct rq_qos_wait_data *data = container_of(curr,
194 struct rq_qos_wait_data,
198 * If we fail to get a budget, return -1 to interrupt the wake up loop
199 * in __wake_up_common.
201 if (!data->cb(data->rqw, data->private_data))
204 data->got_token = true;
205 list_del_init(&curr->entry);
206 wake_up_process(data->task);
211 * rq_qos_wait - throttle on a rqw if we need to
212 * @private_data - caller provided specific data
213 * @acquire_inflight_cb - inc the rqw->inflight counter if we can
214 * @cleanup_cb - the callback to cleanup in case we race with a waker
216 * This provides a uniform place for the rq_qos users to do their throttling.
217 * Since you can end up with a lot of things sleeping at once, this manages the
218 * waking up based on the resources available. The acquire_inflight_cb should
219 * inc the rqw->inflight if we have the ability to do so, or return false if not
220 * and then we will sleep until the room becomes available.
222 * cleanup_cb is in case that we race with a waker and need to cleanup the
223 * inflight count accordingly.
225 void rq_qos_wait(struct rq_wait *rqw, void *private_data,
226 acquire_inflight_cb_t *acquire_inflight_cb,
227 cleanup_cb_t *cleanup_cb)
229 struct rq_qos_wait_data data = {
231 .func = rq_qos_wake_function,
232 .entry = LIST_HEAD_INIT(data.wq.entry),
236 .cb = acquire_inflight_cb,
237 .private_data = private_data,
241 has_sleeper = wq_has_sleeper(&rqw->wait);
242 if (!has_sleeper && acquire_inflight_cb(rqw, private_data))
245 prepare_to_wait_exclusive(&rqw->wait, &data.wq, TASK_UNINTERRUPTIBLE);
249 if (!has_sleeper && acquire_inflight_cb(rqw, private_data)) {
250 finish_wait(&rqw->wait, &data.wq);
253 * We raced with wbt_wake_function() getting a token,
254 * which means we now have two. Put our local token
255 * and wake anyone else potentially waiting for one.
258 cleanup_cb(rqw, private_data);
264 finish_wait(&rqw->wait, &data.wq);
267 void rq_qos_exit(struct request_queue *q)
269 blk_mq_debugfs_unregister_queue_rqos(q);
272 struct rq_qos *rqos = q->rq_qos;
273 q->rq_qos = rqos->next;
274 rqos->ops->exit(rqos);