]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - block/blk-sysfs.c
block: add missing blk_queue_dead() checks
[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>
9#include <linux/blktrace_api.h>
10
11#include "blk.h"
12
13struct queue_sysfs_entry {
14 struct attribute attr;
15 ssize_t (*show)(struct request_queue *, char *);
16 ssize_t (*store)(struct request_queue *, const char *, size_t);
17};
18
19static ssize_t
9cb308ce 20queue_var_show(unsigned long var, char *page)
8324aa91 21{
9cb308ce 22 return sprintf(page, "%lu\n", var);
8324aa91
JA
23}
24
25static ssize_t
26queue_var_store(unsigned long *var, const char *page, size_t count)
27{
28 char *p = (char *) page;
29
30 *var = simple_strtoul(p, &p, 10);
31 return count;
32}
33
34static ssize_t queue_requests_show(struct request_queue *q, char *page)
35{
36 return queue_var_show(q->nr_requests, (page));
37}
38
39static ssize_t
40queue_requests_store(struct request_queue *q, const char *page, size_t count)
41{
42 struct request_list *rl = &q->rq;
43 unsigned long nr;
b8a9ae77
JA
44 int ret;
45
46 if (!q->request_fn)
47 return -EINVAL;
48
49 ret = queue_var_store(&nr, page, count);
8324aa91
JA
50 if (nr < BLKDEV_MIN_RQ)
51 nr = BLKDEV_MIN_RQ;
52
53 spin_lock_irq(q->queue_lock);
54 q->nr_requests = nr;
55 blk_queue_congestion_threshold(q);
56
1faa16d2
JA
57 if (rl->count[BLK_RW_SYNC] >= queue_congestion_on_threshold(q))
58 blk_set_queue_congested(q, BLK_RW_SYNC);
59 else if (rl->count[BLK_RW_SYNC] < queue_congestion_off_threshold(q))
60 blk_clear_queue_congested(q, BLK_RW_SYNC);
61
62 if (rl->count[BLK_RW_ASYNC] >= queue_congestion_on_threshold(q))
63 blk_set_queue_congested(q, BLK_RW_ASYNC);
64 else if (rl->count[BLK_RW_ASYNC] < queue_congestion_off_threshold(q))
65 blk_clear_queue_congested(q, BLK_RW_ASYNC);
66
67 if (rl->count[BLK_RW_SYNC] >= q->nr_requests) {
68 blk_set_queue_full(q, BLK_RW_SYNC);
60735b63 69 } else {
1faa16d2
JA
70 blk_clear_queue_full(q, BLK_RW_SYNC);
71 wake_up(&rl->wait[BLK_RW_SYNC]);
8324aa91
JA
72 }
73
1faa16d2
JA
74 if (rl->count[BLK_RW_ASYNC] >= q->nr_requests) {
75 blk_set_queue_full(q, BLK_RW_ASYNC);
60735b63 76 } else {
1faa16d2
JA
77 blk_clear_queue_full(q, BLK_RW_ASYNC);
78 wake_up(&rl->wait[BLK_RW_ASYNC]);
8324aa91
JA
79 }
80 spin_unlock_irq(q->queue_lock);
81 return ret;
82}
83
84static ssize_t queue_ra_show(struct request_queue *q, char *page)
85{
9cb308ce
XF
86 unsigned long ra_kb = q->backing_dev_info.ra_pages <<
87 (PAGE_CACHE_SHIFT - 10);
8324aa91
JA
88
89 return queue_var_show(ra_kb, (page));
90}
91
92static ssize_t
93queue_ra_store(struct request_queue *q, const char *page, size_t count)
94{
95 unsigned long ra_kb;
96 ssize_t ret = queue_var_store(&ra_kb, page, count);
97
8324aa91 98 q->backing_dev_info.ra_pages = ra_kb >> (PAGE_CACHE_SHIFT - 10);
8324aa91
JA
99
100 return ret;
101}
102
103static ssize_t queue_max_sectors_show(struct request_queue *q, char *page)
104{
ae03bf63 105 int max_sectors_kb = queue_max_sectors(q) >> 1;
8324aa91
JA
106
107 return queue_var_show(max_sectors_kb, (page));
108}
109
c77a5710
MP
110static ssize_t queue_max_segments_show(struct request_queue *q, char *page)
111{
112 return queue_var_show(queue_max_segments(q), (page));
113}
114
13f05c8d
MP
115static ssize_t queue_max_integrity_segments_show(struct request_queue *q, char *page)
116{
117 return queue_var_show(q->limits.max_integrity_segments, (page));
118}
119
c77a5710
MP
120static ssize_t queue_max_segment_size_show(struct request_queue *q, char *page)
121{
e692cb66 122 if (blk_queue_cluster(q))
c77a5710
MP
123 return queue_var_show(queue_max_segment_size(q), (page));
124
125 return queue_var_show(PAGE_CACHE_SIZE, (page));
126}
127
e1defc4f 128static ssize_t queue_logical_block_size_show(struct request_queue *q, char *page)
e68b903c 129{
e1defc4f 130 return queue_var_show(queue_logical_block_size(q), page);
e68b903c
MP
131}
132
c72758f3
MP
133static ssize_t queue_physical_block_size_show(struct request_queue *q, char *page)
134{
135 return queue_var_show(queue_physical_block_size(q), page);
136}
137
138static ssize_t queue_io_min_show(struct request_queue *q, char *page)
139{
140 return queue_var_show(queue_io_min(q), page);
141}
142
143static ssize_t queue_io_opt_show(struct request_queue *q, char *page)
144{
145 return queue_var_show(queue_io_opt(q), page);
e68b903c
MP
146}
147
86b37281
MP
148static ssize_t queue_discard_granularity_show(struct request_queue *q, char *page)
149{
150 return queue_var_show(q->limits.discard_granularity, page);
151}
152
153static ssize_t queue_discard_max_show(struct request_queue *q, char *page)
154{
a934a00a
MP
155 return sprintf(page, "%llu\n",
156 (unsigned long long)q->limits.max_discard_sectors << 9);
86b37281
MP
157}
158
98262f27
MP
159static ssize_t queue_discard_zeroes_data_show(struct request_queue *q, char *page)
160{
161 return queue_var_show(queue_discard_zeroes_data(q), page);
162}
163
8324aa91
JA
164static ssize_t
165queue_max_sectors_store(struct request_queue *q, const char *page, size_t count)
166{
167 unsigned long max_sectors_kb,
ae03bf63 168 max_hw_sectors_kb = queue_max_hw_sectors(q) >> 1,
8324aa91
JA
169 page_kb = 1 << (PAGE_CACHE_SHIFT - 10);
170 ssize_t ret = queue_var_store(&max_sectors_kb, page, count);
171
172 if (max_sectors_kb > max_hw_sectors_kb || max_sectors_kb < page_kb)
173 return -EINVAL;
7c239517 174
8324aa91 175 spin_lock_irq(q->queue_lock);
c295fc05 176 q->limits.max_sectors = max_sectors_kb << 1;
8324aa91
JA
177 spin_unlock_irq(q->queue_lock);
178
179 return ret;
180}
181
182static ssize_t queue_max_hw_sectors_show(struct request_queue *q, char *page)
183{
ae03bf63 184 int max_hw_sectors_kb = queue_max_hw_sectors(q) >> 1;
8324aa91
JA
185
186 return queue_var_show(max_hw_sectors_kb, (page));
187}
188
956bcb7c
JA
189#define QUEUE_SYSFS_BIT_FNS(name, flag, neg) \
190static ssize_t \
191queue_show_##name(struct request_queue *q, char *page) \
192{ \
193 int bit; \
194 bit = test_bit(QUEUE_FLAG_##flag, &q->queue_flags); \
195 return queue_var_show(neg ? !bit : bit, page); \
196} \
197static ssize_t \
198queue_store_##name(struct request_queue *q, const char *page, size_t count) \
199{ \
200 unsigned long val; \
201 ssize_t ret; \
202 ret = queue_var_store(&val, page, count); \
203 if (neg) \
204 val = !val; \
205 \
206 spin_lock_irq(q->queue_lock); \
207 if (val) \
208 queue_flag_set(QUEUE_FLAG_##flag, q); \
209 else \
210 queue_flag_clear(QUEUE_FLAG_##flag, q); \
211 spin_unlock_irq(q->queue_lock); \
212 return ret; \
1308835f
BZ
213}
214
956bcb7c
JA
215QUEUE_SYSFS_BIT_FNS(nonrot, NONROT, 1);
216QUEUE_SYSFS_BIT_FNS(random, ADD_RANDOM, 0);
217QUEUE_SYSFS_BIT_FNS(iostats, IO_STAT, 0);
218#undef QUEUE_SYSFS_BIT_FNS
1308835f 219
ac9fafa1
AB
220static ssize_t queue_nomerges_show(struct request_queue *q, char *page)
221{
488991e2
AB
222 return queue_var_show((blk_queue_nomerges(q) << 1) |
223 blk_queue_noxmerges(q), page);
ac9fafa1
AB
224}
225
226static ssize_t queue_nomerges_store(struct request_queue *q, const char *page,
227 size_t count)
228{
229 unsigned long nm;
230 ssize_t ret = queue_var_store(&nm, page, count);
231
bf0f9702 232 spin_lock_irq(q->queue_lock);
488991e2
AB
233 queue_flag_clear(QUEUE_FLAG_NOMERGES, q);
234 queue_flag_clear(QUEUE_FLAG_NOXMERGES, q);
235 if (nm == 2)
bf0f9702 236 queue_flag_set(QUEUE_FLAG_NOMERGES, q);
488991e2
AB
237 else if (nm)
238 queue_flag_set(QUEUE_FLAG_NOXMERGES, q);
bf0f9702 239 spin_unlock_irq(q->queue_lock);
1308835f 240
ac9fafa1
AB
241 return ret;
242}
243
c7c22e4d
JA
244static ssize_t queue_rq_affinity_show(struct request_queue *q, char *page)
245{
9cb308ce 246 bool set = test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags);
5757a6d7 247 bool force = test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags);
c7c22e4d 248
5757a6d7 249 return queue_var_show(set << force, page);
c7c22e4d
JA
250}
251
252static ssize_t
253queue_rq_affinity_store(struct request_queue *q, const char *page, size_t count)
254{
255 ssize_t ret = -EINVAL;
256#if defined(CONFIG_USE_GENERIC_SMP_HELPERS)
257 unsigned long val;
258
259 ret = queue_var_store(&val, page, count);
260 spin_lock_irq(q->queue_lock);
e8037d49 261 if (val == 2) {
c7c22e4d 262 queue_flag_set(QUEUE_FLAG_SAME_COMP, q);
e8037d49
ES
263 queue_flag_set(QUEUE_FLAG_SAME_FORCE, q);
264 } else if (val == 1) {
265 queue_flag_set(QUEUE_FLAG_SAME_COMP, q);
266 queue_flag_clear(QUEUE_FLAG_SAME_FORCE, q);
267 } else if (val == 0) {
5757a6d7
DW
268 queue_flag_clear(QUEUE_FLAG_SAME_COMP, q);
269 queue_flag_clear(QUEUE_FLAG_SAME_FORCE, q);
270 }
c7c22e4d
JA
271 spin_unlock_irq(q->queue_lock);
272#endif
273 return ret;
274}
8324aa91
JA
275
276static struct queue_sysfs_entry queue_requests_entry = {
277 .attr = {.name = "nr_requests", .mode = S_IRUGO | S_IWUSR },
278 .show = queue_requests_show,
279 .store = queue_requests_store,
280};
281
282static struct queue_sysfs_entry queue_ra_entry = {
283 .attr = {.name = "read_ahead_kb", .mode = S_IRUGO | S_IWUSR },
284 .show = queue_ra_show,
285 .store = queue_ra_store,
286};
287
288static struct queue_sysfs_entry queue_max_sectors_entry = {
289 .attr = {.name = "max_sectors_kb", .mode = S_IRUGO | S_IWUSR },
290 .show = queue_max_sectors_show,
291 .store = queue_max_sectors_store,
292};
293
294static struct queue_sysfs_entry queue_max_hw_sectors_entry = {
295 .attr = {.name = "max_hw_sectors_kb", .mode = S_IRUGO },
296 .show = queue_max_hw_sectors_show,
297};
298
c77a5710
MP
299static struct queue_sysfs_entry queue_max_segments_entry = {
300 .attr = {.name = "max_segments", .mode = S_IRUGO },
301 .show = queue_max_segments_show,
302};
303
13f05c8d
MP
304static struct queue_sysfs_entry queue_max_integrity_segments_entry = {
305 .attr = {.name = "max_integrity_segments", .mode = S_IRUGO },
306 .show = queue_max_integrity_segments_show,
307};
308
c77a5710
MP
309static struct queue_sysfs_entry queue_max_segment_size_entry = {
310 .attr = {.name = "max_segment_size", .mode = S_IRUGO },
311 .show = queue_max_segment_size_show,
312};
313
8324aa91
JA
314static struct queue_sysfs_entry queue_iosched_entry = {
315 .attr = {.name = "scheduler", .mode = S_IRUGO | S_IWUSR },
316 .show = elv_iosched_show,
317 .store = elv_iosched_store,
318};
319
e68b903c
MP
320static struct queue_sysfs_entry queue_hw_sector_size_entry = {
321 .attr = {.name = "hw_sector_size", .mode = S_IRUGO },
e1defc4f
MP
322 .show = queue_logical_block_size_show,
323};
324
325static struct queue_sysfs_entry queue_logical_block_size_entry = {
326 .attr = {.name = "logical_block_size", .mode = S_IRUGO },
327 .show = queue_logical_block_size_show,
e68b903c
MP
328};
329
c72758f3
MP
330static struct queue_sysfs_entry queue_physical_block_size_entry = {
331 .attr = {.name = "physical_block_size", .mode = S_IRUGO },
332 .show = queue_physical_block_size_show,
333};
334
335static struct queue_sysfs_entry queue_io_min_entry = {
336 .attr = {.name = "minimum_io_size", .mode = S_IRUGO },
337 .show = queue_io_min_show,
338};
339
340static struct queue_sysfs_entry queue_io_opt_entry = {
341 .attr = {.name = "optimal_io_size", .mode = S_IRUGO },
342 .show = queue_io_opt_show,
e68b903c
MP
343};
344
86b37281
MP
345static struct queue_sysfs_entry queue_discard_granularity_entry = {
346 .attr = {.name = "discard_granularity", .mode = S_IRUGO },
347 .show = queue_discard_granularity_show,
348};
349
350static struct queue_sysfs_entry queue_discard_max_entry = {
351 .attr = {.name = "discard_max_bytes", .mode = S_IRUGO },
352 .show = queue_discard_max_show,
353};
354
98262f27
MP
355static struct queue_sysfs_entry queue_discard_zeroes_data_entry = {
356 .attr = {.name = "discard_zeroes_data", .mode = S_IRUGO },
357 .show = queue_discard_zeroes_data_show,
358};
359
1308835f
BZ
360static struct queue_sysfs_entry queue_nonrot_entry = {
361 .attr = {.name = "rotational", .mode = S_IRUGO | S_IWUSR },
956bcb7c
JA
362 .show = queue_show_nonrot,
363 .store = queue_store_nonrot,
1308835f
BZ
364};
365
ac9fafa1
AB
366static struct queue_sysfs_entry queue_nomerges_entry = {
367 .attr = {.name = "nomerges", .mode = S_IRUGO | S_IWUSR },
368 .show = queue_nomerges_show,
369 .store = queue_nomerges_store,
370};
371
c7c22e4d
JA
372static struct queue_sysfs_entry queue_rq_affinity_entry = {
373 .attr = {.name = "rq_affinity", .mode = S_IRUGO | S_IWUSR },
374 .show = queue_rq_affinity_show,
375 .store = queue_rq_affinity_store,
376};
377
bc58ba94
JA
378static struct queue_sysfs_entry queue_iostats_entry = {
379 .attr = {.name = "iostats", .mode = S_IRUGO | S_IWUSR },
956bcb7c
JA
380 .show = queue_show_iostats,
381 .store = queue_store_iostats,
bc58ba94
JA
382};
383
e2e1a148
JA
384static struct queue_sysfs_entry queue_random_entry = {
385 .attr = {.name = "add_random", .mode = S_IRUGO | S_IWUSR },
956bcb7c
JA
386 .show = queue_show_random,
387 .store = queue_store_random,
e2e1a148
JA
388};
389
8324aa91
JA
390static struct attribute *default_attrs[] = {
391 &queue_requests_entry.attr,
392 &queue_ra_entry.attr,
393 &queue_max_hw_sectors_entry.attr,
394 &queue_max_sectors_entry.attr,
c77a5710 395 &queue_max_segments_entry.attr,
13f05c8d 396 &queue_max_integrity_segments_entry.attr,
c77a5710 397 &queue_max_segment_size_entry.attr,
8324aa91 398 &queue_iosched_entry.attr,
e68b903c 399 &queue_hw_sector_size_entry.attr,
e1defc4f 400 &queue_logical_block_size_entry.attr,
c72758f3
MP
401 &queue_physical_block_size_entry.attr,
402 &queue_io_min_entry.attr,
403 &queue_io_opt_entry.attr,
86b37281
MP
404 &queue_discard_granularity_entry.attr,
405 &queue_discard_max_entry.attr,
98262f27 406 &queue_discard_zeroes_data_entry.attr,
1308835f 407 &queue_nonrot_entry.attr,
ac9fafa1 408 &queue_nomerges_entry.attr,
c7c22e4d 409 &queue_rq_affinity_entry.attr,
bc58ba94 410 &queue_iostats_entry.attr,
e2e1a148 411 &queue_random_entry.attr,
8324aa91
JA
412 NULL,
413};
414
415#define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr)
416
417static ssize_t
418queue_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
419{
420 struct queue_sysfs_entry *entry = to_queue(attr);
421 struct request_queue *q =
422 container_of(kobj, struct request_queue, kobj);
423 ssize_t res;
424
425 if (!entry->show)
426 return -EIO;
427 mutex_lock(&q->sysfs_lock);
34f6055c 428 if (blk_queue_dead(q)) {
8324aa91
JA
429 mutex_unlock(&q->sysfs_lock);
430 return -ENOENT;
431 }
432 res = entry->show(q, page);
433 mutex_unlock(&q->sysfs_lock);
434 return res;
435}
436
437static ssize_t
438queue_attr_store(struct kobject *kobj, struct attribute *attr,
439 const char *page, size_t length)
440{
441 struct queue_sysfs_entry *entry = to_queue(attr);
6728cb0e 442 struct request_queue *q;
8324aa91
JA
443 ssize_t res;
444
445 if (!entry->store)
446 return -EIO;
6728cb0e
JA
447
448 q = container_of(kobj, struct request_queue, kobj);
8324aa91 449 mutex_lock(&q->sysfs_lock);
34f6055c 450 if (blk_queue_dead(q)) {
8324aa91
JA
451 mutex_unlock(&q->sysfs_lock);
452 return -ENOENT;
453 }
454 res = entry->store(q, page, length);
455 mutex_unlock(&q->sysfs_lock);
456 return res;
457}
458
459/**
499337bb
AM
460 * blk_release_queue: - release a &struct request_queue when it is no longer needed
461 * @kobj: the kobj belonging to the request queue to be released
8324aa91
JA
462 *
463 * Description:
499337bb 464 * blk_release_queue is the pair to blk_init_queue() or
8324aa91
JA
465 * blk_queue_make_request(). It should be called when a request queue is
466 * being released; typically when a block device is being de-registered.
467 * Currently, its primary task it to free all the &struct request
468 * structures that were allocated to the queue and the queue itself.
469 *
470 * Caveat:
471 * Hopefully the low level driver will have finished any
472 * outstanding requests first...
473 **/
474static void blk_release_queue(struct kobject *kobj)
475{
476 struct request_queue *q =
477 container_of(kobj, struct request_queue, kobj);
478 struct request_list *rl = &q->rq;
479
480 blk_sync_queue(q);
481
777eb1bf
HR
482 if (q->elevator)
483 elevator_exit(q->elevator);
484
485 blk_throtl_exit(q);
486
8324aa91
JA
487 if (rl->rq_pool)
488 mempool_destroy(rl->rq_pool);
489
490 if (q->queue_tags)
491 __blk_queue_free_tags(q);
492
c9a929dd 493 blk_throtl_release(q);
8324aa91
JA
494 blk_trace_shutdown(q);
495
496 bdi_destroy(&q->backing_dev_info);
497 kmem_cache_free(blk_requestq_cachep, q);
498}
499
52cf25d0 500static const struct sysfs_ops queue_sysfs_ops = {
8324aa91
JA
501 .show = queue_attr_show,
502 .store = queue_attr_store,
503};
504
505struct kobj_type blk_queue_ktype = {
506 .sysfs_ops = &queue_sysfs_ops,
507 .default_attrs = default_attrs,
508 .release = blk_release_queue,
509};
510
511int blk_register_queue(struct gendisk *disk)
512{
513 int ret;
1d54ad6d 514 struct device *dev = disk_to_dev(disk);
8324aa91
JA
515 struct request_queue *q = disk->queue;
516
fb199746 517 if (WARN_ON(!q))
8324aa91
JA
518 return -ENXIO;
519
1d54ad6d
LZ
520 ret = blk_trace_init_sysfs(dev);
521 if (ret)
522 return ret;
523
c9059598 524 ret = kobject_add(&q->kobj, kobject_get(&dev->kobj), "%s", "queue");
ed5302d3
LY
525 if (ret < 0) {
526 blk_trace_remove_sysfs(dev);
8324aa91 527 return ret;
ed5302d3 528 }
8324aa91
JA
529
530 kobject_uevent(&q->kobj, KOBJ_ADD);
531
cd43e26f
MP
532 if (!q->request_fn)
533 return 0;
534
8324aa91
JA
535 ret = elv_register_queue(q);
536 if (ret) {
537 kobject_uevent(&q->kobj, KOBJ_REMOVE);
538 kobject_del(&q->kobj);
80656b67 539 blk_trace_remove_sysfs(dev);
c87ffbb8 540 kobject_put(&dev->kobj);
8324aa91
JA
541 return ret;
542 }
543
544 return 0;
545}
546
547void blk_unregister_queue(struct gendisk *disk)
548{
549 struct request_queue *q = disk->queue;
550
fb199746
AM
551 if (WARN_ON(!q))
552 return;
553
48c0d4d4 554 if (q->request_fn)
8324aa91
JA
555 elv_unregister_queue(q);
556
48c0d4d4
ZK
557 kobject_uevent(&q->kobj, KOBJ_REMOVE);
558 kobject_del(&q->kobj);
559 blk_trace_remove_sysfs(disk_to_dev(disk));
560 kobject_put(&disk_to_dev(disk)->kobj);
8324aa91 561}