]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - block/blk-sysfs.c
UBUNTU: Ubuntu-4.10.0-37.41
[mirror_ubuntu-zesty-kernel.git] / block / blk-sysfs.c
CommitLineData
8324aa91
JA
1/*
2 * Functions related to sysfs handling
3 */
4#include <linux/kernel.h>
5a0e3ad6 5#include <linux/slab.h>
8324aa91
JA
6#include <linux/module.h>
7#include <linux/bio.h>
8#include <linux/blkdev.h>
66114cad 9#include <linux/backing-dev.h>
8324aa91 10#include <linux/blktrace_api.h>
320ae51f 11#include <linux/blk-mq.h>
eea8f41c 12#include <linux/blk-cgroup.h>
8324aa91
JA
13
14#include "blk.h"
3edcc0ce 15#include "blk-mq.h"
87760e5e 16#include "blk-wbt.h"
8324aa91
JA
17
18struct queue_sysfs_entry {
19 struct attribute attr;
20 ssize_t (*show)(struct request_queue *, char *);
21 ssize_t (*store)(struct request_queue *, const char *, size_t);
22};
23
24static ssize_t
9cb308ce 25queue_var_show(unsigned long var, char *page)
8324aa91 26{
9cb308ce 27 return sprintf(page, "%lu\n", var);
8324aa91
JA
28}
29
30static ssize_t
31queue_var_store(unsigned long *var, const char *page, size_t count)
32{
b1f3b64d
DR
33 int err;
34 unsigned long v;
35
ed751e68 36 err = kstrtoul(page, 10, &v);
b1f3b64d
DR
37 if (err || v > UINT_MAX)
38 return -EINVAL;
39
40 *var = v;
8324aa91 41
8324aa91
JA
42 return count;
43}
44
80e091d1 45static ssize_t queue_var_store64(s64 *var, const char *page)
87760e5e
JA
46{
47 int err;
80e091d1 48 s64 v;
87760e5e 49
80e091d1 50 err = kstrtos64(page, 10, &v);
87760e5e
JA
51 if (err < 0)
52 return err;
53
54 *var = v;
55 return 0;
56}
57
8324aa91
JA
58static ssize_t queue_requests_show(struct request_queue *q, char *page)
59{
60 return queue_var_show(q->nr_requests, (page));
61}
62
63static ssize_t
64queue_requests_store(struct request_queue *q, const char *page, size_t count)
65{
8324aa91 66 unsigned long nr;
e3a2b3f9 67 int ret, err;
b8a9ae77 68
e3a2b3f9 69 if (!q->request_fn && !q->mq_ops)
b8a9ae77
JA
70 return -EINVAL;
71
72 ret = queue_var_store(&nr, page, count);
b1f3b64d
DR
73 if (ret < 0)
74 return ret;
75
8324aa91
JA
76 if (nr < BLKDEV_MIN_RQ)
77 nr = BLKDEV_MIN_RQ;
78
e3a2b3f9
JA
79 if (q->request_fn)
80 err = blk_update_nr_requests(q, nr);
81 else
82 err = blk_mq_update_nr_requests(q, nr);
83
84 if (err)
85 return err;
86
8324aa91
JA
87 return ret;
88}
89
90static ssize_t queue_ra_show(struct request_queue *q, char *page)
91{
9cb308ce 92 unsigned long ra_kb = q->backing_dev_info.ra_pages <<
09cbfeaf 93 (PAGE_SHIFT - 10);
8324aa91
JA
94
95 return queue_var_show(ra_kb, (page));
96}
97
98static ssize_t
99queue_ra_store(struct request_queue *q, const char *page, size_t count)
100{
101 unsigned long ra_kb;
102 ssize_t ret = queue_var_store(&ra_kb, page, count);
103
b1f3b64d
DR
104 if (ret < 0)
105 return ret;
106
09cbfeaf 107 q->backing_dev_info.ra_pages = ra_kb >> (PAGE_SHIFT - 10);
8324aa91
JA
108
109 return ret;
110}
111
112static ssize_t queue_max_sectors_show(struct request_queue *q, char *page)
113{
ae03bf63 114 int max_sectors_kb = queue_max_sectors(q) >> 1;
8324aa91
JA
115
116 return queue_var_show(max_sectors_kb, (page));
117}
118
c77a5710
MP
119static ssize_t queue_max_segments_show(struct request_queue *q, char *page)
120{
121 return queue_var_show(queue_max_segments(q), (page));
122}
123
13f05c8d
MP
124static ssize_t queue_max_integrity_segments_show(struct request_queue *q, char *page)
125{
126 return queue_var_show(q->limits.max_integrity_segments, (page));
127}
128
c77a5710
MP
129static ssize_t queue_max_segment_size_show(struct request_queue *q, char *page)
130{
e692cb66 131 if (blk_queue_cluster(q))
c77a5710
MP
132 return queue_var_show(queue_max_segment_size(q), (page));
133
09cbfeaf 134 return queue_var_show(PAGE_SIZE, (page));
c77a5710
MP
135}
136
e1defc4f 137static ssize_t queue_logical_block_size_show(struct request_queue *q, char *page)
e68b903c 138{
e1defc4f 139 return queue_var_show(queue_logical_block_size(q), page);
e68b903c
MP
140}
141
c72758f3
MP
142static ssize_t queue_physical_block_size_show(struct request_queue *q, char *page)
143{
144 return queue_var_show(queue_physical_block_size(q), page);
145}
146
87caf97c
HR
147static ssize_t queue_chunk_sectors_show(struct request_queue *q, char *page)
148{
149 return queue_var_show(q->limits.chunk_sectors, page);
150}
151
c72758f3
MP
152static ssize_t queue_io_min_show(struct request_queue *q, char *page)
153{
154 return queue_var_show(queue_io_min(q), page);
155}
156
157static ssize_t queue_io_opt_show(struct request_queue *q, char *page)
158{
159 return queue_var_show(queue_io_opt(q), page);
e68b903c
MP
160}
161
86b37281
MP
162static ssize_t queue_discard_granularity_show(struct request_queue *q, char *page)
163{
164 return queue_var_show(q->limits.discard_granularity, page);
165}
166
0034af03
JA
167static ssize_t queue_discard_max_hw_show(struct request_queue *q, char *page)
168{
0034af03 169
18f922d0
A
170 return sprintf(page, "%llu\n",
171 (unsigned long long)q->limits.max_hw_discard_sectors << 9);
0034af03
JA
172}
173
86b37281
MP
174static ssize_t queue_discard_max_show(struct request_queue *q, char *page)
175{
a934a00a
MP
176 return sprintf(page, "%llu\n",
177 (unsigned long long)q->limits.max_discard_sectors << 9);
86b37281
MP
178}
179
0034af03
JA
180static ssize_t queue_discard_max_store(struct request_queue *q,
181 const char *page, size_t count)
182{
183 unsigned long max_discard;
184 ssize_t ret = queue_var_store(&max_discard, page, count);
185
186 if (ret < 0)
187 return ret;
188
189 if (max_discard & (q->limits.discard_granularity - 1))
190 return -EINVAL;
191
192 max_discard >>= 9;
193 if (max_discard > UINT_MAX)
194 return -EINVAL;
195
196 if (max_discard > q->limits.max_hw_discard_sectors)
197 max_discard = q->limits.max_hw_discard_sectors;
198
199 q->limits.max_discard_sectors = max_discard;
200 return ret;
201}
202
98262f27
MP
203static ssize_t queue_discard_zeroes_data_show(struct request_queue *q, char *page)
204{
205 return queue_var_show(queue_discard_zeroes_data(q), page);
206}
207
4363ac7c
MP
208static ssize_t queue_write_same_max_show(struct request_queue *q, char *page)
209{
210 return sprintf(page, "%llu\n",
211 (unsigned long long)q->limits.max_write_same_sectors << 9);
212}
213
a6f0788e
CK
214static ssize_t queue_write_zeroes_max_show(struct request_queue *q, char *page)
215{
216 return sprintf(page, "%llu\n",
217 (unsigned long long)q->limits.max_write_zeroes_sectors << 9);
218}
4363ac7c 219
8324aa91
JA
220static ssize_t
221queue_max_sectors_store(struct request_queue *q, const char *page, size_t count)
222{
223 unsigned long max_sectors_kb,
ae03bf63 224 max_hw_sectors_kb = queue_max_hw_sectors(q) >> 1,
09cbfeaf 225 page_kb = 1 << (PAGE_SHIFT - 10);
8324aa91
JA
226 ssize_t ret = queue_var_store(&max_sectors_kb, page, count);
227
b1f3b64d
DR
228 if (ret < 0)
229 return ret;
230
ca369d51
MP
231 max_hw_sectors_kb = min_not_zero(max_hw_sectors_kb, (unsigned long)
232 q->limits.max_dev_sectors >> 1);
233
8324aa91
JA
234 if (max_sectors_kb > max_hw_sectors_kb || max_sectors_kb < page_kb)
235 return -EINVAL;
7c239517 236
8324aa91 237 spin_lock_irq(q->queue_lock);
c295fc05 238 q->limits.max_sectors = max_sectors_kb << 1;
9491ae4a 239 q->backing_dev_info.io_pages = max_sectors_kb >> (PAGE_SHIFT - 10);
8324aa91
JA
240 spin_unlock_irq(q->queue_lock);
241
242 return ret;
243}
244
245static ssize_t queue_max_hw_sectors_show(struct request_queue *q, char *page)
246{
ae03bf63 247 int max_hw_sectors_kb = queue_max_hw_sectors(q) >> 1;
8324aa91
JA
248
249 return queue_var_show(max_hw_sectors_kb, (page));
250}
251
956bcb7c
JA
252#define QUEUE_SYSFS_BIT_FNS(name, flag, neg) \
253static ssize_t \
254queue_show_##name(struct request_queue *q, char *page) \
255{ \
256 int bit; \
257 bit = test_bit(QUEUE_FLAG_##flag, &q->queue_flags); \
258 return queue_var_show(neg ? !bit : bit, page); \
259} \
260static ssize_t \
261queue_store_##name(struct request_queue *q, const char *page, size_t count) \
262{ \
263 unsigned long val; \
264 ssize_t ret; \
265 ret = queue_var_store(&val, page, count); \
c678ef52
AB
266 if (ret < 0) \
267 return ret; \
956bcb7c
JA
268 if (neg) \
269 val = !val; \
270 \
271 spin_lock_irq(q->queue_lock); \
272 if (val) \
273 queue_flag_set(QUEUE_FLAG_##flag, q); \
274 else \
275 queue_flag_clear(QUEUE_FLAG_##flag, q); \
276 spin_unlock_irq(q->queue_lock); \
277 return ret; \
1308835f
BZ
278}
279
956bcb7c
JA
280QUEUE_SYSFS_BIT_FNS(nonrot, NONROT, 1);
281QUEUE_SYSFS_BIT_FNS(random, ADD_RANDOM, 0);
282QUEUE_SYSFS_BIT_FNS(iostats, IO_STAT, 0);
283#undef QUEUE_SYSFS_BIT_FNS
1308835f 284
797476b8
DLM
285static ssize_t queue_zoned_show(struct request_queue *q, char *page)
286{
287 switch (blk_queue_zoned_model(q)) {
288 case BLK_ZONED_HA:
289 return sprintf(page, "host-aware\n");
290 case BLK_ZONED_HM:
291 return sprintf(page, "host-managed\n");
292 default:
293 return sprintf(page, "none\n");
294 }
295}
296
ac9fafa1
AB
297static ssize_t queue_nomerges_show(struct request_queue *q, char *page)
298{
488991e2
AB
299 return queue_var_show((blk_queue_nomerges(q) << 1) |
300 blk_queue_noxmerges(q), page);
ac9fafa1
AB
301}
302
303static ssize_t queue_nomerges_store(struct request_queue *q, const char *page,
304 size_t count)
305{
306 unsigned long nm;
307 ssize_t ret = queue_var_store(&nm, page, count);
308
b1f3b64d
DR
309 if (ret < 0)
310 return ret;
311
bf0f9702 312 spin_lock_irq(q->queue_lock);
488991e2
AB
313 queue_flag_clear(QUEUE_FLAG_NOMERGES, q);
314 queue_flag_clear(QUEUE_FLAG_NOXMERGES, q);
315 if (nm == 2)
bf0f9702 316 queue_flag_set(QUEUE_FLAG_NOMERGES, q);
488991e2
AB
317 else if (nm)
318 queue_flag_set(QUEUE_FLAG_NOXMERGES, q);
bf0f9702 319 spin_unlock_irq(q->queue_lock);
1308835f 320
ac9fafa1
AB
321 return ret;
322}
323
c7c22e4d
JA
324static ssize_t queue_rq_affinity_show(struct request_queue *q, char *page)
325{
9cb308ce 326 bool set = test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags);
5757a6d7 327 bool force = test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags);
c7c22e4d 328
5757a6d7 329 return queue_var_show(set << force, page);
c7c22e4d
JA
330}
331
332static ssize_t
333queue_rq_affinity_store(struct request_queue *q, const char *page, size_t count)
334{
335 ssize_t ret = -EINVAL;
0a06ff06 336#ifdef CONFIG_SMP
c7c22e4d
JA
337 unsigned long val;
338
339 ret = queue_var_store(&val, page, count);
b1f3b64d
DR
340 if (ret < 0)
341 return ret;
342
c7c22e4d 343 spin_lock_irq(q->queue_lock);
e8037d49 344 if (val == 2) {
c7c22e4d 345 queue_flag_set(QUEUE_FLAG_SAME_COMP, q);
e8037d49
ES
346 queue_flag_set(QUEUE_FLAG_SAME_FORCE, q);
347 } else if (val == 1) {
348 queue_flag_set(QUEUE_FLAG_SAME_COMP, q);
349 queue_flag_clear(QUEUE_FLAG_SAME_FORCE, q);
350 } else if (val == 0) {
5757a6d7
DW
351 queue_flag_clear(QUEUE_FLAG_SAME_COMP, q);
352 queue_flag_clear(QUEUE_FLAG_SAME_FORCE, q);
353 }
c7c22e4d
JA
354 spin_unlock_irq(q->queue_lock);
355#endif
356 return ret;
357}
8324aa91 358
06426adf
JA
359static ssize_t queue_poll_delay_show(struct request_queue *q, char *page)
360{
64f1c21e
JA
361 int val;
362
363 if (q->poll_nsec == -1)
364 val = -1;
365 else
366 val = q->poll_nsec / 1000;
367
368 return sprintf(page, "%d\n", val);
06426adf
JA
369}
370
371static ssize_t queue_poll_delay_store(struct request_queue *q, const char *page,
372 size_t count)
373{
64f1c21e 374 int err, val;
06426adf
JA
375
376 if (!q->mq_ops || !q->mq_ops->poll)
377 return -EINVAL;
378
64f1c21e
JA
379 err = kstrtoint(page, 10, &val);
380 if (err < 0)
381 return err;
06426adf 382
64f1c21e
JA
383 if (val == -1)
384 q->poll_nsec = -1;
385 else
386 q->poll_nsec = val * 1000;
387
388 return count;
06426adf
JA
389}
390
05229bee
JA
391static ssize_t queue_poll_show(struct request_queue *q, char *page)
392{
393 return queue_var_show(test_bit(QUEUE_FLAG_POLL, &q->queue_flags), page);
394}
395
396static ssize_t queue_poll_store(struct request_queue *q, const char *page,
397 size_t count)
398{
399 unsigned long poll_on;
400 ssize_t ret;
401
402 if (!q->mq_ops || !q->mq_ops->poll)
403 return -EINVAL;
404
405 ret = queue_var_store(&poll_on, page, count);
406 if (ret < 0)
407 return ret;
408
409 spin_lock_irq(q->queue_lock);
410 if (poll_on)
411 queue_flag_set(QUEUE_FLAG_POLL, q);
412 else
413 queue_flag_clear(QUEUE_FLAG_POLL, q);
414 spin_unlock_irq(q->queue_lock);
415
416 return ret;
417}
418
87760e5e
JA
419static ssize_t queue_wb_lat_show(struct request_queue *q, char *page)
420{
421 if (!q->rq_wb)
422 return -EINVAL;
423
424 return sprintf(page, "%llu\n", div_u64(q->rq_wb->min_lat_nsec, 1000));
425}
426
427static ssize_t queue_wb_lat_store(struct request_queue *q, const char *page,
428 size_t count)
429{
80e091d1 430 struct rq_wb *rwb;
87760e5e 431 ssize_t ret;
80e091d1 432 s64 val;
87760e5e 433
87760e5e
JA
434 ret = queue_var_store64(&val, page);
435 if (ret < 0)
436 return ret;
d62118b6
JA
437 if (val < -1)
438 return -EINVAL;
439
440 rwb = q->rq_wb;
441 if (!rwb) {
442 ret = wbt_init(q);
443 if (ret)
444 return ret;
445
446 rwb = q->rq_wb;
447 if (!rwb)
448 return -EINVAL;
449 }
87760e5e 450
80e091d1
JA
451 if (val == -1)
452 rwb->min_lat_nsec = wbt_default_latency_nsec(q);
453 else if (val >= 0)
454 rwb->min_lat_nsec = val * 1000ULL;
d62118b6
JA
455
456 if (rwb->enable_state == WBT_STATE_ON_DEFAULT)
457 rwb->enable_state = WBT_STATE_ON_MANUAL;
80e091d1
JA
458
459 wbt_update_limits(rwb);
87760e5e
JA
460 return count;
461}
462
93e9d8e8
JA
463static ssize_t queue_wc_show(struct request_queue *q, char *page)
464{
465 if (test_bit(QUEUE_FLAG_WC, &q->queue_flags))
466 return sprintf(page, "write back\n");
467
468 return sprintf(page, "write through\n");
469}
470
471static ssize_t queue_wc_store(struct request_queue *q, const char *page,
472 size_t count)
473{
474 int set = -1;
475
476 if (!strncmp(page, "write back", 10))
477 set = 1;
478 else if (!strncmp(page, "write through", 13) ||
479 !strncmp(page, "none", 4))
480 set = 0;
481
482 if (set == -1)
483 return -EINVAL;
484
485 spin_lock_irq(q->queue_lock);
486 if (set)
487 queue_flag_set(QUEUE_FLAG_WC, q);
488 else
489 queue_flag_clear(QUEUE_FLAG_WC, q);
490 spin_unlock_irq(q->queue_lock);
491
492 return count;
493}
494
ea6ca600
YK
495static ssize_t queue_dax_show(struct request_queue *q, char *page)
496{
497 return queue_var_show(blk_queue_dax(q), page);
498}
499
cf43e6be
JA
500static ssize_t print_stat(char *page, struct blk_rq_stat *stat, const char *pre)
501{
502 return sprintf(page, "%s samples=%llu, mean=%lld, min=%lld, max=%lld\n",
503 pre, (long long) stat->nr_samples,
504 (long long) stat->mean, (long long) stat->min,
505 (long long) stat->max);
506}
507
508static ssize_t queue_stats_show(struct request_queue *q, char *page)
509{
510 struct blk_rq_stat stat[2];
511 ssize_t ret;
512
513 blk_queue_stat_get(q, stat);
514
515 ret = print_stat(page, &stat[BLK_STAT_READ], "read :");
516 ret += print_stat(page + ret, &stat[BLK_STAT_WRITE], "write:");
517 return ret;
518}
519
8324aa91
JA
520static struct queue_sysfs_entry queue_requests_entry = {
521 .attr = {.name = "nr_requests", .mode = S_IRUGO | S_IWUSR },
522 .show = queue_requests_show,
523 .store = queue_requests_store,
524};
525
526static struct queue_sysfs_entry queue_ra_entry = {
527 .attr = {.name = "read_ahead_kb", .mode = S_IRUGO | S_IWUSR },
528 .show = queue_ra_show,
529 .store = queue_ra_store,
530};
531
532static struct queue_sysfs_entry queue_max_sectors_entry = {
533 .attr = {.name = "max_sectors_kb", .mode = S_IRUGO | S_IWUSR },
534 .show = queue_max_sectors_show,
535 .store = queue_max_sectors_store,
536};
537
538static struct queue_sysfs_entry queue_max_hw_sectors_entry = {
539 .attr = {.name = "max_hw_sectors_kb", .mode = S_IRUGO },
540 .show = queue_max_hw_sectors_show,
541};
542
c77a5710
MP
543static struct queue_sysfs_entry queue_max_segments_entry = {
544 .attr = {.name = "max_segments", .mode = S_IRUGO },
545 .show = queue_max_segments_show,
546};
547
13f05c8d
MP
548static struct queue_sysfs_entry queue_max_integrity_segments_entry = {
549 .attr = {.name = "max_integrity_segments", .mode = S_IRUGO },
550 .show = queue_max_integrity_segments_show,
551};
552
c77a5710
MP
553static struct queue_sysfs_entry queue_max_segment_size_entry = {
554 .attr = {.name = "max_segment_size", .mode = S_IRUGO },
555 .show = queue_max_segment_size_show,
556};
557
8324aa91
JA
558static struct queue_sysfs_entry queue_iosched_entry = {
559 .attr = {.name = "scheduler", .mode = S_IRUGO | S_IWUSR },
560 .show = elv_iosched_show,
561 .store = elv_iosched_store,
562};
563
e68b903c
MP
564static struct queue_sysfs_entry queue_hw_sector_size_entry = {
565 .attr = {.name = "hw_sector_size", .mode = S_IRUGO },
e1defc4f
MP
566 .show = queue_logical_block_size_show,
567};
568
569static struct queue_sysfs_entry queue_logical_block_size_entry = {
570 .attr = {.name = "logical_block_size", .mode = S_IRUGO },
571 .show = queue_logical_block_size_show,
e68b903c
MP
572};
573
c72758f3
MP
574static struct queue_sysfs_entry queue_physical_block_size_entry = {
575 .attr = {.name = "physical_block_size", .mode = S_IRUGO },
576 .show = queue_physical_block_size_show,
577};
578
87caf97c
HR
579static struct queue_sysfs_entry queue_chunk_sectors_entry = {
580 .attr = {.name = "chunk_sectors", .mode = S_IRUGO },
581 .show = queue_chunk_sectors_show,
582};
583
c72758f3
MP
584static struct queue_sysfs_entry queue_io_min_entry = {
585 .attr = {.name = "minimum_io_size", .mode = S_IRUGO },
586 .show = queue_io_min_show,
587};
588
589static struct queue_sysfs_entry queue_io_opt_entry = {
590 .attr = {.name = "optimal_io_size", .mode = S_IRUGO },
591 .show = queue_io_opt_show,
e68b903c
MP
592};
593
86b37281
MP
594static struct queue_sysfs_entry queue_discard_granularity_entry = {
595 .attr = {.name = "discard_granularity", .mode = S_IRUGO },
596 .show = queue_discard_granularity_show,
597};
598
0034af03
JA
599static struct queue_sysfs_entry queue_discard_max_hw_entry = {
600 .attr = {.name = "discard_max_hw_bytes", .mode = S_IRUGO },
601 .show = queue_discard_max_hw_show,
602};
603
86b37281 604static struct queue_sysfs_entry queue_discard_max_entry = {
0034af03 605 .attr = {.name = "discard_max_bytes", .mode = S_IRUGO | S_IWUSR },
86b37281 606 .show = queue_discard_max_show,
0034af03 607 .store = queue_discard_max_store,
86b37281
MP
608};
609
98262f27
MP
610static struct queue_sysfs_entry queue_discard_zeroes_data_entry = {
611 .attr = {.name = "discard_zeroes_data", .mode = S_IRUGO },
612 .show = queue_discard_zeroes_data_show,
613};
614
4363ac7c
MP
615static struct queue_sysfs_entry queue_write_same_max_entry = {
616 .attr = {.name = "write_same_max_bytes", .mode = S_IRUGO },
617 .show = queue_write_same_max_show,
618};
619
a6f0788e
CK
620static struct queue_sysfs_entry queue_write_zeroes_max_entry = {
621 .attr = {.name = "write_zeroes_max_bytes", .mode = S_IRUGO },
622 .show = queue_write_zeroes_max_show,
623};
624
1308835f
BZ
625static struct queue_sysfs_entry queue_nonrot_entry = {
626 .attr = {.name = "rotational", .mode = S_IRUGO | S_IWUSR },
956bcb7c
JA
627 .show = queue_show_nonrot,
628 .store = queue_store_nonrot,
1308835f
BZ
629};
630
797476b8
DLM
631static struct queue_sysfs_entry queue_zoned_entry = {
632 .attr = {.name = "zoned", .mode = S_IRUGO },
633 .show = queue_zoned_show,
634};
635
ac9fafa1
AB
636static struct queue_sysfs_entry queue_nomerges_entry = {
637 .attr = {.name = "nomerges", .mode = S_IRUGO | S_IWUSR },
638 .show = queue_nomerges_show,
639 .store = queue_nomerges_store,
640};
641
c7c22e4d
JA
642static struct queue_sysfs_entry queue_rq_affinity_entry = {
643 .attr = {.name = "rq_affinity", .mode = S_IRUGO | S_IWUSR },
644 .show = queue_rq_affinity_show,
645 .store = queue_rq_affinity_store,
646};
647
bc58ba94
JA
648static struct queue_sysfs_entry queue_iostats_entry = {
649 .attr = {.name = "iostats", .mode = S_IRUGO | S_IWUSR },
956bcb7c
JA
650 .show = queue_show_iostats,
651 .store = queue_store_iostats,
bc58ba94
JA
652};
653
e2e1a148
JA
654static struct queue_sysfs_entry queue_random_entry = {
655 .attr = {.name = "add_random", .mode = S_IRUGO | S_IWUSR },
956bcb7c
JA
656 .show = queue_show_random,
657 .store = queue_store_random,
e2e1a148
JA
658};
659
05229bee
JA
660static struct queue_sysfs_entry queue_poll_entry = {
661 .attr = {.name = "io_poll", .mode = S_IRUGO | S_IWUSR },
662 .show = queue_poll_show,
663 .store = queue_poll_store,
664};
665
06426adf
JA
666static struct queue_sysfs_entry queue_poll_delay_entry = {
667 .attr = {.name = "io_poll_delay", .mode = S_IRUGO | S_IWUSR },
668 .show = queue_poll_delay_show,
669 .store = queue_poll_delay_store,
670};
671
93e9d8e8
JA
672static struct queue_sysfs_entry queue_wc_entry = {
673 .attr = {.name = "write_cache", .mode = S_IRUGO | S_IWUSR },
674 .show = queue_wc_show,
675 .store = queue_wc_store,
676};
677
ea6ca600
YK
678static struct queue_sysfs_entry queue_dax_entry = {
679 .attr = {.name = "dax", .mode = S_IRUGO },
680 .show = queue_dax_show,
681};
682
cf43e6be
JA
683static struct queue_sysfs_entry queue_stats_entry = {
684 .attr = {.name = "stats", .mode = S_IRUGO },
685 .show = queue_stats_show,
686};
687
87760e5e
JA
688static struct queue_sysfs_entry queue_wb_lat_entry = {
689 .attr = {.name = "wbt_lat_usec", .mode = S_IRUGO | S_IWUSR },
690 .show = queue_wb_lat_show,
691 .store = queue_wb_lat_store,
692};
693
8324aa91
JA
694static struct attribute *default_attrs[] = {
695 &queue_requests_entry.attr,
696 &queue_ra_entry.attr,
697 &queue_max_hw_sectors_entry.attr,
698 &queue_max_sectors_entry.attr,
c77a5710 699 &queue_max_segments_entry.attr,
13f05c8d 700 &queue_max_integrity_segments_entry.attr,
c77a5710 701 &queue_max_segment_size_entry.attr,
8324aa91 702 &queue_iosched_entry.attr,
e68b903c 703 &queue_hw_sector_size_entry.attr,
e1defc4f 704 &queue_logical_block_size_entry.attr,
c72758f3 705 &queue_physical_block_size_entry.attr,
87caf97c 706 &queue_chunk_sectors_entry.attr,
c72758f3
MP
707 &queue_io_min_entry.attr,
708 &queue_io_opt_entry.attr,
86b37281
MP
709 &queue_discard_granularity_entry.attr,
710 &queue_discard_max_entry.attr,
0034af03 711 &queue_discard_max_hw_entry.attr,
98262f27 712 &queue_discard_zeroes_data_entry.attr,
4363ac7c 713 &queue_write_same_max_entry.attr,
a6f0788e 714 &queue_write_zeroes_max_entry.attr,
1308835f 715 &queue_nonrot_entry.attr,
797476b8 716 &queue_zoned_entry.attr,
ac9fafa1 717 &queue_nomerges_entry.attr,
c7c22e4d 718 &queue_rq_affinity_entry.attr,
bc58ba94 719 &queue_iostats_entry.attr,
e2e1a148 720 &queue_random_entry.attr,
05229bee 721 &queue_poll_entry.attr,
93e9d8e8 722 &queue_wc_entry.attr,
ea6ca600 723 &queue_dax_entry.attr,
cf43e6be 724 &queue_stats_entry.attr,
87760e5e 725 &queue_wb_lat_entry.attr,
06426adf 726 &queue_poll_delay_entry.attr,
8324aa91
JA
727 NULL,
728};
729
730#define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr)
731
732static ssize_t
733queue_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
734{
735 struct queue_sysfs_entry *entry = to_queue(attr);
736 struct request_queue *q =
737 container_of(kobj, struct request_queue, kobj);
738 ssize_t res;
739
740 if (!entry->show)
741 return -EIO;
742 mutex_lock(&q->sysfs_lock);
3f3299d5 743 if (blk_queue_dying(q)) {
8324aa91
JA
744 mutex_unlock(&q->sysfs_lock);
745 return -ENOENT;
746 }
747 res = entry->show(q, page);
748 mutex_unlock(&q->sysfs_lock);
749 return res;
750}
751
752static ssize_t
753queue_attr_store(struct kobject *kobj, struct attribute *attr,
754 const char *page, size_t length)
755{
756 struct queue_sysfs_entry *entry = to_queue(attr);
6728cb0e 757 struct request_queue *q;
8324aa91
JA
758 ssize_t res;
759
760 if (!entry->store)
761 return -EIO;
6728cb0e
JA
762
763 q = container_of(kobj, struct request_queue, kobj);
8324aa91 764 mutex_lock(&q->sysfs_lock);
3f3299d5 765 if (blk_queue_dying(q)) {
8324aa91
JA
766 mutex_unlock(&q->sysfs_lock);
767 return -ENOENT;
768 }
769 res = entry->store(q, page, length);
770 mutex_unlock(&q->sysfs_lock);
771 return res;
772}
773
548bc8e1
TH
774static void blk_free_queue_rcu(struct rcu_head *rcu_head)
775{
776 struct request_queue *q = container_of(rcu_head, struct request_queue,
777 rcu_head);
778 kmem_cache_free(blk_requestq_cachep, q);
779}
780
8324aa91 781/**
499337bb
AM
782 * blk_release_queue: - release a &struct request_queue when it is no longer needed
783 * @kobj: the kobj belonging to the request queue to be released
8324aa91
JA
784 *
785 * Description:
499337bb 786 * blk_release_queue is the pair to blk_init_queue() or
8324aa91
JA
787 * blk_queue_make_request(). It should be called when a request queue is
788 * being released; typically when a block device is being de-registered.
789 * Currently, its primary task it to free all the &struct request
790 * structures that were allocated to the queue and the queue itself.
791 *
45a9c9d9
BVA
792 * Note:
793 * The low level driver must have finished any outstanding requests first
794 * via blk_cleanup_queue().
8324aa91
JA
795 **/
796static void blk_release_queue(struct kobject *kobj)
797{
798 struct request_queue *q =
799 container_of(kobj, struct request_queue, kobj);
8324aa91 800
87760e5e 801 wbt_exit(q);
b02176f3 802 bdi_exit(&q->backing_dev_info);
e8989fae
TH
803 blkcg_exit_queue(q);
804
7e5a8794
TH
805 if (q->elevator) {
806 spin_lock_irq(q->queue_lock);
807 ioc_clear_queue(q);
808 spin_unlock_irq(q->queue_lock);
777eb1bf 809 elevator_exit(q->elevator);
7e5a8794 810 }
777eb1bf 811
a051661c 812 blk_exit_rl(&q->root_rl);
8324aa91
JA
813
814 if (q->queue_tags)
815 __blk_queue_free_tags(q);
816
45a9c9d9 817 if (!q->mq_ops)
f70ced09 818 blk_free_flush_queue(q->fq);
e09aae7e
ML
819 else
820 blk_mq_release(q);
18741986 821
8324aa91
JA
822 blk_trace_shutdown(q);
823
54efd50b
KO
824 if (q->bio_split)
825 bioset_free(q->bio_split);
826
a73f730d 827 ida_simple_remove(&blk_queue_ida, q->id);
548bc8e1 828 call_rcu(&q->rcu_head, blk_free_queue_rcu);
8324aa91
JA
829}
830
52cf25d0 831static const struct sysfs_ops queue_sysfs_ops = {
8324aa91
JA
832 .show = queue_attr_show,
833 .store = queue_attr_store,
834};
835
836struct kobj_type blk_queue_ktype = {
837 .sysfs_ops = &queue_sysfs_ops,
838 .default_attrs = default_attrs,
839 .release = blk_release_queue,
840};
841
87760e5e
JA
842static void blk_wb_init(struct request_queue *q)
843{
844#ifndef CONFIG_BLK_WBT_MQ
845 if (q->mq_ops)
846 return;
847#endif
848#ifndef CONFIG_BLK_WBT_SQ
849 if (q->request_fn)
850 return;
851#endif
852
853 /*
854 * If this fails, we don't get throttling
855 */
8054b89f 856 wbt_init(q);
87760e5e
JA
857}
858
8324aa91
JA
859int blk_register_queue(struct gendisk *disk)
860{
861 int ret;
1d54ad6d 862 struct device *dev = disk_to_dev(disk);
8324aa91
JA
863 struct request_queue *q = disk->queue;
864
fb199746 865 if (WARN_ON(!q))
8324aa91
JA
866 return -ENXIO;
867
749fefe6 868 /*
17497acb
TH
869 * SCSI probing may synchronously create and destroy a lot of
870 * request_queues for non-existent devices. Shutting down a fully
871 * functional queue takes measureable wallclock time as RCU grace
872 * periods are involved. To avoid excessive latency in these
873 * cases, a request_queue starts out in a degraded mode which is
874 * faster to shut down and is made fully functional here as
875 * request_queues for non-existent devices never get registered.
749fefe6 876 */
df35c7c9
AS
877 if (!blk_queue_init_done(q)) {
878 queue_flag_set_unlocked(QUEUE_FLAG_INIT_DONE, q);
3ef28e83 879 percpu_ref_switch_to_percpu(&q->q_usage_counter);
df35c7c9
AS
880 blk_queue_bypass_end(q);
881 }
749fefe6 882
1d54ad6d
LZ
883 ret = blk_trace_init_sysfs(dev);
884 if (ret)
885 return ret;
886
c9059598 887 ret = kobject_add(&q->kobj, kobject_get(&dev->kobj), "%s", "queue");
ed5302d3
LY
888 if (ret < 0) {
889 blk_trace_remove_sysfs(dev);
8324aa91 890 return ret;
ed5302d3 891 }
8324aa91
JA
892
893 kobject_uevent(&q->kobj, KOBJ_ADD);
894
320ae51f 895 if (q->mq_ops)
b21d5b30 896 blk_mq_register_dev(dev, q);
320ae51f 897
87760e5e
JA
898 blk_wb_init(q);
899
cd43e26f
MP
900 if (!q->request_fn)
901 return 0;
902
8324aa91
JA
903 ret = elv_register_queue(q);
904 if (ret) {
905 kobject_uevent(&q->kobj, KOBJ_REMOVE);
906 kobject_del(&q->kobj);
80656b67 907 blk_trace_remove_sysfs(dev);
c87ffbb8 908 kobject_put(&dev->kobj);
8324aa91
JA
909 return ret;
910 }
911
912 return 0;
913}
914
915void blk_unregister_queue(struct gendisk *disk)
916{
917 struct request_queue *q = disk->queue;
918
fb199746
AM
919 if (WARN_ON(!q))
920 return;
921
320ae51f 922 if (q->mq_ops)
b21d5b30 923 blk_mq_unregister_dev(disk_to_dev(disk), q);
320ae51f 924
48c0d4d4 925 if (q->request_fn)
8324aa91
JA
926 elv_unregister_queue(q);
927
48c0d4d4
ZK
928 kobject_uevent(&q->kobj, KOBJ_REMOVE);
929 kobject_del(&q->kobj);
930 blk_trace_remove_sysfs(disk_to_dev(disk));
931 kobject_put(&disk_to_dev(disk)->kobj);
8324aa91 932}