Merge tag 'nios2-v4.19-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/lftan...
[linux-2.6/btrfs-unstable.git] / block / blk-rq-qos.c
blob0005dfd568dd5baaf3804106b25ef6a37b2a79ee
1 #include "blk-rq-qos.h"
3 /*
4 * Increment 'v', if 'v' is below 'below'. Returns true if we succeeded,
5 * false if 'v' + 1 would be bigger than 'below'.
6 */
7 static bool atomic_inc_below(atomic_t *v, unsigned int below)
9 unsigned int cur = atomic_read(v);
11 for (;;) {
12 unsigned int old;
14 if (cur >= below)
15 return false;
16 old = atomic_cmpxchg(v, cur, cur + 1);
17 if (old == cur)
18 break;
19 cur = old;
22 return true;
25 bool rq_wait_inc_below(struct rq_wait *rq_wait, unsigned int limit)
27 return atomic_inc_below(&rq_wait->inflight, limit);
30 void rq_qos_cleanup(struct request_queue *q, struct bio *bio)
32 struct rq_qos *rqos;
34 for (rqos = q->rq_qos; rqos; rqos = rqos->next) {
35 if (rqos->ops->cleanup)
36 rqos->ops->cleanup(rqos, bio);
40 void rq_qos_done(struct request_queue *q, struct request *rq)
42 struct rq_qos *rqos;
44 for (rqos = q->rq_qos; rqos; rqos = rqos->next) {
45 if (rqos->ops->done)
46 rqos->ops->done(rqos, rq);
50 void rq_qos_issue(struct request_queue *q, struct request *rq)
52 struct rq_qos *rqos;
54 for(rqos = q->rq_qos; rqos; rqos = rqos->next) {
55 if (rqos->ops->issue)
56 rqos->ops->issue(rqos, rq);
60 void rq_qos_requeue(struct request_queue *q, struct request *rq)
62 struct rq_qos *rqos;
64 for(rqos = q->rq_qos; rqos; rqos = rqos->next) {
65 if (rqos->ops->requeue)
66 rqos->ops->requeue(rqos, rq);
70 void rq_qos_throttle(struct request_queue *q, struct bio *bio,
71 spinlock_t *lock)
73 struct rq_qos *rqos;
75 for(rqos = q->rq_qos; rqos; rqos = rqos->next) {
76 if (rqos->ops->throttle)
77 rqos->ops->throttle(rqos, bio, lock);
81 void rq_qos_track(struct request_queue *q, struct request *rq, struct bio *bio)
83 struct rq_qos *rqos;
85 for(rqos = q->rq_qos; rqos; rqos = rqos->next) {
86 if (rqos->ops->track)
87 rqos->ops->track(rqos, rq, bio);
91 void rq_qos_done_bio(struct request_queue *q, struct bio *bio)
93 struct rq_qos *rqos;
95 for(rqos = q->rq_qos; rqos; rqos = rqos->next) {
96 if (rqos->ops->done_bio)
97 rqos->ops->done_bio(rqos, bio);
102 * Return true, if we can't increase the depth further by scaling
104 bool rq_depth_calc_max_depth(struct rq_depth *rqd)
106 unsigned int depth;
107 bool ret = false;
110 * For QD=1 devices, this is a special case. It's important for those
111 * to have one request ready when one completes, so force a depth of
112 * 2 for those devices. On the backend, it'll be a depth of 1 anyway,
113 * since the device can't have more than that in flight. If we're
114 * scaling down, then keep a setting of 1/1/1.
116 if (rqd->queue_depth == 1) {
117 if (rqd->scale_step > 0)
118 rqd->max_depth = 1;
119 else {
120 rqd->max_depth = 2;
121 ret = true;
123 } else {
125 * scale_step == 0 is our default state. If we have suffered
126 * latency spikes, step will be > 0, and we shrink the
127 * allowed write depths. If step is < 0, we're only doing
128 * writes, and we allow a temporarily higher depth to
129 * increase performance.
131 depth = min_t(unsigned int, rqd->default_depth,
132 rqd->queue_depth);
133 if (rqd->scale_step > 0)
134 depth = 1 + ((depth - 1) >> min(31, rqd->scale_step));
135 else if (rqd->scale_step < 0) {
136 unsigned int maxd = 3 * rqd->queue_depth / 4;
138 depth = 1 + ((depth - 1) << -rqd->scale_step);
139 if (depth > maxd) {
140 depth = maxd;
141 ret = true;
145 rqd->max_depth = depth;
148 return ret;
151 void rq_depth_scale_up(struct rq_depth *rqd)
154 * Hit max in previous round, stop here
156 if (rqd->scaled_max)
157 return;
159 rqd->scale_step--;
161 rqd->scaled_max = rq_depth_calc_max_depth(rqd);
165 * Scale rwb down. If 'hard_throttle' is set, do it quicker, since we
166 * had a latency violation.
168 void rq_depth_scale_down(struct rq_depth *rqd, bool hard_throttle)
171 * Stop scaling down when we've hit the limit. This also prevents
172 * ->scale_step from going to crazy values, if the device can't
173 * keep up.
175 if (rqd->max_depth == 1)
176 return;
178 if (rqd->scale_step < 0 && hard_throttle)
179 rqd->scale_step = 0;
180 else
181 rqd->scale_step++;
183 rqd->scaled_max = false;
184 rq_depth_calc_max_depth(rqd);
187 void rq_qos_exit(struct request_queue *q)
189 while (q->rq_qos) {
190 struct rq_qos *rqos = q->rq_qos;
191 q->rq_qos = rqos->next;
192 rqos->ops->exit(rqos);