blob: 9f32882ceb2f651c2bc227e62f7367a1962d5e70 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Jens Axboe8324aa92008-01-29 14:51:59 +01002/*
3 * Functions related to sysfs handling
4 */
5#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Jens Axboe8324aa92008-01-29 14:51:59 +01007#include <linux/module.h>
8#include <linux/bio.h>
9#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040010#include <linux/backing-dev.h>
Jens Axboe8324aa92008-01-29 14:51:59 +010011#include <linux/blktrace_api.h>
Jens Axboe320ae512013-10-24 09:20:05 +010012#include <linux/blk-mq.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040013#include <linux/blk-cgroup.h>
Luis Chamberlain85e0cbb2020-06-19 20:47:30 +000014#include <linux/debugfs.h>
Jens Axboe8324aa92008-01-29 14:51:59 +010015
16#include "blk.h"
Ming Lei3edcc0c2013-12-26 21:31:38 +080017#include "blk-mq.h"
Omar Sandovald173a252017-05-04 00:31:30 -070018#include "blk-mq-debugfs.h"
Christoph Hellwig2aa77452021-11-23 19:53:08 +010019#include "blk-mq-sched.h"
Jens Axboe87760e52016-11-09 12:38:14 -070020#include "blk-wbt.h"
Jens Axboea7b36ee2021-10-05 09:11:56 -060021#include "blk-throttle.h"
Jens Axboe8324aa92008-01-29 14:51:59 +010022
23struct queue_sysfs_entry {
24 struct attribute attr;
25 ssize_t (*show)(struct request_queue *, char *);
26 ssize_t (*store)(struct request_queue *, const char *, size_t);
27};
28
29static ssize_t
Xiaotian Feng9cb308c2009-07-17 15:26:26 +080030queue_var_show(unsigned long var, char *page)
Jens Axboe8324aa92008-01-29 14:51:59 +010031{
Xiaotian Feng9cb308c2009-07-17 15:26:26 +080032 return sprintf(page, "%lu\n", var);
Jens Axboe8324aa92008-01-29 14:51:59 +010033}
34
35static ssize_t
36queue_var_store(unsigned long *var, const char *page, size_t count)
37{
Dave Reisnerb1f3b642012-09-08 11:55:45 -040038 int err;
39 unsigned long v;
Jens Axboe8324aa92008-01-29 14:51:59 +010040
Jingoo Haned751e62013-09-11 14:20:08 -070041 err = kstrtoul(page, 10, &v);
Dave Reisnerb1f3b642012-09-08 11:55:45 -040042 if (err || v > UINT_MAX)
43 return -EINVAL;
44
45 *var = v;
46
Jens Axboe8324aa92008-01-29 14:51:59 +010047 return count;
48}
49
Jens Axboe80e091d2016-11-28 09:22:47 -070050static ssize_t queue_var_store64(s64 *var, const char *page)
Jens Axboe87760e52016-11-09 12:38:14 -070051{
52 int err;
Jens Axboe80e091d2016-11-28 09:22:47 -070053 s64 v;
Jens Axboe87760e52016-11-09 12:38:14 -070054
Jens Axboe80e091d2016-11-28 09:22:47 -070055 err = kstrtos64(page, 10, &v);
Jens Axboe87760e52016-11-09 12:38:14 -070056 if (err < 0)
57 return err;
58
59 *var = v;
60 return 0;
61}
62
Jens Axboe8324aa92008-01-29 14:51:59 +010063static ssize_t queue_requests_show(struct request_queue *q, char *page)
64{
Max Gurtovoy28af7422021-04-05 13:20:12 +000065 return queue_var_show(q->nr_requests, page);
Jens Axboe8324aa92008-01-29 14:51:59 +010066}
67
68static ssize_t
69queue_requests_store(struct request_queue *q, const char *page, size_t count)
70{
Jens Axboe8324aa92008-01-29 14:51:59 +010071 unsigned long nr;
Jens Axboee3a2b3f2014-05-20 11:49:02 -060072 int ret, err;
Jens Axboeb8a9ae72009-09-11 22:44:29 +020073
Jens Axboe344e9ff2018-11-15 12:22:51 -070074 if (!queue_is_mq(q))
Jens Axboeb8a9ae72009-09-11 22:44:29 +020075 return -EINVAL;
76
77 ret = queue_var_store(&nr, page, count);
Dave Reisnerb1f3b642012-09-08 11:55:45 -040078 if (ret < 0)
79 return ret;
80
Jens Axboe8324aa92008-01-29 14:51:59 +010081 if (nr < BLKDEV_MIN_RQ)
82 nr = BLKDEV_MIN_RQ;
83
Jens Axboea1ce35f2018-10-29 10:23:51 -060084 err = blk_mq_update_nr_requests(q, nr);
Jens Axboee3a2b3f2014-05-20 11:49:02 -060085 if (err)
86 return err;
Tejun Heoa0516612012-06-26 15:05:44 -070087
Jens Axboe8324aa92008-01-29 14:51:59 +010088 return ret;
89}
90
91static ssize_t queue_ra_show(struct request_queue *q, char *page)
92{
Christoph Hellwigedb08722021-08-09 16:17:43 +020093 unsigned long ra_kb;
Jens Axboe8324aa92008-01-29 14:51:59 +010094
Christoph Hellwigd152c682021-08-16 15:46:24 +020095 if (!q->disk)
Christoph Hellwigedb08722021-08-09 16:17:43 +020096 return -EINVAL;
Christoph Hellwigd152c682021-08-16 15:46:24 +020097 ra_kb = q->disk->bdi->ra_pages << (PAGE_SHIFT - 10);
Max Gurtovoy8c390ff2021-05-11 15:53:19 +000098 return queue_var_show(ra_kb, page);
Jens Axboe8324aa92008-01-29 14:51:59 +010099}
100
101static ssize_t
102queue_ra_store(struct request_queue *q, const char *page, size_t count)
103{
104 unsigned long ra_kb;
Christoph Hellwigedb08722021-08-09 16:17:43 +0200105 ssize_t ret;
Jens Axboe8324aa92008-01-29 14:51:59 +0100106
Christoph Hellwigd152c682021-08-16 15:46:24 +0200107 if (!q->disk)
Christoph Hellwigedb08722021-08-09 16:17:43 +0200108 return -EINVAL;
109 ret = queue_var_store(&ra_kb, page, count);
Dave Reisnerb1f3b642012-09-08 11:55:45 -0400110 if (ret < 0)
111 return ret;
Christoph Hellwigd152c682021-08-16 15:46:24 +0200112 q->disk->bdi->ra_pages = ra_kb >> (PAGE_SHIFT - 10);
Jens Axboe8324aa92008-01-29 14:51:59 +0100113 return ret;
114}
115
116static ssize_t queue_max_sectors_show(struct request_queue *q, char *page)
117{
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400118 int max_sectors_kb = queue_max_sectors(q) >> 1;
Jens Axboe8324aa92008-01-29 14:51:59 +0100119
Max Gurtovoy8c390ff2021-05-11 15:53:19 +0000120 return queue_var_show(max_sectors_kb, page);
Jens Axboe8324aa92008-01-29 14:51:59 +0100121}
122
Martin K. Petersenc77a5712010-03-10 00:48:33 -0500123static ssize_t queue_max_segments_show(struct request_queue *q, char *page)
124{
Max Gurtovoy8c390ff2021-05-11 15:53:19 +0000125 return queue_var_show(queue_max_segments(q), page);
Martin K. Petersenc77a5712010-03-10 00:48:33 -0500126}
127
Christoph Hellwig1e739732017-02-08 14:46:49 +0100128static ssize_t queue_max_discard_segments_show(struct request_queue *q,
129 char *page)
130{
Max Gurtovoy8c390ff2021-05-11 15:53:19 +0000131 return queue_var_show(queue_max_discard_segments(q), page);
Christoph Hellwig1e739732017-02-08 14:46:49 +0100132}
133
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200134static ssize_t queue_max_integrity_segments_show(struct request_queue *q, char *page)
135{
Max Gurtovoy8c390ff2021-05-11 15:53:19 +0000136 return queue_var_show(q->limits.max_integrity_segments, page);
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200137}
138
Martin K. Petersenc77a5712010-03-10 00:48:33 -0500139static ssize_t queue_max_segment_size_show(struct request_queue *q, char *page)
140{
Max Gurtovoy8c390ff2021-05-11 15:53:19 +0000141 return queue_var_show(queue_max_segment_size(q), page);
Martin K. Petersenc77a5712010-03-10 00:48:33 -0500142}
143
Martin K. Petersene1defc42009-05-22 17:17:49 -0400144static ssize_t queue_logical_block_size_show(struct request_queue *q, char *page)
Martin K. Petersene68b9032008-01-29 19:14:08 +0100145{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400146 return queue_var_show(queue_logical_block_size(q), page);
Martin K. Petersene68b9032008-01-29 19:14:08 +0100147}
148
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400149static ssize_t queue_physical_block_size_show(struct request_queue *q, char *page)
150{
151 return queue_var_show(queue_physical_block_size(q), page);
152}
153
Hannes Reinecke87caf972016-10-18 15:40:30 +0900154static ssize_t queue_chunk_sectors_show(struct request_queue *q, char *page)
155{
156 return queue_var_show(q->limits.chunk_sectors, page);
157}
158
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400159static ssize_t queue_io_min_show(struct request_queue *q, char *page)
160{
161 return queue_var_show(queue_io_min(q), page);
162}
163
164static ssize_t queue_io_opt_show(struct request_queue *q, char *page)
165{
166 return queue_var_show(queue_io_opt(q), page);
Jens Axboe8324aa92008-01-29 14:51:59 +0100167}
168
Martin K. Petersen86b37282009-11-10 11:50:21 +0100169static ssize_t queue_discard_granularity_show(struct request_queue *q, char *page)
170{
171 return queue_var_show(q->limits.discard_granularity, page);
172}
173
Jens Axboe0034af02015-07-16 09:14:26 -0600174static ssize_t queue_discard_max_hw_show(struct request_queue *q, char *page)
175{
Jens Axboe0034af02015-07-16 09:14:26 -0600176
Alan18f922d02016-02-17 14:15:30 +0000177 return sprintf(page, "%llu\n",
178 (unsigned long long)q->limits.max_hw_discard_sectors << 9);
Jens Axboe0034af02015-07-16 09:14:26 -0600179}
180
Martin K. Petersen86b37282009-11-10 11:50:21 +0100181static ssize_t queue_discard_max_show(struct request_queue *q, char *page)
182{
Martin K. Petersena934a002011-05-18 10:37:35 +0200183 return sprintf(page, "%llu\n",
184 (unsigned long long)q->limits.max_discard_sectors << 9);
Martin K. Petersen86b37282009-11-10 11:50:21 +0100185}
186
Jens Axboe0034af02015-07-16 09:14:26 -0600187static ssize_t queue_discard_max_store(struct request_queue *q,
188 const char *page, size_t count)
189{
190 unsigned long max_discard;
191 ssize_t ret = queue_var_store(&max_discard, page, count);
192
193 if (ret < 0)
194 return ret;
195
196 if (max_discard & (q->limits.discard_granularity - 1))
197 return -EINVAL;
198
199 max_discard >>= 9;
200 if (max_discard > UINT_MAX)
201 return -EINVAL;
202
203 if (max_discard > q->limits.max_hw_discard_sectors)
204 max_discard = q->limits.max_hw_discard_sectors;
205
206 q->limits.max_discard_sectors = max_discard;
207 return ret;
208}
209
Martin K. Petersen98262f22009-12-03 09:24:48 +0100210static ssize_t queue_discard_zeroes_data_show(struct request_queue *q, char *page)
211{
Christoph Hellwig48920ff2017-04-05 19:21:23 +0200212 return queue_var_show(0, page);
Martin K. Petersen98262f22009-12-03 09:24:48 +0100213}
214
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400215static ssize_t queue_write_same_max_show(struct request_queue *q, char *page)
216{
217 return sprintf(page, "%llu\n",
218 (unsigned long long)q->limits.max_write_same_sectors << 9);
219}
220
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800221static ssize_t queue_write_zeroes_max_show(struct request_queue *q, char *page)
222{
223 return sprintf(page, "%llu\n",
224 (unsigned long long)q->limits.max_write_zeroes_sectors << 9);
225}
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400226
Damien Le Moala805a4f2021-01-28 13:47:30 +0900227static ssize_t queue_zone_write_granularity_show(struct request_queue *q,
228 char *page)
229{
230 return queue_var_show(queue_zone_write_granularity(q), page);
231}
232
Keith Busch0512a752020-05-12 17:55:47 +0900233static ssize_t queue_zone_append_max_show(struct request_queue *q, char *page)
234{
235 unsigned long long max_sectors = q->limits.max_zone_append_sectors;
236
237 return sprintf(page, "%llu\n", max_sectors << SECTOR_SHIFT);
238}
239
Jens Axboe8324aa92008-01-29 14:51:59 +0100240static ssize_t
241queue_max_sectors_store(struct request_queue *q, const char *page, size_t count)
242{
243 unsigned long max_sectors_kb,
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400244 max_hw_sectors_kb = queue_max_hw_sectors(q) >> 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300245 page_kb = 1 << (PAGE_SHIFT - 10);
Jens Axboe8324aa92008-01-29 14:51:59 +0100246 ssize_t ret = queue_var_store(&max_sectors_kb, page, count);
247
Dave Reisnerb1f3b642012-09-08 11:55:45 -0400248 if (ret < 0)
249 return ret;
250
Martin K. Petersenca369d52015-11-13 16:46:48 -0500251 max_hw_sectors_kb = min_not_zero(max_hw_sectors_kb, (unsigned long)
252 q->limits.max_dev_sectors >> 1);
253
Jens Axboe8324aa92008-01-29 14:51:59 +0100254 if (max_sectors_kb > max_hw_sectors_kb || max_sectors_kb < page_kb)
255 return -EINVAL;
Wu Fengguang7c239512008-11-25 09:08:39 +0100256
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700257 spin_lock_irq(&q->queue_lock);
Nikanth Karthikesanc295fc02009-09-01 22:40:15 +0200258 q->limits.max_sectors = max_sectors_kb << 1;
Christoph Hellwigd152c682021-08-16 15:46:24 +0200259 if (q->disk)
260 q->disk->bdi->io_pages = max_sectors_kb >> (PAGE_SHIFT - 10);
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700261 spin_unlock_irq(&q->queue_lock);
Jens Axboe8324aa92008-01-29 14:51:59 +0100262
263 return ret;
264}
265
266static ssize_t queue_max_hw_sectors_show(struct request_queue *q, char *page)
267{
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400268 int max_hw_sectors_kb = queue_max_hw_sectors(q) >> 1;
Jens Axboe8324aa92008-01-29 14:51:59 +0100269
Max Gurtovoy8c390ff2021-05-11 15:53:19 +0000270 return queue_var_show(max_hw_sectors_kb, page);
Jens Axboe8324aa92008-01-29 14:51:59 +0100271}
272
Max Gurtovoy28af7422021-04-05 13:20:12 +0000273static ssize_t queue_virt_boundary_mask_show(struct request_queue *q, char *page)
274{
Max Gurtovoy8c390ff2021-05-11 15:53:19 +0000275 return queue_var_show(q->limits.virt_boundary_mask, page);
Max Gurtovoy28af7422021-04-05 13:20:12 +0000276}
277
Jens Axboe956bcb72010-08-07 18:13:50 +0200278#define QUEUE_SYSFS_BIT_FNS(name, flag, neg) \
279static ssize_t \
Christoph Hellwigfc93fe12020-09-03 08:07:01 +0200280queue_##name##_show(struct request_queue *q, char *page) \
Jens Axboe956bcb72010-08-07 18:13:50 +0200281{ \
282 int bit; \
283 bit = test_bit(QUEUE_FLAG_##flag, &q->queue_flags); \
284 return queue_var_show(neg ? !bit : bit, page); \
285} \
286static ssize_t \
Christoph Hellwigfc93fe12020-09-03 08:07:01 +0200287queue_##name##_store(struct request_queue *q, const char *page, size_t count) \
Jens Axboe956bcb72010-08-07 18:13:50 +0200288{ \
289 unsigned long val; \
290 ssize_t ret; \
291 ret = queue_var_store(&val, page, count); \
Arnd Bergmannc678ef52013-04-03 21:53:57 +0200292 if (ret < 0) \
293 return ret; \
Jens Axboe956bcb72010-08-07 18:13:50 +0200294 if (neg) \
295 val = !val; \
296 \
Jens Axboe956bcb72010-08-07 18:13:50 +0200297 if (val) \
Bart Van Assche8814ce82018-03-07 17:10:04 -0800298 blk_queue_flag_set(QUEUE_FLAG_##flag, q); \
Jens Axboe956bcb72010-08-07 18:13:50 +0200299 else \
Bart Van Assche8814ce82018-03-07 17:10:04 -0800300 blk_queue_flag_clear(QUEUE_FLAG_##flag, q); \
Jens Axboe956bcb72010-08-07 18:13:50 +0200301 return ret; \
Bartlomiej Zolnierkiewicz1308835f2009-01-07 12:22:39 +0100302}
303
Jens Axboe956bcb72010-08-07 18:13:50 +0200304QUEUE_SYSFS_BIT_FNS(nonrot, NONROT, 1);
305QUEUE_SYSFS_BIT_FNS(random, ADD_RANDOM, 0);
306QUEUE_SYSFS_BIT_FNS(iostats, IO_STAT, 0);
Christoph Hellwig1cb039f2020-09-24 08:51:38 +0200307QUEUE_SYSFS_BIT_FNS(stable_writes, STABLE_WRITES, 0);
Jens Axboe956bcb72010-08-07 18:13:50 +0200308#undef QUEUE_SYSFS_BIT_FNS
Bartlomiej Zolnierkiewicz1308835f2009-01-07 12:22:39 +0100309
Damien Le Moal797476b2016-10-18 15:40:29 +0900310static ssize_t queue_zoned_show(struct request_queue *q, char *page)
311{
312 switch (blk_queue_zoned_model(q)) {
313 case BLK_ZONED_HA:
314 return sprintf(page, "host-aware\n");
315 case BLK_ZONED_HM:
316 return sprintf(page, "host-managed\n");
317 default:
318 return sprintf(page, "none\n");
319 }
320}
321
Damien Le Moal965b6522018-10-12 19:08:48 +0900322static ssize_t queue_nr_zones_show(struct request_queue *q, char *page)
323{
324 return queue_var_show(blk_queue_nr_zones(q), page);
325}
326
Niklas Cassele15864f2020-07-14 23:18:23 +0200327static ssize_t queue_max_open_zones_show(struct request_queue *q, char *page)
328{
329 return queue_var_show(queue_max_open_zones(q), page);
330}
331
Niklas Cassel659bf822020-07-14 23:18:24 +0200332static ssize_t queue_max_active_zones_show(struct request_queue *q, char *page)
333{
334 return queue_var_show(queue_max_active_zones(q), page);
335}
336
Alan D. Brunelleac9fafa2008-04-29 14:44:19 +0200337static ssize_t queue_nomerges_show(struct request_queue *q, char *page)
338{
Alan D. Brunelle488991e2010-01-29 09:04:08 +0100339 return queue_var_show((blk_queue_nomerges(q) << 1) |
340 blk_queue_noxmerges(q), page);
Alan D. Brunelleac9fafa2008-04-29 14:44:19 +0200341}
342
343static ssize_t queue_nomerges_store(struct request_queue *q, const char *page,
344 size_t count)
345{
346 unsigned long nm;
347 ssize_t ret = queue_var_store(&nm, page, count);
348
Dave Reisnerb1f3b642012-09-08 11:55:45 -0400349 if (ret < 0)
350 return ret;
351
Christoph Hellwig57d74df2018-11-14 17:02:07 +0100352 blk_queue_flag_clear(QUEUE_FLAG_NOMERGES, q);
353 blk_queue_flag_clear(QUEUE_FLAG_NOXMERGES, q);
Alan D. Brunelle488991e2010-01-29 09:04:08 +0100354 if (nm == 2)
Christoph Hellwig57d74df2018-11-14 17:02:07 +0100355 blk_queue_flag_set(QUEUE_FLAG_NOMERGES, q);
Alan D. Brunelle488991e2010-01-29 09:04:08 +0100356 else if (nm)
Christoph Hellwig57d74df2018-11-14 17:02:07 +0100357 blk_queue_flag_set(QUEUE_FLAG_NOXMERGES, q);
Bartlomiej Zolnierkiewicz1308835f2009-01-07 12:22:39 +0100358
Alan D. Brunelleac9fafa2008-04-29 14:44:19 +0200359 return ret;
360}
361
Jens Axboec7c22e42008-09-13 20:26:01 +0200362static ssize_t queue_rq_affinity_show(struct request_queue *q, char *page)
363{
Xiaotian Feng9cb308c2009-07-17 15:26:26 +0800364 bool set = test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags);
Dan Williams5757a6d2011-07-23 20:44:25 +0200365 bool force = test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags);
Jens Axboec7c22e42008-09-13 20:26:01 +0200366
Dan Williams5757a6d2011-07-23 20:44:25 +0200367 return queue_var_show(set << force, page);
Jens Axboec7c22e42008-09-13 20:26:01 +0200368}
369
370static ssize_t
371queue_rq_affinity_store(struct request_queue *q, const char *page, size_t count)
372{
373 ssize_t ret = -EINVAL;
Christoph Hellwig0a06ff02013-11-14 14:32:07 -0800374#ifdef CONFIG_SMP
Jens Axboec7c22e42008-09-13 20:26:01 +0200375 unsigned long val;
376
377 ret = queue_var_store(&val, page, count);
Dave Reisnerb1f3b642012-09-08 11:55:45 -0400378 if (ret < 0)
379 return ret;
380
Eric Seppanene8037d42011-08-23 21:25:12 +0200381 if (val == 2) {
Christoph Hellwig57d74df2018-11-14 17:02:07 +0100382 blk_queue_flag_set(QUEUE_FLAG_SAME_COMP, q);
383 blk_queue_flag_set(QUEUE_FLAG_SAME_FORCE, q);
Eric Seppanene8037d42011-08-23 21:25:12 +0200384 } else if (val == 1) {
Christoph Hellwig57d74df2018-11-14 17:02:07 +0100385 blk_queue_flag_set(QUEUE_FLAG_SAME_COMP, q);
386 blk_queue_flag_clear(QUEUE_FLAG_SAME_FORCE, q);
Eric Seppanene8037d42011-08-23 21:25:12 +0200387 } else if (val == 0) {
Christoph Hellwig57d74df2018-11-14 17:02:07 +0100388 blk_queue_flag_clear(QUEUE_FLAG_SAME_COMP, q);
389 blk_queue_flag_clear(QUEUE_FLAG_SAME_FORCE, q);
Dan Williams5757a6d2011-07-23 20:44:25 +0200390 }
Jens Axboec7c22e42008-09-13 20:26:01 +0200391#endif
392 return ret;
393}
Jens Axboe8324aa92008-01-29 14:51:59 +0100394
Jens Axboe06426ad2016-11-14 13:01:59 -0700395static ssize_t queue_poll_delay_show(struct request_queue *q, char *page)
396{
Jens Axboe64f1c212016-11-14 13:03:03 -0700397 int val;
398
Yufen Yu29ece8b2019-03-18 22:44:41 +0800399 if (q->poll_nsec == BLK_MQ_POLL_CLASSIC)
400 val = BLK_MQ_POLL_CLASSIC;
Jens Axboe64f1c212016-11-14 13:03:03 -0700401 else
402 val = q->poll_nsec / 1000;
403
404 return sprintf(page, "%d\n", val);
Jens Axboe06426ad2016-11-14 13:01:59 -0700405}
406
407static ssize_t queue_poll_delay_store(struct request_queue *q, const char *page,
408 size_t count)
409{
Jens Axboe64f1c212016-11-14 13:03:03 -0700410 int err, val;
Jens Axboe06426ad2016-11-14 13:01:59 -0700411
412 if (!q->mq_ops || !q->mq_ops->poll)
413 return -EINVAL;
414
Jens Axboe64f1c212016-11-14 13:03:03 -0700415 err = kstrtoint(page, 10, &val);
416 if (err < 0)
417 return err;
Jens Axboe06426ad2016-11-14 13:01:59 -0700418
Yufen Yu29ece8b2019-03-18 22:44:41 +0800419 if (val == BLK_MQ_POLL_CLASSIC)
420 q->poll_nsec = BLK_MQ_POLL_CLASSIC;
421 else if (val >= 0)
Jens Axboe64f1c212016-11-14 13:03:03 -0700422 q->poll_nsec = val * 1000;
Yufen Yu29ece8b2019-03-18 22:44:41 +0800423 else
424 return -EINVAL;
Jens Axboe64f1c212016-11-14 13:03:03 -0700425
426 return count;
Jens Axboe06426ad2016-11-14 13:01:59 -0700427}
428
Jens Axboe05229beed2015-11-05 10:44:55 -0700429static ssize_t queue_poll_show(struct request_queue *q, char *page)
430{
431 return queue_var_show(test_bit(QUEUE_FLAG_POLL, &q->queue_flags), page);
432}
433
434static ssize_t queue_poll_store(struct request_queue *q, const char *page,
435 size_t count)
436{
Christoph Hellwiga614dd22021-10-12 13:12:25 +0200437 if (!test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
Jens Axboe05229beed2015-11-05 10:44:55 -0700438 return -EINVAL;
Christoph Hellwiga614dd22021-10-12 13:12:25 +0200439 pr_info_ratelimited("writes to the poll attribute are ignored.\n");
440 pr_info_ratelimited("please use driver specific parameters instead.\n");
441 return count;
Jens Axboe05229beed2015-11-05 10:44:55 -0700442}
443
Weiping Zhang65cd1d12018-11-29 00:04:39 +0800444static ssize_t queue_io_timeout_show(struct request_queue *q, char *page)
445{
446 return sprintf(page, "%u\n", jiffies_to_msecs(q->rq_timeout));
447}
448
449static ssize_t queue_io_timeout_store(struct request_queue *q, const char *page,
450 size_t count)
451{
452 unsigned int val;
453 int err;
454
455 err = kstrtou32(page, 10, &val);
456 if (err || val == 0)
457 return -EINVAL;
458
459 blk_queue_rq_timeout(q, msecs_to_jiffies(val));
460
461 return count;
462}
463
Jens Axboe87760e52016-11-09 12:38:14 -0700464static ssize_t queue_wb_lat_show(struct request_queue *q, char *page)
465{
Josef Bacika7905042018-07-03 09:32:35 -0600466 if (!wbt_rq_qos(q))
Jens Axboe87760e52016-11-09 12:38:14 -0700467 return -EINVAL;
468
Josef Bacika7905042018-07-03 09:32:35 -0600469 return sprintf(page, "%llu\n", div_u64(wbt_get_min_lat(q), 1000));
Jens Axboe87760e52016-11-09 12:38:14 -0700470}
471
472static ssize_t queue_wb_lat_store(struct request_queue *q, const char *page,
473 size_t count)
474{
Josef Bacika7905042018-07-03 09:32:35 -0600475 struct rq_qos *rqos;
Jens Axboe87760e52016-11-09 12:38:14 -0700476 ssize_t ret;
Jens Axboe80e091d2016-11-28 09:22:47 -0700477 s64 val;
Jens Axboe87760e52016-11-09 12:38:14 -0700478
Jens Axboe87760e52016-11-09 12:38:14 -0700479 ret = queue_var_store64(&val, page);
480 if (ret < 0)
481 return ret;
Jens Axboed62118b2016-11-28 09:40:34 -0700482 if (val < -1)
483 return -EINVAL;
484
Josef Bacika7905042018-07-03 09:32:35 -0600485 rqos = wbt_rq_qos(q);
486 if (!rqos) {
Jens Axboed62118b2016-11-28 09:40:34 -0700487 ret = wbt_init(q);
488 if (ret)
489 return ret;
Jens Axboed62118b2016-11-28 09:40:34 -0700490 }
Jens Axboe87760e52016-11-09 12:38:14 -0700491
Jens Axboe80e091d2016-11-28 09:22:47 -0700492 if (val == -1)
Josef Bacika7905042018-07-03 09:32:35 -0600493 val = wbt_default_latency_nsec(q);
Jens Axboe80e091d2016-11-28 09:22:47 -0700494 else if (val >= 0)
Josef Bacika7905042018-07-03 09:32:35 -0600495 val *= 1000ULL;
Jens Axboed62118b2016-11-28 09:40:34 -0700496
Aleksei Zakharovb7143fe2019-02-11 13:10:34 +0300497 if (wbt_get_min_lat(q) == val)
498 return count;
499
Jens Axboec1253112018-08-23 09:34:46 -0600500 /*
501 * Ensure that the queue is idled, in case the latency update
502 * ends up either enabling or disabling wbt completely. We can't
503 * have IO inflight if that happens.
504 */
Jens Axboea1ce35f2018-10-29 10:23:51 -0600505 blk_mq_freeze_queue(q);
506 blk_mq_quiesce_queue(q);
Jens Axboe80e091d2016-11-28 09:22:47 -0700507
Jens Axboec1253112018-08-23 09:34:46 -0600508 wbt_set_min_lat(q, val);
Jens Axboec1253112018-08-23 09:34:46 -0600509
Jens Axboea1ce35f2018-10-29 10:23:51 -0600510 blk_mq_unquiesce_queue(q);
511 blk_mq_unfreeze_queue(q);
Jens Axboec1253112018-08-23 09:34:46 -0600512
Jens Axboe87760e52016-11-09 12:38:14 -0700513 return count;
514}
515
Jens Axboe93e9d8e2016-04-12 12:32:46 -0600516static ssize_t queue_wc_show(struct request_queue *q, char *page)
517{
518 if (test_bit(QUEUE_FLAG_WC, &q->queue_flags))
519 return sprintf(page, "write back\n");
520
521 return sprintf(page, "write through\n");
522}
523
524static ssize_t queue_wc_store(struct request_queue *q, const char *page,
525 size_t count)
526{
527 int set = -1;
528
529 if (!strncmp(page, "write back", 10))
530 set = 1;
531 else if (!strncmp(page, "write through", 13) ||
532 !strncmp(page, "none", 4))
533 set = 0;
534
535 if (set == -1)
536 return -EINVAL;
537
Jens Axboe93e9d8e2016-04-12 12:32:46 -0600538 if (set)
Bart Van Assche8814ce82018-03-07 17:10:04 -0800539 blk_queue_flag_set(QUEUE_FLAG_WC, q);
Jens Axboe93e9d8e2016-04-12 12:32:46 -0600540 else
Bart Van Assche8814ce82018-03-07 17:10:04 -0800541 blk_queue_flag_clear(QUEUE_FLAG_WC, q);
Jens Axboe93e9d8e2016-04-12 12:32:46 -0600542
543 return count;
544}
545
Kent Overstreet6fcefbe2018-05-08 21:33:58 -0400546static ssize_t queue_fua_show(struct request_queue *q, char *page)
547{
548 return sprintf(page, "%u\n", test_bit(QUEUE_FLAG_FUA, &q->queue_flags));
549}
550
Yigal Kormanea6ca602016-06-23 17:05:51 -0400551static ssize_t queue_dax_show(struct request_queue *q, char *page)
552{
553 return queue_var_show(blk_queue_dax(q), page);
554}
555
Christoph Hellwig35626142020-09-03 08:07:00 +0200556#define QUEUE_RO_ENTRY(_prefix, _name) \
557static struct queue_sysfs_entry _prefix##_entry = { \
558 .attr = { .name = _name, .mode = 0444 }, \
559 .show = _prefix##_show, \
Jens Axboe8324aa92008-01-29 14:51:59 +0100560};
561
Christoph Hellwig35626142020-09-03 08:07:00 +0200562#define QUEUE_RW_ENTRY(_prefix, _name) \
563static struct queue_sysfs_entry _prefix##_entry = { \
564 .attr = { .name = _name, .mode = 0644 }, \
565 .show = _prefix##_show, \
566 .store = _prefix##_store, \
Jens Axboe8324aa92008-01-29 14:51:59 +0100567};
568
Christoph Hellwig35626142020-09-03 08:07:00 +0200569QUEUE_RW_ENTRY(queue_requests, "nr_requests");
570QUEUE_RW_ENTRY(queue_ra, "read_ahead_kb");
571QUEUE_RW_ENTRY(queue_max_sectors, "max_sectors_kb");
572QUEUE_RO_ENTRY(queue_max_hw_sectors, "max_hw_sectors_kb");
573QUEUE_RO_ENTRY(queue_max_segments, "max_segments");
574QUEUE_RO_ENTRY(queue_max_integrity_segments, "max_integrity_segments");
575QUEUE_RO_ENTRY(queue_max_segment_size, "max_segment_size");
576QUEUE_RW_ENTRY(elv_iosched, "scheduler");
Jens Axboe8324aa92008-01-29 14:51:59 +0100577
Christoph Hellwig35626142020-09-03 08:07:00 +0200578QUEUE_RO_ENTRY(queue_logical_block_size, "logical_block_size");
579QUEUE_RO_ENTRY(queue_physical_block_size, "physical_block_size");
580QUEUE_RO_ENTRY(queue_chunk_sectors, "chunk_sectors");
581QUEUE_RO_ENTRY(queue_io_min, "minimum_io_size");
582QUEUE_RO_ENTRY(queue_io_opt, "optimal_io_size");
Jens Axboe8324aa92008-01-29 14:51:59 +0100583
Christoph Hellwig35626142020-09-03 08:07:00 +0200584QUEUE_RO_ENTRY(queue_max_discard_segments, "max_discard_segments");
585QUEUE_RO_ENTRY(queue_discard_granularity, "discard_granularity");
586QUEUE_RO_ENTRY(queue_discard_max_hw, "discard_max_hw_bytes");
587QUEUE_RW_ENTRY(queue_discard_max, "discard_max_bytes");
588QUEUE_RO_ENTRY(queue_discard_zeroes_data, "discard_zeroes_data");
Martin K. Petersenc77a5712010-03-10 00:48:33 -0500589
Christoph Hellwig35626142020-09-03 08:07:00 +0200590QUEUE_RO_ENTRY(queue_write_same_max, "write_same_max_bytes");
591QUEUE_RO_ENTRY(queue_write_zeroes_max, "write_zeroes_max_bytes");
592QUEUE_RO_ENTRY(queue_zone_append_max, "zone_append_max_bytes");
Damien Le Moala805a4f2021-01-28 13:47:30 +0900593QUEUE_RO_ENTRY(queue_zone_write_granularity, "zone_write_granularity");
Christoph Hellwig1e739732017-02-08 14:46:49 +0100594
Christoph Hellwig35626142020-09-03 08:07:00 +0200595QUEUE_RO_ENTRY(queue_zoned, "zoned");
596QUEUE_RO_ENTRY(queue_nr_zones, "nr_zones");
597QUEUE_RO_ENTRY(queue_max_open_zones, "max_open_zones");
598QUEUE_RO_ENTRY(queue_max_active_zones, "max_active_zones");
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200599
Christoph Hellwig35626142020-09-03 08:07:00 +0200600QUEUE_RW_ENTRY(queue_nomerges, "nomerges");
601QUEUE_RW_ENTRY(queue_rq_affinity, "rq_affinity");
602QUEUE_RW_ENTRY(queue_poll, "io_poll");
603QUEUE_RW_ENTRY(queue_poll_delay, "io_poll_delay");
604QUEUE_RW_ENTRY(queue_wc, "write_cache");
605QUEUE_RO_ENTRY(queue_fua, "fua");
606QUEUE_RO_ENTRY(queue_dax, "dax");
607QUEUE_RW_ENTRY(queue_io_timeout, "io_timeout");
608QUEUE_RW_ENTRY(queue_wb_lat, "wbt_lat_usec");
Max Gurtovoy28af7422021-04-05 13:20:12 +0000609QUEUE_RO_ENTRY(queue_virt_boundary_mask, "virt_boundary_mask");
Martin K. Petersenc77a5712010-03-10 00:48:33 -0500610
Christoph Hellwig35626142020-09-03 08:07:00 +0200611#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
612QUEUE_RW_ENTRY(blk_throtl_sample_time, "throttle_sample_time");
613#endif
Jens Axboe8324aa92008-01-29 14:51:59 +0100614
Christoph Hellwig35626142020-09-03 08:07:00 +0200615/* legacy alias for logical_block_size: */
Martin K. Petersene68b9032008-01-29 19:14:08 +0100616static struct queue_sysfs_entry queue_hw_sector_size_entry = {
Joe Perches5657a812018-05-24 13:38:59 -0600617 .attr = {.name = "hw_sector_size", .mode = 0444 },
Martin K. Petersene1defc42009-05-22 17:17:49 -0400618 .show = queue_logical_block_size_show,
619};
620
Christoph Hellwigfc93fe12020-09-03 08:07:01 +0200621QUEUE_RW_ENTRY(queue_nonrot, "rotational");
622QUEUE_RW_ENTRY(queue_iostats, "iostats");
623QUEUE_RW_ENTRY(queue_random, "add_random");
Christoph Hellwig1cb039f2020-09-24 08:51:38 +0200624QUEUE_RW_ENTRY(queue_stable_writes, "stable_writes");
Jens Axboee2e1a142010-06-09 10:42:09 +0200625
Weiping Zhang4d253392019-04-02 21:14:30 +0800626static struct attribute *queue_attrs[] = {
Jens Axboe8324aa92008-01-29 14:51:59 +0100627 &queue_requests_entry.attr,
628 &queue_ra_entry.attr,
629 &queue_max_hw_sectors_entry.attr,
630 &queue_max_sectors_entry.attr,
Martin K. Petersenc77a5712010-03-10 00:48:33 -0500631 &queue_max_segments_entry.attr,
Christoph Hellwig1e739732017-02-08 14:46:49 +0100632 &queue_max_discard_segments_entry.attr,
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200633 &queue_max_integrity_segments_entry.attr,
Martin K. Petersenc77a5712010-03-10 00:48:33 -0500634 &queue_max_segment_size_entry.attr,
Christoph Hellwig35626142020-09-03 08:07:00 +0200635 &elv_iosched_entry.attr,
Martin K. Petersene68b9032008-01-29 19:14:08 +0100636 &queue_hw_sector_size_entry.attr,
Martin K. Petersene1defc42009-05-22 17:17:49 -0400637 &queue_logical_block_size_entry.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400638 &queue_physical_block_size_entry.attr,
Hannes Reinecke87caf972016-10-18 15:40:30 +0900639 &queue_chunk_sectors_entry.attr,
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400640 &queue_io_min_entry.attr,
641 &queue_io_opt_entry.attr,
Martin K. Petersen86b37282009-11-10 11:50:21 +0100642 &queue_discard_granularity_entry.attr,
643 &queue_discard_max_entry.attr,
Jens Axboe0034af02015-07-16 09:14:26 -0600644 &queue_discard_max_hw_entry.attr,
Martin K. Petersen98262f22009-12-03 09:24:48 +0100645 &queue_discard_zeroes_data_entry.attr,
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400646 &queue_write_same_max_entry.attr,
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800647 &queue_write_zeroes_max_entry.attr,
Keith Busch0512a752020-05-12 17:55:47 +0900648 &queue_zone_append_max_entry.attr,
Damien Le Moala805a4f2021-01-28 13:47:30 +0900649 &queue_zone_write_granularity_entry.attr,
Bartlomiej Zolnierkiewicz1308835f2009-01-07 12:22:39 +0100650 &queue_nonrot_entry.attr,
Damien Le Moal797476b2016-10-18 15:40:29 +0900651 &queue_zoned_entry.attr,
Damien Le Moal965b6522018-10-12 19:08:48 +0900652 &queue_nr_zones_entry.attr,
Niklas Cassele15864f2020-07-14 23:18:23 +0200653 &queue_max_open_zones_entry.attr,
Niklas Cassel659bf822020-07-14 23:18:24 +0200654 &queue_max_active_zones_entry.attr,
Alan D. Brunelleac9fafa2008-04-29 14:44:19 +0200655 &queue_nomerges_entry.attr,
Jens Axboec7c22e42008-09-13 20:26:01 +0200656 &queue_rq_affinity_entry.attr,
Jens Axboebc58ba92009-01-23 10:54:44 +0100657 &queue_iostats_entry.attr,
Christoph Hellwig1cb039f2020-09-24 08:51:38 +0200658 &queue_stable_writes_entry.attr,
Jens Axboee2e1a142010-06-09 10:42:09 +0200659 &queue_random_entry.attr,
Jens Axboe05229beed2015-11-05 10:44:55 -0700660 &queue_poll_entry.attr,
Jens Axboe93e9d8e2016-04-12 12:32:46 -0600661 &queue_wc_entry.attr,
Kent Overstreet6fcefbe2018-05-08 21:33:58 -0400662 &queue_fua_entry.attr,
Yigal Kormanea6ca602016-06-23 17:05:51 -0400663 &queue_dax_entry.attr,
Jens Axboe87760e52016-11-09 12:38:14 -0700664 &queue_wb_lat_entry.attr,
Jens Axboe06426ad2016-11-14 13:01:59 -0700665 &queue_poll_delay_entry.attr,
Weiping Zhang65cd1d12018-11-29 00:04:39 +0800666 &queue_io_timeout_entry.attr,
Shaohua Li297e3d82017-03-27 10:51:37 -0700667#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Christoph Hellwig35626142020-09-03 08:07:00 +0200668 &blk_throtl_sample_time_entry.attr,
Shaohua Li297e3d82017-03-27 10:51:37 -0700669#endif
Max Gurtovoy28af7422021-04-05 13:20:12 +0000670 &queue_virt_boundary_mask_entry.attr,
Jens Axboe8324aa92008-01-29 14:51:59 +0100671 NULL,
672};
673
Weiping Zhang4d253392019-04-02 21:14:30 +0800674static umode_t queue_attr_visible(struct kobject *kobj, struct attribute *attr,
675 int n)
676{
677 struct request_queue *q =
678 container_of(kobj, struct request_queue, kobj);
679
680 if (attr == &queue_io_timeout_entry.attr &&
681 (!q->mq_ops || !q->mq_ops->timeout))
682 return 0;
683
Niklas Cassel659bf822020-07-14 23:18:24 +0200684 if ((attr == &queue_max_open_zones_entry.attr ||
685 attr == &queue_max_active_zones_entry.attr) &&
Niklas Cassele15864f2020-07-14 23:18:23 +0200686 !blk_queue_is_zoned(q))
687 return 0;
688
Weiping Zhang4d253392019-04-02 21:14:30 +0800689 return attr->mode;
690}
691
692static struct attribute_group queue_attr_group = {
693 .attrs = queue_attrs,
694 .is_visible = queue_attr_visible,
695};
696
697
Jens Axboe8324aa92008-01-29 14:51:59 +0100698#define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr)
699
700static ssize_t
701queue_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
702{
703 struct queue_sysfs_entry *entry = to_queue(attr);
704 struct request_queue *q =
705 container_of(kobj, struct request_queue, kobj);
706 ssize_t res;
707
708 if (!entry->show)
709 return -EIO;
710 mutex_lock(&q->sysfs_lock);
Jens Axboe8324aa92008-01-29 14:51:59 +0100711 res = entry->show(q, page);
712 mutex_unlock(&q->sysfs_lock);
713 return res;
714}
715
716static ssize_t
717queue_attr_store(struct kobject *kobj, struct attribute *attr,
718 const char *page, size_t length)
719{
720 struct queue_sysfs_entry *entry = to_queue(attr);
Jens Axboe6728cb02008-01-31 13:03:55 +0100721 struct request_queue *q;
Jens Axboe8324aa92008-01-29 14:51:59 +0100722 ssize_t res;
723
724 if (!entry->store)
725 return -EIO;
Jens Axboe6728cb02008-01-31 13:03:55 +0100726
727 q = container_of(kobj, struct request_queue, kobj);
Jens Axboe8324aa92008-01-29 14:51:59 +0100728 mutex_lock(&q->sysfs_lock);
Jens Axboe8324aa92008-01-29 14:51:59 +0100729 res = entry->store(q, page, length);
730 mutex_unlock(&q->sysfs_lock);
731 return res;
732}
733
Tejun Heo548bc8e2013-01-09 08:05:13 -0800734static void blk_free_queue_rcu(struct rcu_head *rcu_head)
735{
736 struct request_queue *q = container_of(rcu_head, struct request_queue,
737 rcu_head);
Ming Lei704b9142021-12-03 21:15:32 +0800738
739 kmem_cache_free(blk_get_queue_kmem_cache(blk_queue_has_srcu(q)), q);
Tejun Heo548bc8e2013-01-09 08:05:13 -0800740}
741
Ming Lei47cdee22019-05-15 11:03:08 +0800742/* Unconfigure the I/O scheduler and dissociate from the cgroup controller. */
743static void blk_exit_queue(struct request_queue *q)
744{
745 /*
746 * Since the I/O scheduler exit code may access cgroup information,
747 * perform I/O scheduler exit before disassociating from the block
748 * cgroup controller.
749 */
750 if (q->elevator) {
751 ioc_clear_queue(q);
Christoph Hellwig0c6cb3a2021-11-23 19:53:07 +0100752 elevator_exit(q);
Ming Lei47cdee22019-05-15 11:03:08 +0800753 }
754
755 /*
756 * Remove all references to @q from the block cgroup controller before
757 * restoring @q->queue_lock to avoid that restoring this pointer causes
758 * e.g. blkcg_print_blkgs() to crash.
759 */
760 blkcg_exit_queue(q);
Ming Lei47cdee22019-05-15 11:03:08 +0800761}
762
Jens Axboe8324aa92008-01-29 14:51:59 +0100763/**
Luis Chamberlaine8c7d142020-06-19 20:47:25 +0000764 * blk_release_queue - releases all allocated resources of the request_queue
765 * @kobj: pointer to a kobject, whose container is a request_queue
Jens Axboe8324aa92008-01-29 14:51:59 +0100766 *
Luis Chamberlaine8c7d142020-06-19 20:47:25 +0000767 * This function releases all allocated resources of the request queue.
768 *
769 * The struct request_queue refcount is incremented with blk_get_queue() and
770 * decremented with blk_put_queue(). Once the refcount reaches 0 this function
771 * is called.
772 *
773 * For drivers that have a request_queue on a gendisk and added with
774 * __device_add_disk() the refcount to request_queue will reach 0 with
775 * the last put_disk() called by the driver. For drivers which don't use
776 * __device_add_disk() this happens with blk_cleanup_queue().
777 *
778 * Drivers exist which depend on the release of the request_queue to be
779 * synchronous, it should not be deferred.
780 *
781 * Context: can sleep
Bart Van Asschedc9edc42017-06-14 13:27:50 -0600782 */
Luis Chamberlaine8c7d142020-06-19 20:47:25 +0000783static void blk_release_queue(struct kobject *kobj)
Jens Axboe8324aa92008-01-29 14:51:59 +0100784{
Luis Chamberlaine8c7d142020-06-19 20:47:25 +0000785 struct request_queue *q =
786 container_of(kobj, struct request_queue, kobj);
787
788 might_sleep();
Jens Axboe8324aa92008-01-29 14:51:59 +0100789
Jens Axboe48b5c1f2021-11-13 14:03:26 -0700790 if (q->poll_stat)
Omar Sandoval34dbad52017-03-21 08:56:08 -0700791 blk_stat_remove_callback(q, q->poll_cb);
792 blk_stat_free_callback(q->poll_cb);
Hannes Reinecke777eb1b2011-09-28 08:07:01 -0600793
Ming Lei37e11c32021-12-21 12:04:36 +0800794 blk_exit_queue(q);
795
Omar Sandoval34dbad52017-03-21 08:56:08 -0700796 blk_free_queue_stats(q->stats);
Jens Axboe48b5c1f2021-11-13 14:03:26 -0700797 kfree(q->poll_stat);
Omar Sandoval34dbad52017-03-21 08:56:08 -0700798
Damien Le Moalbf505452018-10-12 19:08:50 +0900799 blk_queue_free_zone_bitmaps(q);
800
Jens Axboe344e9ff2018-11-15 12:22:51 -0700801 if (queue_is_mq(q))
Ming Leie09aae72015-01-29 20:17:27 +0800802 blk_mq_release(q);
Christoph Hellwig18741982014-02-10 09:29:00 -0700803
Jens Axboe8324aa92008-01-29 14:51:59 +0100804 blk_trace_shutdown(q);
Luis Chamberlain85e0cbb2020-06-19 20:47:30 +0000805 mutex_lock(&q->debugfs_mutex);
806 debugfs_remove_recursive(q->debugfs_dir);
807 mutex_unlock(&q->debugfs_mutex);
Jens Axboe8324aa92008-01-29 14:51:59 +0100808
Jens Axboe344e9ff2018-11-15 12:22:51 -0700809 if (queue_is_mq(q))
Omar Sandoval62ebce162017-01-31 14:53:21 -0800810 blk_mq_debugfs_unregister(q);
811
Kent Overstreet338aa962018-05-20 18:25:47 -0400812 bioset_exit(&q->bio_split);
Kent Overstreet54efd502015-04-23 22:37:18 -0700813
Ming Lei850fd2a2022-01-11 20:34:01 +0800814 if (blk_queue_has_srcu(q))
815 cleanup_srcu_struct(q->srcu);
816
Tejun Heoa73f7302011-12-14 00:33:37 +0100817 ida_simple_remove(&blk_queue_ida, q->id);
Tejun Heo548bc8e2013-01-09 08:05:13 -0800818 call_rcu(&q->rcu_head, blk_free_queue_rcu);
Jens Axboe8324aa92008-01-29 14:51:59 +0100819}
820
Emese Revfy52cf25d2010-01-19 02:58:23 +0100821static const struct sysfs_ops queue_sysfs_ops = {
Jens Axboe8324aa92008-01-29 14:51:59 +0100822 .show = queue_attr_show,
823 .store = queue_attr_store,
824};
825
826struct kobj_type blk_queue_ktype = {
827 .sysfs_ops = &queue_sysfs_ops,
Jens Axboe8324aa92008-01-29 14:51:59 +0100828 .release = blk_release_queue,
829};
830
Bart Van Assche2c2086a2018-01-17 11:48:10 -0800831/**
832 * blk_register_queue - register a block layer queue with sysfs
833 * @disk: Disk of which the request queue should be registered with sysfs.
834 */
Jens Axboe8324aa92008-01-29 14:51:59 +0100835int blk_register_queue(struct gendisk *disk)
836{
837 int ret;
Li Zefan1d54ad62009-04-14 14:00:05 +0800838 struct device *dev = disk_to_dev(disk);
Jens Axboe8324aa92008-01-29 14:51:59 +0100839 struct request_queue *q = disk->queue;
840
Li Zefan1d54ad62009-04-14 14:00:05 +0800841 ret = blk_trace_init_sysfs(dev);
842 if (ret)
843 return ret;
844
Ming Leicecf5d82019-08-27 19:01:48 +0800845 mutex_lock(&q->sysfs_dir_lock);
Tahsin Erdoganb410aff2017-02-14 19:27:38 -0800846
Linus Torvaldsc9059592009-06-11 10:52:27 -0700847 ret = kobject_add(&q->kobj, kobject_get(&dev->kobj), "%s", "queue");
Liu Yuaned5302d2011-04-19 13:47:58 +0200848 if (ret < 0) {
849 blk_trace_remove_sysfs(dev);
Tahsin Erdoganb410aff2017-02-14 19:27:38 -0800850 goto unlock;
Liu Yuaned5302d2011-04-19 13:47:58 +0200851 }
Jens Axboe8324aa92008-01-29 14:51:59 +0100852
Weiping Zhang4d253392019-04-02 21:14:30 +0800853 ret = sysfs_create_group(&q->kobj, &queue_attr_group);
854 if (ret) {
855 blk_trace_remove_sysfs(dev);
856 kobject_del(&q->kobj);
857 kobject_put(&dev->kobj);
858 goto unlock;
859 }
860
Luis Chamberlain85e0cbb2020-06-19 20:47:30 +0000861 mutex_lock(&q->debugfs_mutex);
862 q->debugfs_dir = debugfs_create_dir(kobject_name(q->kobj.parent),
863 blk_debugfs_root);
864 mutex_unlock(&q->debugfs_mutex);
865
Jens Axboe344e9ff2018-11-15 12:22:51 -0700866 if (queue_is_mq(q)) {
Bart Van Assche2d0364c2017-04-26 13:47:48 -0700867 __blk_mq_register_dev(dev, q);
Bart Van Asschea8ecdd72017-05-25 16:38:06 -0700868 blk_mq_debugfs_register(q);
869 }
Omar Sandoval9c1051a2017-05-04 08:17:21 -0600870
Ming Leib89f6252019-09-23 23:12:09 +0800871 mutex_lock(&q->sysfs_lock);
Damien Le Moala2247f12021-10-27 11:22:19 +0900872
873 ret = disk_register_independent_access_ranges(disk, NULL);
874 if (ret)
875 goto put_dev;
876
Jens Axboe344e9ff2018-11-15 12:22:51 -0700877 if (q->elevator) {
Ming Leicecf5d82019-08-27 19:01:48 +0800878 ret = elv_register_queue(q, false);
Damien Le Moala2247f12021-10-27 11:22:19 +0900879 if (ret)
880 goto put_dev;
Jens Axboe8324aa92008-01-29 14:51:59 +0100881 }
Ming Leicecf5d82019-08-27 19:01:48 +0800882
Ming Leicecf5d82019-08-27 19:01:48 +0800883 blk_queue_flag_set(QUEUE_FLAG_REGISTERED, q);
884 wbt_enable_default(q);
885 blk_throtl_register_queue(q);
886
887 /* Now everything is ready and send out KOBJ_ADD uevent */
888 kobject_uevent(&q->kobj, KOBJ_ADD);
Yufen Yu05468582020-10-08 23:26:32 -0400889 if (q->elevator)
Ming Leicecf5d82019-08-27 19:01:48 +0800890 kobject_uevent(&q->elevator->kobj, KOBJ_ADD);
891 mutex_unlock(&q->sysfs_lock);
892
Tahsin Erdoganb410aff2017-02-14 19:27:38 -0800893unlock:
Ming Leicecf5d82019-08-27 19:01:48 +0800894 mutex_unlock(&q->sysfs_dir_lock);
Ming Leia72c3742021-06-09 09:58:22 +0800895
896 /*
897 * SCSI probing may synchronously create and destroy a lot of
898 * request_queues for non-existent devices. Shutting down a fully
899 * functional queue takes measureable wallclock time as RCU grace
900 * periods are involved. To avoid excessive latency in these
901 * cases, a request_queue starts out in a degraded mode which is
902 * faster to shut down and is made fully functional here as
903 * request_queues for non-existent devices never get registered.
904 */
905 if (!blk_queue_init_done(q)) {
906 blk_queue_flag_set(QUEUE_FLAG_INIT_DONE, q);
907 percpu_ref_switch_to_percpu(&q->q_usage_counter);
908 }
909
Tahsin Erdoganb410aff2017-02-14 19:27:38 -0800910 return ret;
Damien Le Moala2247f12021-10-27 11:22:19 +0900911
912put_dev:
913 disk_unregister_independent_access_ranges(disk);
914 mutex_unlock(&q->sysfs_lock);
915 mutex_unlock(&q->sysfs_dir_lock);
916 kobject_del(&q->kobj);
917 blk_trace_remove_sysfs(dev);
918 kobject_put(&dev->kobj);
919
920 return ret;
Jens Axboe8324aa92008-01-29 14:51:59 +0100921}
922
Bart Van Assche2c2086a2018-01-17 11:48:10 -0800923/**
924 * blk_unregister_queue - counterpart of blk_register_queue()
925 * @disk: Disk of which the request queue should be unregistered from sysfs.
926 *
927 * Note: the caller is responsible for guaranteeing that this function is called
928 * after blk_register_queue() has finished.
929 */
Jens Axboe8324aa92008-01-29 14:51:59 +0100930void blk_unregister_queue(struct gendisk *disk)
931{
932 struct request_queue *q = disk->queue;
933
Akinobu Mitafb199742008-04-21 09:51:06 +0200934 if (WARN_ON(!q))
935 return;
936
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500937 /* Return early if disk->queue was never registered. */
Ming Lei58c898b2019-08-27 19:01:47 +0800938 if (!blk_queue_registered(q))
Mike Snitzerfa70d2e2018-01-08 22:01:13 -0500939 return;
940
Mike Snitzer667257e2018-01-11 14:11:01 -0500941 /*
Bart Van Assche2c2086a2018-01-17 11:48:10 -0800942 * Since sysfs_remove_dir() prevents adding new directory entries
943 * before removal of existing entries starts, protect against
944 * concurrent elv_iosched_store() calls.
Mike Snitzer667257e2018-01-11 14:11:01 -0500945 */
David Jefferye9a823f2017-08-28 10:52:44 -0600946 mutex_lock(&q->sysfs_lock);
Bart Van Assche8814ce82018-03-07 17:10:04 -0800947 blk_queue_flag_clear(QUEUE_FLAG_REGISTERED, q);
Ming Leicecf5d82019-08-27 19:01:48 +0800948 mutex_unlock(&q->sysfs_lock);
Omar Sandoval334335d2017-03-28 16:12:15 -0700949
Ming Leicecf5d82019-08-27 19:01:48 +0800950 mutex_lock(&q->sysfs_dir_lock);
Bart Van Assche2c2086a2018-01-17 11:48:10 -0800951 /*
952 * Remove the sysfs attributes before unregistering the queue data
953 * structures that can be modified through sysfs.
954 */
Jens Axboe344e9ff2018-11-15 12:22:51 -0700955 if (queue_is_mq(q))
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200956 blk_mq_unregister_dev(disk_to_dev(disk), q);
Jens Axboe8324aa92008-01-29 14:51:59 +0100957
Zdenek Kabelac48c0d4d2009-09-25 06:19:26 +0200958 kobject_uevent(&q->kobj, KOBJ_REMOVE);
959 kobject_del(&q->kobj);
960 blk_trace_remove_sysfs(disk_to_dev(disk));
Mike Snitzer667257e2018-01-11 14:11:01 -0500961
Ming Leib89f6252019-09-23 23:12:09 +0800962 mutex_lock(&q->sysfs_lock);
Jens Axboe344e9ff2018-11-15 12:22:51 -0700963 if (q->elevator)
Bart Van Assche2c2086a2018-01-17 11:48:10 -0800964 elv_unregister_queue(q);
Damien Le Moala2247f12021-10-27 11:22:19 +0900965 disk_unregister_independent_access_ranges(disk);
Ming Leib89f6252019-09-23 23:12:09 +0800966 mutex_unlock(&q->sysfs_lock);
Ming Leicecf5d82019-08-27 19:01:48 +0800967 mutex_unlock(&q->sysfs_dir_lock);
Bart Van Assche2c2086a2018-01-17 11:48:10 -0800968
969 kobject_put(&disk_to_dev(disk)->kobj);
Jens Axboe8324aa92008-01-29 14:51:59 +0100970}