mmc: sh_mobile_sdhi: enable SDIO IRQs for RCar Gen3
[linux-2.6-block.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"
8324aa91
JA
16
17struct queue_sysfs_entry {
18 struct attribute attr;
19 ssize_t (*show)(struct request_queue *, char *);
20 ssize_t (*store)(struct request_queue *, const char *, size_t);
21};
22
23static ssize_t
9cb308ce 24queue_var_show(unsigned long var, char *page)
8324aa91 25{
9cb308ce 26 return sprintf(page, "%lu\n", var);
8324aa91
JA
27}
28
29static ssize_t
30queue_var_store(unsigned long *var, const char *page, size_t count)
31{
b1f3b64d
DR
32 int err;
33 unsigned long v;
34
ed751e68 35 err = kstrtoul(page, 10, &v);
b1f3b64d
DR
36 if (err || v > UINT_MAX)
37 return -EINVAL;
38
39 *var = v;
8324aa91 40
8324aa91
JA
41 return count;
42}
43
44static ssize_t queue_requests_show(struct request_queue *q, char *page)
45{
46 return queue_var_show(q->nr_requests, (page));
47}
48
49static ssize_t
50queue_requests_store(struct request_queue *q, const char *page, size_t count)
51{
8324aa91 52 unsigned long nr;
e3a2b3f9 53 int ret, err;
b8a9ae77 54
e3a2b3f9 55 if (!q->request_fn && !q->mq_ops)
b8a9ae77
JA
56 return -EINVAL;
57
58 ret = queue_var_store(&nr, page, count);
b1f3b64d
DR
59 if (ret < 0)
60 return ret;
61
8324aa91
JA
62 if (nr < BLKDEV_MIN_RQ)
63 nr = BLKDEV_MIN_RQ;
64
e3a2b3f9
JA
65 if (q->request_fn)
66 err = blk_update_nr_requests(q, nr);
67 else
68 err = blk_mq_update_nr_requests(q, nr);
69
70 if (err)
71 return err;
72
8324aa91
JA
73 return ret;
74}
75
76static ssize_t queue_ra_show(struct request_queue *q, char *page)
77{
9cb308ce 78 unsigned long ra_kb = q->backing_dev_info.ra_pages <<
09cbfeaf 79 (PAGE_SHIFT - 10);
8324aa91
JA
80
81 return queue_var_show(ra_kb, (page));
82}
83
84static ssize_t
85queue_ra_store(struct request_queue *q, const char *page, size_t count)
86{
87 unsigned long ra_kb;
88 ssize_t ret = queue_var_store(&ra_kb, page, count);
89
b1f3b64d
DR
90 if (ret < 0)
91 return ret;
92
09cbfeaf 93 q->backing_dev_info.ra_pages = ra_kb >> (PAGE_SHIFT - 10);
8324aa91
JA
94
95 return ret;
96}
97
98static ssize_t queue_max_sectors_show(struct request_queue *q, char *page)
99{
ae03bf63 100 int max_sectors_kb = queue_max_sectors(q) >> 1;
8324aa91
JA
101
102 return queue_var_show(max_sectors_kb, (page));
103}
104
c77a5710
MP
105static ssize_t queue_max_segments_show(struct request_queue *q, char *page)
106{
107 return queue_var_show(queue_max_segments(q), (page));
108}
109
13f05c8d
MP
110static ssize_t queue_max_integrity_segments_show(struct request_queue *q, char *page)
111{
112 return queue_var_show(q->limits.max_integrity_segments, (page));
113}
114
c77a5710
MP
115static ssize_t queue_max_segment_size_show(struct request_queue *q, char *page)
116{
e692cb66 117 if (blk_queue_cluster(q))
c77a5710
MP
118 return queue_var_show(queue_max_segment_size(q), (page));
119
09cbfeaf 120 return queue_var_show(PAGE_SIZE, (page));
c77a5710
MP
121}
122
e1defc4f 123static ssize_t queue_logical_block_size_show(struct request_queue *q, char *page)
e68b903c 124{
e1defc4f 125 return queue_var_show(queue_logical_block_size(q), page);
e68b903c
MP
126}
127
c72758f3
MP
128static ssize_t queue_physical_block_size_show(struct request_queue *q, char *page)
129{
130 return queue_var_show(queue_physical_block_size(q), page);
131}
132
133static ssize_t queue_io_min_show(struct request_queue *q, char *page)
134{
135 return queue_var_show(queue_io_min(q), page);
136}
137
138static ssize_t queue_io_opt_show(struct request_queue *q, char *page)
139{
140 return queue_var_show(queue_io_opt(q), page);
e68b903c
MP
141}
142
86b37281
MP
143static ssize_t queue_discard_granularity_show(struct request_queue *q, char *page)
144{
145 return queue_var_show(q->limits.discard_granularity, page);
146}
147
0034af03
JA
148static ssize_t queue_discard_max_hw_show(struct request_queue *q, char *page)
149{
0034af03 150
18f922d0
A
151 return sprintf(page, "%llu\n",
152 (unsigned long long)q->limits.max_hw_discard_sectors << 9);
0034af03
JA
153}
154
86b37281
MP
155static ssize_t queue_discard_max_show(struct request_queue *q, char *page)
156{
a934a00a
MP
157 return sprintf(page, "%llu\n",
158 (unsigned long long)q->limits.max_discard_sectors << 9);
86b37281
MP
159}
160
0034af03
JA
161static ssize_t queue_discard_max_store(struct request_queue *q,
162 const char *page, size_t count)
163{
164 unsigned long max_discard;
165 ssize_t ret = queue_var_store(&max_discard, page, count);
166
167 if (ret < 0)
168 return ret;
169
170 if (max_discard & (q->limits.discard_granularity - 1))
171 return -EINVAL;
172
173 max_discard >>= 9;
174 if (max_discard > UINT_MAX)
175 return -EINVAL;
176
177 if (max_discard > q->limits.max_hw_discard_sectors)
178 max_discard = q->limits.max_hw_discard_sectors;
179
180 q->limits.max_discard_sectors = max_discard;
181 return ret;
182}
183
98262f27
MP
184static ssize_t queue_discard_zeroes_data_show(struct request_queue *q, char *page)
185{
186 return queue_var_show(queue_discard_zeroes_data(q), page);
187}
188
4363ac7c
MP
189static ssize_t queue_write_same_max_show(struct request_queue *q, char *page)
190{
191 return sprintf(page, "%llu\n",
192 (unsigned long long)q->limits.max_write_same_sectors << 9);
193}
194
195
8324aa91
JA
196static ssize_t
197queue_max_sectors_store(struct request_queue *q, const char *page, size_t count)
198{
199 unsigned long max_sectors_kb,
ae03bf63 200 max_hw_sectors_kb = queue_max_hw_sectors(q) >> 1,
09cbfeaf 201 page_kb = 1 << (PAGE_SHIFT - 10);
8324aa91
JA
202 ssize_t ret = queue_var_store(&max_sectors_kb, page, count);
203
b1f3b64d
DR
204 if (ret < 0)
205 return ret;
206
ca369d51
MP
207 max_hw_sectors_kb = min_not_zero(max_hw_sectors_kb, (unsigned long)
208 q->limits.max_dev_sectors >> 1);
209
8324aa91
JA
210 if (max_sectors_kb > max_hw_sectors_kb || max_sectors_kb < page_kb)
211 return -EINVAL;
7c239517 212
8324aa91 213 spin_lock_irq(q->queue_lock);
c295fc05 214 q->limits.max_sectors = max_sectors_kb << 1;
8324aa91
JA
215 spin_unlock_irq(q->queue_lock);
216
217 return ret;
218}
219
220static ssize_t queue_max_hw_sectors_show(struct request_queue *q, char *page)
221{
ae03bf63 222 int max_hw_sectors_kb = queue_max_hw_sectors(q) >> 1;
8324aa91
JA
223
224 return queue_var_show(max_hw_sectors_kb, (page));
225}
226
956bcb7c
JA
227#define QUEUE_SYSFS_BIT_FNS(name, flag, neg) \
228static ssize_t \
229queue_show_##name(struct request_queue *q, char *page) \
230{ \
231 int bit; \
232 bit = test_bit(QUEUE_FLAG_##flag, &q->queue_flags); \
233 return queue_var_show(neg ? !bit : bit, page); \
234} \
235static ssize_t \
236queue_store_##name(struct request_queue *q, const char *page, size_t count) \
237{ \
238 unsigned long val; \
239 ssize_t ret; \
240 ret = queue_var_store(&val, page, count); \
c678ef52
AB
241 if (ret < 0) \
242 return ret; \
956bcb7c
JA
243 if (neg) \
244 val = !val; \
245 \
246 spin_lock_irq(q->queue_lock); \
247 if (val) \
248 queue_flag_set(QUEUE_FLAG_##flag, q); \
249 else \
250 queue_flag_clear(QUEUE_FLAG_##flag, q); \
251 spin_unlock_irq(q->queue_lock); \
252 return ret; \
1308835f
BZ
253}
254
956bcb7c
JA
255QUEUE_SYSFS_BIT_FNS(nonrot, NONROT, 1);
256QUEUE_SYSFS_BIT_FNS(random, ADD_RANDOM, 0);
257QUEUE_SYSFS_BIT_FNS(iostats, IO_STAT, 0);
258#undef QUEUE_SYSFS_BIT_FNS
1308835f 259
ac9fafa1
AB
260static ssize_t queue_nomerges_show(struct request_queue *q, char *page)
261{
488991e2
AB
262 return queue_var_show((blk_queue_nomerges(q) << 1) |
263 blk_queue_noxmerges(q), page);
ac9fafa1
AB
264}
265
266static ssize_t queue_nomerges_store(struct request_queue *q, const char *page,
267 size_t count)
268{
269 unsigned long nm;
270 ssize_t ret = queue_var_store(&nm, page, count);
271
b1f3b64d
DR
272 if (ret < 0)
273 return ret;
274
bf0f9702 275 spin_lock_irq(q->queue_lock);
488991e2
AB
276 queue_flag_clear(QUEUE_FLAG_NOMERGES, q);
277 queue_flag_clear(QUEUE_FLAG_NOXMERGES, q);
278 if (nm == 2)
bf0f9702 279 queue_flag_set(QUEUE_FLAG_NOMERGES, q);
488991e2
AB
280 else if (nm)
281 queue_flag_set(QUEUE_FLAG_NOXMERGES, q);
bf0f9702 282 spin_unlock_irq(q->queue_lock);
1308835f 283
ac9fafa1
AB
284 return ret;
285}
286
c7c22e4d
JA
287static ssize_t queue_rq_affinity_show(struct request_queue *q, char *page)
288{
9cb308ce 289 bool set = test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags);
5757a6d7 290 bool force = test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags);
c7c22e4d 291
5757a6d7 292 return queue_var_show(set << force, page);
c7c22e4d
JA
293}
294
295static ssize_t
296queue_rq_affinity_store(struct request_queue *q, const char *page, size_t count)
297{
298 ssize_t ret = -EINVAL;
0a06ff06 299#ifdef CONFIG_SMP
c7c22e4d
JA
300 unsigned long val;
301
302 ret = queue_var_store(&val, page, count);
b1f3b64d
DR
303 if (ret < 0)
304 return ret;
305
c7c22e4d 306 spin_lock_irq(q->queue_lock);
e8037d49 307 if (val == 2) {
c7c22e4d 308 queue_flag_set(QUEUE_FLAG_SAME_COMP, q);
e8037d49
ES
309 queue_flag_set(QUEUE_FLAG_SAME_FORCE, q);
310 } else if (val == 1) {
311 queue_flag_set(QUEUE_FLAG_SAME_COMP, q);
312 queue_flag_clear(QUEUE_FLAG_SAME_FORCE, q);
313 } else if (val == 0) {
5757a6d7
DW
314 queue_flag_clear(QUEUE_FLAG_SAME_COMP, q);
315 queue_flag_clear(QUEUE_FLAG_SAME_FORCE, q);
316 }
c7c22e4d
JA
317 spin_unlock_irq(q->queue_lock);
318#endif
319 return ret;
320}
8324aa91 321
05229bee
JA
322static ssize_t queue_poll_show(struct request_queue *q, char *page)
323{
324 return queue_var_show(test_bit(QUEUE_FLAG_POLL, &q->queue_flags), page);
325}
326
327static ssize_t queue_poll_store(struct request_queue *q, const char *page,
328 size_t count)
329{
330 unsigned long poll_on;
331 ssize_t ret;
332
333 if (!q->mq_ops || !q->mq_ops->poll)
334 return -EINVAL;
335
336 ret = queue_var_store(&poll_on, page, count);
337 if (ret < 0)
338 return ret;
339
340 spin_lock_irq(q->queue_lock);
341 if (poll_on)
342 queue_flag_set(QUEUE_FLAG_POLL, q);
343 else
344 queue_flag_clear(QUEUE_FLAG_POLL, q);
345 spin_unlock_irq(q->queue_lock);
346
347 return ret;
348}
349
8324aa91
JA
350static struct queue_sysfs_entry queue_requests_entry = {
351 .attr = {.name = "nr_requests", .mode = S_IRUGO | S_IWUSR },
352 .show = queue_requests_show,
353 .store = queue_requests_store,
354};
355
356static struct queue_sysfs_entry queue_ra_entry = {
357 .attr = {.name = "read_ahead_kb", .mode = S_IRUGO | S_IWUSR },
358 .show = queue_ra_show,
359 .store = queue_ra_store,
360};
361
362static struct queue_sysfs_entry queue_max_sectors_entry = {
363 .attr = {.name = "max_sectors_kb", .mode = S_IRUGO | S_IWUSR },
364 .show = queue_max_sectors_show,
365 .store = queue_max_sectors_store,
366};
367
368static struct queue_sysfs_entry queue_max_hw_sectors_entry = {
369 .attr = {.name = "max_hw_sectors_kb", .mode = S_IRUGO },
370 .show = queue_max_hw_sectors_show,
371};
372
c77a5710
MP
373static struct queue_sysfs_entry queue_max_segments_entry = {
374 .attr = {.name = "max_segments", .mode = S_IRUGO },
375 .show = queue_max_segments_show,
376};
377
13f05c8d
MP
378static struct queue_sysfs_entry queue_max_integrity_segments_entry = {
379 .attr = {.name = "max_integrity_segments", .mode = S_IRUGO },
380 .show = queue_max_integrity_segments_show,
381};
382
c77a5710
MP
383static struct queue_sysfs_entry queue_max_segment_size_entry = {
384 .attr = {.name = "max_segment_size", .mode = S_IRUGO },
385 .show = queue_max_segment_size_show,
386};
387
8324aa91
JA
388static struct queue_sysfs_entry queue_iosched_entry = {
389 .attr = {.name = "scheduler", .mode = S_IRUGO | S_IWUSR },
390 .show = elv_iosched_show,
391 .store = elv_iosched_store,
392};
393
e68b903c
MP
394static struct queue_sysfs_entry queue_hw_sector_size_entry = {
395 .attr = {.name = "hw_sector_size", .mode = S_IRUGO },
e1defc4f
MP
396 .show = queue_logical_block_size_show,
397};
398
399static struct queue_sysfs_entry queue_logical_block_size_entry = {
400 .attr = {.name = "logical_block_size", .mode = S_IRUGO },
401 .show = queue_logical_block_size_show,
e68b903c
MP
402};
403
c72758f3
MP
404static struct queue_sysfs_entry queue_physical_block_size_entry = {
405 .attr = {.name = "physical_block_size", .mode = S_IRUGO },
406 .show = queue_physical_block_size_show,
407};
408
409static struct queue_sysfs_entry queue_io_min_entry = {
410 .attr = {.name = "minimum_io_size", .mode = S_IRUGO },
411 .show = queue_io_min_show,
412};
413
414static struct queue_sysfs_entry queue_io_opt_entry = {
415 .attr = {.name = "optimal_io_size", .mode = S_IRUGO },
416 .show = queue_io_opt_show,
e68b903c
MP
417};
418
86b37281
MP
419static struct queue_sysfs_entry queue_discard_granularity_entry = {
420 .attr = {.name = "discard_granularity", .mode = S_IRUGO },
421 .show = queue_discard_granularity_show,
422};
423
0034af03
JA
424static struct queue_sysfs_entry queue_discard_max_hw_entry = {
425 .attr = {.name = "discard_max_hw_bytes", .mode = S_IRUGO },
426 .show = queue_discard_max_hw_show,
427};
428
86b37281 429static struct queue_sysfs_entry queue_discard_max_entry = {
0034af03 430 .attr = {.name = "discard_max_bytes", .mode = S_IRUGO | S_IWUSR },
86b37281 431 .show = queue_discard_max_show,
0034af03 432 .store = queue_discard_max_store,
86b37281
MP
433};
434
98262f27
MP
435static struct queue_sysfs_entry queue_discard_zeroes_data_entry = {
436 .attr = {.name = "discard_zeroes_data", .mode = S_IRUGO },
437 .show = queue_discard_zeroes_data_show,
438};
439
4363ac7c
MP
440static struct queue_sysfs_entry queue_write_same_max_entry = {
441 .attr = {.name = "write_same_max_bytes", .mode = S_IRUGO },
442 .show = queue_write_same_max_show,
443};
444
1308835f
BZ
445static struct queue_sysfs_entry queue_nonrot_entry = {
446 .attr = {.name = "rotational", .mode = S_IRUGO | S_IWUSR },
956bcb7c
JA
447 .show = queue_show_nonrot,
448 .store = queue_store_nonrot,
1308835f
BZ
449};
450
ac9fafa1
AB
451static struct queue_sysfs_entry queue_nomerges_entry = {
452 .attr = {.name = "nomerges", .mode = S_IRUGO | S_IWUSR },
453 .show = queue_nomerges_show,
454 .store = queue_nomerges_store,
455};
456
c7c22e4d
JA
457static struct queue_sysfs_entry queue_rq_affinity_entry = {
458 .attr = {.name = "rq_affinity", .mode = S_IRUGO | S_IWUSR },
459 .show = queue_rq_affinity_show,
460 .store = queue_rq_affinity_store,
461};
462
bc58ba94
JA
463static struct queue_sysfs_entry queue_iostats_entry = {
464 .attr = {.name = "iostats", .mode = S_IRUGO | S_IWUSR },
956bcb7c
JA
465 .show = queue_show_iostats,
466 .store = queue_store_iostats,
bc58ba94
JA
467};
468
e2e1a148
JA
469static struct queue_sysfs_entry queue_random_entry = {
470 .attr = {.name = "add_random", .mode = S_IRUGO | S_IWUSR },
956bcb7c
JA
471 .show = queue_show_random,
472 .store = queue_store_random,
e2e1a148
JA
473};
474
05229bee
JA
475static struct queue_sysfs_entry queue_poll_entry = {
476 .attr = {.name = "io_poll", .mode = S_IRUGO | S_IWUSR },
477 .show = queue_poll_show,
478 .store = queue_poll_store,
479};
480
8324aa91
JA
481static struct attribute *default_attrs[] = {
482 &queue_requests_entry.attr,
483 &queue_ra_entry.attr,
484 &queue_max_hw_sectors_entry.attr,
485 &queue_max_sectors_entry.attr,
c77a5710 486 &queue_max_segments_entry.attr,
13f05c8d 487 &queue_max_integrity_segments_entry.attr,
c77a5710 488 &queue_max_segment_size_entry.attr,
8324aa91 489 &queue_iosched_entry.attr,
e68b903c 490 &queue_hw_sector_size_entry.attr,
e1defc4f 491 &queue_logical_block_size_entry.attr,
c72758f3
MP
492 &queue_physical_block_size_entry.attr,
493 &queue_io_min_entry.attr,
494 &queue_io_opt_entry.attr,
86b37281
MP
495 &queue_discard_granularity_entry.attr,
496 &queue_discard_max_entry.attr,
0034af03 497 &queue_discard_max_hw_entry.attr,
98262f27 498 &queue_discard_zeroes_data_entry.attr,
4363ac7c 499 &queue_write_same_max_entry.attr,
1308835f 500 &queue_nonrot_entry.attr,
ac9fafa1 501 &queue_nomerges_entry.attr,
c7c22e4d 502 &queue_rq_affinity_entry.attr,
bc58ba94 503 &queue_iostats_entry.attr,
e2e1a148 504 &queue_random_entry.attr,
05229bee 505 &queue_poll_entry.attr,
8324aa91
JA
506 NULL,
507};
508
509#define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr)
510
511static ssize_t
512queue_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
513{
514 struct queue_sysfs_entry *entry = to_queue(attr);
515 struct request_queue *q =
516 container_of(kobj, struct request_queue, kobj);
517 ssize_t res;
518
519 if (!entry->show)
520 return -EIO;
521 mutex_lock(&q->sysfs_lock);
3f3299d5 522 if (blk_queue_dying(q)) {
8324aa91
JA
523 mutex_unlock(&q->sysfs_lock);
524 return -ENOENT;
525 }
526 res = entry->show(q, page);
527 mutex_unlock(&q->sysfs_lock);
528 return res;
529}
530
531static ssize_t
532queue_attr_store(struct kobject *kobj, struct attribute *attr,
533 const char *page, size_t length)
534{
535 struct queue_sysfs_entry *entry = to_queue(attr);
6728cb0e 536 struct request_queue *q;
8324aa91
JA
537 ssize_t res;
538
539 if (!entry->store)
540 return -EIO;
6728cb0e
JA
541
542 q = container_of(kobj, struct request_queue, kobj);
8324aa91 543 mutex_lock(&q->sysfs_lock);
3f3299d5 544 if (blk_queue_dying(q)) {
8324aa91
JA
545 mutex_unlock(&q->sysfs_lock);
546 return -ENOENT;
547 }
548 res = entry->store(q, page, length);
549 mutex_unlock(&q->sysfs_lock);
550 return res;
551}
552
548bc8e1
TH
553static void blk_free_queue_rcu(struct rcu_head *rcu_head)
554{
555 struct request_queue *q = container_of(rcu_head, struct request_queue,
556 rcu_head);
557 kmem_cache_free(blk_requestq_cachep, q);
558}
559
8324aa91 560/**
499337bb
AM
561 * blk_release_queue: - release a &struct request_queue when it is no longer needed
562 * @kobj: the kobj belonging to the request queue to be released
8324aa91
JA
563 *
564 * Description:
499337bb 565 * blk_release_queue is the pair to blk_init_queue() or
8324aa91
JA
566 * blk_queue_make_request(). It should be called when a request queue is
567 * being released; typically when a block device is being de-registered.
568 * Currently, its primary task it to free all the &struct request
569 * structures that were allocated to the queue and the queue itself.
570 *
45a9c9d9
BVA
571 * Note:
572 * The low level driver must have finished any outstanding requests first
573 * via blk_cleanup_queue().
8324aa91
JA
574 **/
575static void blk_release_queue(struct kobject *kobj)
576{
577 struct request_queue *q =
578 container_of(kobj, struct request_queue, kobj);
8324aa91 579
b02176f3 580 bdi_exit(&q->backing_dev_info);
e8989fae
TH
581 blkcg_exit_queue(q);
582
7e5a8794
TH
583 if (q->elevator) {
584 spin_lock_irq(q->queue_lock);
585 ioc_clear_queue(q);
586 spin_unlock_irq(q->queue_lock);
777eb1bf 587 elevator_exit(q->elevator);
7e5a8794 588 }
777eb1bf 589
a051661c 590 blk_exit_rl(&q->root_rl);
8324aa91
JA
591
592 if (q->queue_tags)
593 __blk_queue_free_tags(q);
594
45a9c9d9 595 if (!q->mq_ops)
f70ced09 596 blk_free_flush_queue(q->fq);
e09aae7e
ML
597 else
598 blk_mq_release(q);
18741986 599
8324aa91
JA
600 blk_trace_shutdown(q);
601
54efd50b
KO
602 if (q->bio_split)
603 bioset_free(q->bio_split);
604
a73f730d 605 ida_simple_remove(&blk_queue_ida, q->id);
548bc8e1 606 call_rcu(&q->rcu_head, blk_free_queue_rcu);
8324aa91
JA
607}
608
52cf25d0 609static const struct sysfs_ops queue_sysfs_ops = {
8324aa91
JA
610 .show = queue_attr_show,
611 .store = queue_attr_store,
612};
613
614struct kobj_type blk_queue_ktype = {
615 .sysfs_ops = &queue_sysfs_ops,
616 .default_attrs = default_attrs,
617 .release = blk_release_queue,
618};
619
620int blk_register_queue(struct gendisk *disk)
621{
622 int ret;
1d54ad6d 623 struct device *dev = disk_to_dev(disk);
8324aa91
JA
624 struct request_queue *q = disk->queue;
625
fb199746 626 if (WARN_ON(!q))
8324aa91
JA
627 return -ENXIO;
628
749fefe6 629 /*
17497acb
TH
630 * SCSI probing may synchronously create and destroy a lot of
631 * request_queues for non-existent devices. Shutting down a fully
632 * functional queue takes measureable wallclock time as RCU grace
633 * periods are involved. To avoid excessive latency in these
634 * cases, a request_queue starts out in a degraded mode which is
635 * faster to shut down and is made fully functional here as
636 * request_queues for non-existent devices never get registered.
749fefe6 637 */
df35c7c9
AS
638 if (!blk_queue_init_done(q)) {
639 queue_flag_set_unlocked(QUEUE_FLAG_INIT_DONE, q);
3ef28e83 640 percpu_ref_switch_to_percpu(&q->q_usage_counter);
df35c7c9
AS
641 blk_queue_bypass_end(q);
642 }
749fefe6 643
1d54ad6d
LZ
644 ret = blk_trace_init_sysfs(dev);
645 if (ret)
646 return ret;
647
c9059598 648 ret = kobject_add(&q->kobj, kobject_get(&dev->kobj), "%s", "queue");
ed5302d3
LY
649 if (ret < 0) {
650 blk_trace_remove_sysfs(dev);
8324aa91 651 return ret;
ed5302d3 652 }
8324aa91
JA
653
654 kobject_uevent(&q->kobj, KOBJ_ADD);
655
320ae51f
JA
656 if (q->mq_ops)
657 blk_mq_register_disk(disk);
658
cd43e26f
MP
659 if (!q->request_fn)
660 return 0;
661
8324aa91
JA
662 ret = elv_register_queue(q);
663 if (ret) {
664 kobject_uevent(&q->kobj, KOBJ_REMOVE);
665 kobject_del(&q->kobj);
80656b67 666 blk_trace_remove_sysfs(dev);
c87ffbb8 667 kobject_put(&dev->kobj);
8324aa91
JA
668 return ret;
669 }
670
671 return 0;
672}
673
674void blk_unregister_queue(struct gendisk *disk)
675{
676 struct request_queue *q = disk->queue;
677
fb199746
AM
678 if (WARN_ON(!q))
679 return;
680
320ae51f
JA
681 if (q->mq_ops)
682 blk_mq_unregister_disk(disk);
683
48c0d4d4 684 if (q->request_fn)
8324aa91
JA
685 elv_unregister_queue(q);
686
48c0d4d4
ZK
687 kobject_uevent(&q->kobj, KOBJ_REMOVE);
688 kobject_del(&q->kobj);
689 blk_trace_remove_sysfs(disk_to_dev(disk));
690 kobject_put(&disk_to_dev(disk)->kobj);
8324aa91 691}