1 // SPDX-License-Identifier: GPL-2.0
3 * Functions related to sysfs handling
5 #include <linux/kernel.h>
6 #include <linux/slab.h>
7 #include <linux/module.h>
9 #include <linux/blkdev.h>
10 #include <linux/backing-dev.h>
11 #include <linux/blktrace_api.h>
12 #include <linux/blk-mq.h>
13 #include <linux/blk-cgroup.h>
17 #include "blk-mq-debugfs.h"
20 struct queue_sysfs_entry
{
21 struct attribute attr
;
22 ssize_t (*show
)(struct request_queue
*, char *);
23 ssize_t (*store
)(struct request_queue
*, const char *, size_t);
27 queue_var_show(unsigned long var
, char *page
)
29 return sprintf(page
, "%lu\n", var
);
33 queue_var_store(unsigned long *var
, const char *page
, size_t count
)
38 err
= kstrtoul(page
, 10, &v
);
39 if (err
|| v
> UINT_MAX
)
47 static ssize_t
queue_var_store64(s64
*var
, const char *page
)
52 err
= kstrtos64(page
, 10, &v
);
60 static ssize_t
queue_requests_show(struct request_queue
*q
, char *page
)
62 return queue_var_show(q
->nr_requests
, (page
));
66 queue_requests_store(struct request_queue
*q
, const char *page
, size_t count
)
71 if (!q
->request_fn
&& !q
->mq_ops
)
74 ret
= queue_var_store(&nr
, page
, count
);
78 if (nr
< BLKDEV_MIN_RQ
)
82 err
= blk_update_nr_requests(q
, nr
);
84 err
= blk_mq_update_nr_requests(q
, nr
);
92 static ssize_t
queue_ra_show(struct request_queue
*q
, char *page
)
94 unsigned long ra_kb
= q
->backing_dev_info
->ra_pages
<<
97 return queue_var_show(ra_kb
, (page
));
101 queue_ra_store(struct request_queue
*q
, const char *page
, size_t count
)
104 ssize_t ret
= queue_var_store(&ra_kb
, page
, count
);
109 q
->backing_dev_info
->ra_pages
= ra_kb
>> (PAGE_SHIFT
- 10);
114 static ssize_t
queue_max_sectors_show(struct request_queue
*q
, char *page
)
116 int max_sectors_kb
= queue_max_sectors(q
) >> 1;
118 return queue_var_show(max_sectors_kb
, (page
));
121 static ssize_t
queue_max_segments_show(struct request_queue
*q
, char *page
)
123 return queue_var_show(queue_max_segments(q
), (page
));
126 static ssize_t
queue_max_discard_segments_show(struct request_queue
*q
,
129 return queue_var_show(queue_max_discard_segments(q
), (page
));
132 static ssize_t
queue_max_integrity_segments_show(struct request_queue
*q
, char *page
)
134 return queue_var_show(q
->limits
.max_integrity_segments
, (page
));
137 static ssize_t
queue_max_segment_size_show(struct request_queue
*q
, char *page
)
139 if (blk_queue_cluster(q
))
140 return queue_var_show(queue_max_segment_size(q
), (page
));
142 return queue_var_show(PAGE_SIZE
, (page
));
145 static ssize_t
queue_logical_block_size_show(struct request_queue
*q
, char *page
)
147 return queue_var_show(queue_logical_block_size(q
), page
);
150 static ssize_t
queue_physical_block_size_show(struct request_queue
*q
, char *page
)
152 return queue_var_show(queue_physical_block_size(q
), page
);
155 static ssize_t
queue_chunk_sectors_show(struct request_queue
*q
, char *page
)
157 return queue_var_show(q
->limits
.chunk_sectors
, page
);
160 static ssize_t
queue_io_min_show(struct request_queue
*q
, char *page
)
162 return queue_var_show(queue_io_min(q
), page
);
165 static ssize_t
queue_io_opt_show(struct request_queue
*q
, char *page
)
167 return queue_var_show(queue_io_opt(q
), page
);
170 static ssize_t
queue_discard_granularity_show(struct request_queue
*q
, char *page
)
172 return queue_var_show(q
->limits
.discard_granularity
, page
);
175 static ssize_t
queue_discard_max_hw_show(struct request_queue
*q
, char *page
)
178 return sprintf(page
, "%llu\n",
179 (unsigned long long)q
->limits
.max_hw_discard_sectors
<< 9);
182 static ssize_t
queue_discard_max_show(struct request_queue
*q
, char *page
)
184 return sprintf(page
, "%llu\n",
185 (unsigned long long)q
->limits
.max_discard_sectors
<< 9);
188 static ssize_t
queue_discard_max_store(struct request_queue
*q
,
189 const char *page
, size_t count
)
191 unsigned long max_discard
;
192 ssize_t ret
= queue_var_store(&max_discard
, page
, count
);
197 if (max_discard
& (q
->limits
.discard_granularity
- 1))
201 if (max_discard
> UINT_MAX
)
204 if (max_discard
> q
->limits
.max_hw_discard_sectors
)
205 max_discard
= q
->limits
.max_hw_discard_sectors
;
207 q
->limits
.max_discard_sectors
= max_discard
;
211 static ssize_t
queue_discard_zeroes_data_show(struct request_queue
*q
, char *page
)
213 return queue_var_show(0, page
);
216 static ssize_t
queue_write_same_max_show(struct request_queue
*q
, char *page
)
218 return sprintf(page
, "%llu\n",
219 (unsigned long long)q
->limits
.max_write_same_sectors
<< 9);
222 static ssize_t
queue_write_zeroes_max_show(struct request_queue
*q
, char *page
)
224 return sprintf(page
, "%llu\n",
225 (unsigned long long)q
->limits
.max_write_zeroes_sectors
<< 9);
229 queue_max_sectors_store(struct request_queue
*q
, const char *page
, size_t count
)
231 unsigned long max_sectors_kb
,
232 max_hw_sectors_kb
= queue_max_hw_sectors(q
) >> 1,
233 page_kb
= 1 << (PAGE_SHIFT
- 10);
234 ssize_t ret
= queue_var_store(&max_sectors_kb
, page
, count
);
239 max_hw_sectors_kb
= min_not_zero(max_hw_sectors_kb
, (unsigned long)
240 q
->limits
.max_dev_sectors
>> 1);
242 if (max_sectors_kb
> max_hw_sectors_kb
|| max_sectors_kb
< page_kb
)
245 spin_lock_irq(q
->queue_lock
);
246 q
->limits
.max_sectors
= max_sectors_kb
<< 1;
247 q
->backing_dev_info
->io_pages
= max_sectors_kb
>> (PAGE_SHIFT
- 10);
248 spin_unlock_irq(q
->queue_lock
);
253 static ssize_t
queue_max_hw_sectors_show(struct request_queue
*q
, char *page
)
255 int max_hw_sectors_kb
= queue_max_hw_sectors(q
) >> 1;
257 return queue_var_show(max_hw_sectors_kb
, (page
));
260 #define QUEUE_SYSFS_BIT_FNS(name, flag, neg) \
262 queue_show_##name(struct request_queue *q, char *page) \
265 bit = test_bit(QUEUE_FLAG_##flag, &q->queue_flags); \
266 return queue_var_show(neg ? !bit : bit, page); \
269 queue_store_##name(struct request_queue *q, const char *page, size_t count) \
273 ret = queue_var_store(&val, page, count); \
280 blk_queue_flag_set(QUEUE_FLAG_##flag, q); \
282 blk_queue_flag_clear(QUEUE_FLAG_##flag, q); \
286 QUEUE_SYSFS_BIT_FNS(nonrot
, NONROT
, 1);
287 QUEUE_SYSFS_BIT_FNS(random
, ADD_RANDOM
, 0);
288 QUEUE_SYSFS_BIT_FNS(iostats
, IO_STAT
, 0);
289 #undef QUEUE_SYSFS_BIT_FNS
291 static ssize_t
queue_zoned_show(struct request_queue
*q
, char *page
)
293 switch (blk_queue_zoned_model(q
)) {
295 return sprintf(page
, "host-aware\n");
297 return sprintf(page
, "host-managed\n");
299 return sprintf(page
, "none\n");
303 static ssize_t
queue_nomerges_show(struct request_queue
*q
, char *page
)
305 return queue_var_show((blk_queue_nomerges(q
) << 1) |
306 blk_queue_noxmerges(q
), page
);
309 static ssize_t
queue_nomerges_store(struct request_queue
*q
, const char *page
,
313 ssize_t ret
= queue_var_store(&nm
, page
, count
);
318 spin_lock_irq(q
->queue_lock
);
319 queue_flag_clear(QUEUE_FLAG_NOMERGES
, q
);
320 queue_flag_clear(QUEUE_FLAG_NOXMERGES
, q
);
322 queue_flag_set(QUEUE_FLAG_NOMERGES
, q
);
324 queue_flag_set(QUEUE_FLAG_NOXMERGES
, q
);
325 spin_unlock_irq(q
->queue_lock
);
330 static ssize_t
queue_rq_affinity_show(struct request_queue
*q
, char *page
)
332 bool set
= test_bit(QUEUE_FLAG_SAME_COMP
, &q
->queue_flags
);
333 bool force
= test_bit(QUEUE_FLAG_SAME_FORCE
, &q
->queue_flags
);
335 return queue_var_show(set
<< force
, page
);
339 queue_rq_affinity_store(struct request_queue
*q
, const char *page
, size_t count
)
341 ssize_t ret
= -EINVAL
;
345 ret
= queue_var_store(&val
, page
, count
);
349 spin_lock_irq(q
->queue_lock
);
351 queue_flag_set(QUEUE_FLAG_SAME_COMP
, q
);
352 queue_flag_set(QUEUE_FLAG_SAME_FORCE
, q
);
353 } else if (val
== 1) {
354 queue_flag_set(QUEUE_FLAG_SAME_COMP
, q
);
355 queue_flag_clear(QUEUE_FLAG_SAME_FORCE
, q
);
356 } else if (val
== 0) {
357 queue_flag_clear(QUEUE_FLAG_SAME_COMP
, q
);
358 queue_flag_clear(QUEUE_FLAG_SAME_FORCE
, q
);
360 spin_unlock_irq(q
->queue_lock
);
365 static ssize_t
queue_poll_delay_show(struct request_queue
*q
, char *page
)
369 if (q
->poll_nsec
== -1)
372 val
= q
->poll_nsec
/ 1000;
374 return sprintf(page
, "%d\n", val
);
377 static ssize_t
queue_poll_delay_store(struct request_queue
*q
, const char *page
,
382 if (!q
->mq_ops
|| !q
->mq_ops
->poll
)
385 err
= kstrtoint(page
, 10, &val
);
392 q
->poll_nsec
= val
* 1000;
397 static ssize_t
queue_poll_show(struct request_queue
*q
, char *page
)
399 return queue_var_show(test_bit(QUEUE_FLAG_POLL
, &q
->queue_flags
), page
);
402 static ssize_t
queue_poll_store(struct request_queue
*q
, const char *page
,
405 unsigned long poll_on
;
408 if (!q
->mq_ops
|| !q
->mq_ops
->poll
)
411 ret
= queue_var_store(&poll_on
, page
, count
);
416 blk_queue_flag_set(QUEUE_FLAG_POLL
, q
);
418 blk_queue_flag_clear(QUEUE_FLAG_POLL
, q
);
423 static ssize_t
queue_wb_lat_show(struct request_queue
*q
, char *page
)
428 return sprintf(page
, "%llu\n", div_u64(q
->rq_wb
->min_lat_nsec
, 1000));
431 static ssize_t
queue_wb_lat_store(struct request_queue
*q
, const char *page
,
438 ret
= queue_var_store64(&val
, page
);
453 rwb
->min_lat_nsec
= wbt_default_latency_nsec(q
);
455 rwb
->min_lat_nsec
= val
* 1000ULL;
457 if (rwb
->enable_state
== WBT_STATE_ON_DEFAULT
)
458 rwb
->enable_state
= WBT_STATE_ON_MANUAL
;
460 wbt_update_limits(rwb
);
464 static ssize_t
queue_wc_show(struct request_queue
*q
, char *page
)
466 if (test_bit(QUEUE_FLAG_WC
, &q
->queue_flags
))
467 return sprintf(page
, "write back\n");
469 return sprintf(page
, "write through\n");
472 static ssize_t
queue_wc_store(struct request_queue
*q
, const char *page
,
477 if (!strncmp(page
, "write back", 10))
479 else if (!strncmp(page
, "write through", 13) ||
480 !strncmp(page
, "none", 4))
487 blk_queue_flag_set(QUEUE_FLAG_WC
, q
);
489 blk_queue_flag_clear(QUEUE_FLAG_WC
, q
);
494 static ssize_t
queue_dax_show(struct request_queue
*q
, char *page
)
496 return queue_var_show(blk_queue_dax(q
), page
);
499 static struct queue_sysfs_entry queue_requests_entry
= {
500 .attr
= {.name
= "nr_requests", .mode
= S_IRUGO
| S_IWUSR
},
501 .show
= queue_requests_show
,
502 .store
= queue_requests_store
,
505 static struct queue_sysfs_entry queue_ra_entry
= {
506 .attr
= {.name
= "read_ahead_kb", .mode
= S_IRUGO
| S_IWUSR
},
507 .show
= queue_ra_show
,
508 .store
= queue_ra_store
,
511 static struct queue_sysfs_entry queue_max_sectors_entry
= {
512 .attr
= {.name
= "max_sectors_kb", .mode
= S_IRUGO
| S_IWUSR
},
513 .show
= queue_max_sectors_show
,
514 .store
= queue_max_sectors_store
,
517 static struct queue_sysfs_entry queue_max_hw_sectors_entry
= {
518 .attr
= {.name
= "max_hw_sectors_kb", .mode
= S_IRUGO
},
519 .show
= queue_max_hw_sectors_show
,
522 static struct queue_sysfs_entry queue_max_segments_entry
= {
523 .attr
= {.name
= "max_segments", .mode
= S_IRUGO
},
524 .show
= queue_max_segments_show
,
527 static struct queue_sysfs_entry queue_max_discard_segments_entry
= {
528 .attr
= {.name
= "max_discard_segments", .mode
= S_IRUGO
},
529 .show
= queue_max_discard_segments_show
,
532 static struct queue_sysfs_entry queue_max_integrity_segments_entry
= {
533 .attr
= {.name
= "max_integrity_segments", .mode
= S_IRUGO
},
534 .show
= queue_max_integrity_segments_show
,
537 static struct queue_sysfs_entry queue_max_segment_size_entry
= {
538 .attr
= {.name
= "max_segment_size", .mode
= S_IRUGO
},
539 .show
= queue_max_segment_size_show
,
542 static struct queue_sysfs_entry queue_iosched_entry
= {
543 .attr
= {.name
= "scheduler", .mode
= S_IRUGO
| S_IWUSR
},
544 .show
= elv_iosched_show
,
545 .store
= elv_iosched_store
,
548 static struct queue_sysfs_entry queue_hw_sector_size_entry
= {
549 .attr
= {.name
= "hw_sector_size", .mode
= S_IRUGO
},
550 .show
= queue_logical_block_size_show
,
553 static struct queue_sysfs_entry queue_logical_block_size_entry
= {
554 .attr
= {.name
= "logical_block_size", .mode
= S_IRUGO
},
555 .show
= queue_logical_block_size_show
,
558 static struct queue_sysfs_entry queue_physical_block_size_entry
= {
559 .attr
= {.name
= "physical_block_size", .mode
= S_IRUGO
},
560 .show
= queue_physical_block_size_show
,
563 static struct queue_sysfs_entry queue_chunk_sectors_entry
= {
564 .attr
= {.name
= "chunk_sectors", .mode
= S_IRUGO
},
565 .show
= queue_chunk_sectors_show
,
568 static struct queue_sysfs_entry queue_io_min_entry
= {
569 .attr
= {.name
= "minimum_io_size", .mode
= S_IRUGO
},
570 .show
= queue_io_min_show
,
573 static struct queue_sysfs_entry queue_io_opt_entry
= {
574 .attr
= {.name
= "optimal_io_size", .mode
= S_IRUGO
},
575 .show
= queue_io_opt_show
,
578 static struct queue_sysfs_entry queue_discard_granularity_entry
= {
579 .attr
= {.name
= "discard_granularity", .mode
= S_IRUGO
},
580 .show
= queue_discard_granularity_show
,
583 static struct queue_sysfs_entry queue_discard_max_hw_entry
= {
584 .attr
= {.name
= "discard_max_hw_bytes", .mode
= S_IRUGO
},
585 .show
= queue_discard_max_hw_show
,
588 static struct queue_sysfs_entry queue_discard_max_entry
= {
589 .attr
= {.name
= "discard_max_bytes", .mode
= S_IRUGO
| S_IWUSR
},
590 .show
= queue_discard_max_show
,
591 .store
= queue_discard_max_store
,
594 static struct queue_sysfs_entry queue_discard_zeroes_data_entry
= {
595 .attr
= {.name
= "discard_zeroes_data", .mode
= S_IRUGO
},
596 .show
= queue_discard_zeroes_data_show
,
599 static struct queue_sysfs_entry queue_write_same_max_entry
= {
600 .attr
= {.name
= "write_same_max_bytes", .mode
= S_IRUGO
},
601 .show
= queue_write_same_max_show
,
604 static struct queue_sysfs_entry queue_write_zeroes_max_entry
= {
605 .attr
= {.name
= "write_zeroes_max_bytes", .mode
= S_IRUGO
},
606 .show
= queue_write_zeroes_max_show
,
609 static struct queue_sysfs_entry queue_nonrot_entry
= {
610 .attr
= {.name
= "rotational", .mode
= S_IRUGO
| S_IWUSR
},
611 .show
= queue_show_nonrot
,
612 .store
= queue_store_nonrot
,
615 static struct queue_sysfs_entry queue_zoned_entry
= {
616 .attr
= {.name
= "zoned", .mode
= S_IRUGO
},
617 .show
= queue_zoned_show
,
620 static struct queue_sysfs_entry queue_nomerges_entry
= {
621 .attr
= {.name
= "nomerges", .mode
= S_IRUGO
| S_IWUSR
},
622 .show
= queue_nomerges_show
,
623 .store
= queue_nomerges_store
,
626 static struct queue_sysfs_entry queue_rq_affinity_entry
= {
627 .attr
= {.name
= "rq_affinity", .mode
= S_IRUGO
| S_IWUSR
},
628 .show
= queue_rq_affinity_show
,
629 .store
= queue_rq_affinity_store
,
632 static struct queue_sysfs_entry queue_iostats_entry
= {
633 .attr
= {.name
= "iostats", .mode
= S_IRUGO
| S_IWUSR
},
634 .show
= queue_show_iostats
,
635 .store
= queue_store_iostats
,
638 static struct queue_sysfs_entry queue_random_entry
= {
639 .attr
= {.name
= "add_random", .mode
= S_IRUGO
| S_IWUSR
},
640 .show
= queue_show_random
,
641 .store
= queue_store_random
,
644 static struct queue_sysfs_entry queue_poll_entry
= {
645 .attr
= {.name
= "io_poll", .mode
= S_IRUGO
| S_IWUSR
},
646 .show
= queue_poll_show
,
647 .store
= queue_poll_store
,
650 static struct queue_sysfs_entry queue_poll_delay_entry
= {
651 .attr
= {.name
= "io_poll_delay", .mode
= S_IRUGO
| S_IWUSR
},
652 .show
= queue_poll_delay_show
,
653 .store
= queue_poll_delay_store
,
656 static struct queue_sysfs_entry queue_wc_entry
= {
657 .attr
= {.name
= "write_cache", .mode
= S_IRUGO
| S_IWUSR
},
658 .show
= queue_wc_show
,
659 .store
= queue_wc_store
,
662 static struct queue_sysfs_entry queue_dax_entry
= {
663 .attr
= {.name
= "dax", .mode
= S_IRUGO
},
664 .show
= queue_dax_show
,
667 static struct queue_sysfs_entry queue_wb_lat_entry
= {
668 .attr
= {.name
= "wbt_lat_usec", .mode
= S_IRUGO
| S_IWUSR
},
669 .show
= queue_wb_lat_show
,
670 .store
= queue_wb_lat_store
,
673 #ifdef CONFIG_BLK_DEV_THROTTLING_LOW
674 static struct queue_sysfs_entry throtl_sample_time_entry
= {
675 .attr
= {.name
= "throttle_sample_time", .mode
= S_IRUGO
| S_IWUSR
},
676 .show
= blk_throtl_sample_time_show
,
677 .store
= blk_throtl_sample_time_store
,
681 static struct attribute
*default_attrs
[] = {
682 &queue_requests_entry
.attr
,
683 &queue_ra_entry
.attr
,
684 &queue_max_hw_sectors_entry
.attr
,
685 &queue_max_sectors_entry
.attr
,
686 &queue_max_segments_entry
.attr
,
687 &queue_max_discard_segments_entry
.attr
,
688 &queue_max_integrity_segments_entry
.attr
,
689 &queue_max_segment_size_entry
.attr
,
690 &queue_iosched_entry
.attr
,
691 &queue_hw_sector_size_entry
.attr
,
692 &queue_logical_block_size_entry
.attr
,
693 &queue_physical_block_size_entry
.attr
,
694 &queue_chunk_sectors_entry
.attr
,
695 &queue_io_min_entry
.attr
,
696 &queue_io_opt_entry
.attr
,
697 &queue_discard_granularity_entry
.attr
,
698 &queue_discard_max_entry
.attr
,
699 &queue_discard_max_hw_entry
.attr
,
700 &queue_discard_zeroes_data_entry
.attr
,
701 &queue_write_same_max_entry
.attr
,
702 &queue_write_zeroes_max_entry
.attr
,
703 &queue_nonrot_entry
.attr
,
704 &queue_zoned_entry
.attr
,
705 &queue_nomerges_entry
.attr
,
706 &queue_rq_affinity_entry
.attr
,
707 &queue_iostats_entry
.attr
,
708 &queue_random_entry
.attr
,
709 &queue_poll_entry
.attr
,
710 &queue_wc_entry
.attr
,
711 &queue_dax_entry
.attr
,
712 &queue_wb_lat_entry
.attr
,
713 &queue_poll_delay_entry
.attr
,
714 #ifdef CONFIG_BLK_DEV_THROTTLING_LOW
715 &throtl_sample_time_entry
.attr
,
720 #define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr)
723 queue_attr_show(struct kobject
*kobj
, struct attribute
*attr
, char *page
)
725 struct queue_sysfs_entry
*entry
= to_queue(attr
);
726 struct request_queue
*q
=
727 container_of(kobj
, struct request_queue
, kobj
);
732 mutex_lock(&q
->sysfs_lock
);
733 if (blk_queue_dying(q
)) {
734 mutex_unlock(&q
->sysfs_lock
);
737 res
= entry
->show(q
, page
);
738 mutex_unlock(&q
->sysfs_lock
);
743 queue_attr_store(struct kobject
*kobj
, struct attribute
*attr
,
744 const char *page
, size_t length
)
746 struct queue_sysfs_entry
*entry
= to_queue(attr
);
747 struct request_queue
*q
;
753 q
= container_of(kobj
, struct request_queue
, kobj
);
754 mutex_lock(&q
->sysfs_lock
);
755 if (blk_queue_dying(q
)) {
756 mutex_unlock(&q
->sysfs_lock
);
759 res
= entry
->store(q
, page
, length
);
760 mutex_unlock(&q
->sysfs_lock
);
764 static void blk_free_queue_rcu(struct rcu_head
*rcu_head
)
766 struct request_queue
*q
= container_of(rcu_head
, struct request_queue
,
768 kmem_cache_free(blk_requestq_cachep
, q
);
772 * __blk_release_queue - release a request queue when it is no longer needed
773 * @work: pointer to the release_work member of the request queue to be released
776 * blk_release_queue is the counterpart of blk_init_queue(). It should be
777 * called when a request queue is being released; typically when a block
778 * device is being de-registered. Its primary task it to free the queue
782 * The low level driver must have finished any outstanding requests first
783 * via blk_cleanup_queue().
785 * Although blk_release_queue() may be called with preemption disabled,
786 * __blk_release_queue() may sleep.
788 static void __blk_release_queue(struct work_struct
*work
)
790 struct request_queue
*q
= container_of(work
, typeof(*q
), release_work
);
792 if (test_bit(QUEUE_FLAG_POLL_STATS
, &q
->queue_flags
))
793 blk_stat_remove_callback(q
, q
->poll_cb
);
794 blk_stat_free_callback(q
->poll_cb
);
796 blk_free_queue_stats(q
->stats
);
798 blk_exit_rl(q
, &q
->root_rl
);
801 __blk_queue_free_tags(q
);
805 q
->exit_rq_fn(q
, q
->fq
->flush_rq
);
806 blk_free_flush_queue(q
->fq
);
811 blk_trace_shutdown(q
);
814 blk_mq_debugfs_unregister(q
);
817 bioset_free(q
->bio_split
);
819 ida_simple_remove(&blk_queue_ida
, q
->id
);
820 call_rcu(&q
->rcu_head
, blk_free_queue_rcu
);
823 static void blk_release_queue(struct kobject
*kobj
)
825 struct request_queue
*q
=
826 container_of(kobj
, struct request_queue
, kobj
);
828 INIT_WORK(&q
->release_work
, __blk_release_queue
);
829 schedule_work(&q
->release_work
);
832 static const struct sysfs_ops queue_sysfs_ops
= {
833 .show
= queue_attr_show
,
834 .store
= queue_attr_store
,
837 struct kobj_type blk_queue_ktype
= {
838 .sysfs_ops
= &queue_sysfs_ops
,
839 .default_attrs
= default_attrs
,
840 .release
= blk_release_queue
,
844 * blk_register_queue - register a block layer queue with sysfs
845 * @disk: Disk of which the request queue should be registered with sysfs.
847 int blk_register_queue(struct gendisk
*disk
)
850 struct device
*dev
= disk_to_dev(disk
);
851 struct request_queue
*q
= disk
->queue
;
856 WARN_ONCE(test_bit(QUEUE_FLAG_REGISTERED
, &q
->queue_flags
),
857 "%s is registering an already registered queue\n",
858 kobject_name(&dev
->kobj
));
859 queue_flag_set_unlocked(QUEUE_FLAG_REGISTERED
, q
);
862 * SCSI probing may synchronously create and destroy a lot of
863 * request_queues for non-existent devices. Shutting down a fully
864 * functional queue takes measureable wallclock time as RCU grace
865 * periods are involved. To avoid excessive latency in these
866 * cases, a request_queue starts out in a degraded mode which is
867 * faster to shut down and is made fully functional here as
868 * request_queues for non-existent devices never get registered.
870 if (!blk_queue_init_done(q
)) {
871 queue_flag_set_unlocked(QUEUE_FLAG_INIT_DONE
, q
);
872 percpu_ref_switch_to_percpu(&q
->q_usage_counter
);
873 blk_queue_bypass_end(q
);
876 ret
= blk_trace_init_sysfs(dev
);
880 /* Prevent changes through sysfs until registration is completed. */
881 mutex_lock(&q
->sysfs_lock
);
883 ret
= kobject_add(&q
->kobj
, kobject_get(&dev
->kobj
), "%s", "queue");
885 blk_trace_remove_sysfs(dev
);
890 __blk_mq_register_dev(dev
, q
);
891 blk_mq_debugfs_register(q
);
894 kobject_uevent(&q
->kobj
, KOBJ_ADD
);
896 wbt_enable_default(q
);
898 blk_throtl_register_queue(q
);
900 if (q
->request_fn
|| (q
->mq_ops
&& q
->elevator
)) {
901 ret
= elv_register_queue(q
);
903 mutex_unlock(&q
->sysfs_lock
);
904 kobject_uevent(&q
->kobj
, KOBJ_REMOVE
);
905 kobject_del(&q
->kobj
);
906 blk_trace_remove_sysfs(dev
);
907 kobject_put(&dev
->kobj
);
913 mutex_unlock(&q
->sysfs_lock
);
916 EXPORT_SYMBOL_GPL(blk_register_queue
);
919 * blk_unregister_queue - counterpart of blk_register_queue()
920 * @disk: Disk of which the request queue should be unregistered from sysfs.
922 * Note: the caller is responsible for guaranteeing that this function is called
923 * after blk_register_queue() has finished.
925 void blk_unregister_queue(struct gendisk
*disk
)
927 struct request_queue
*q
= disk
->queue
;
932 /* Return early if disk->queue was never registered. */
933 if (!test_bit(QUEUE_FLAG_REGISTERED
, &q
->queue_flags
))
937 * Since sysfs_remove_dir() prevents adding new directory entries
938 * before removal of existing entries starts, protect against
939 * concurrent elv_iosched_store() calls.
941 mutex_lock(&q
->sysfs_lock
);
943 blk_queue_flag_clear(QUEUE_FLAG_REGISTERED
, q
);
946 * Remove the sysfs attributes before unregistering the queue data
947 * structures that can be modified through sysfs.
950 blk_mq_unregister_dev(disk_to_dev(disk
), q
);
951 mutex_unlock(&q
->sysfs_lock
);
953 kobject_uevent(&q
->kobj
, KOBJ_REMOVE
);
954 kobject_del(&q
->kobj
);
955 blk_trace_remove_sysfs(disk_to_dev(disk
));
959 mutex_lock(&q
->sysfs_lock
);
960 if (q
->request_fn
|| (q
->mq_ops
&& q
->elevator
))
961 elv_unregister_queue(q
);
962 mutex_unlock(&q
->sysfs_lock
);
964 kobject_put(&disk_to_dev(disk
)->kobj
);