]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - block/genhd.c
Merge tag 'for-5.16/block-2021-10-29' of git://git.kernel.dk/linux-block
[mirror_ubuntu-kernels.git] / block / genhd.c
CommitLineData
3dcf60bc 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * gendisk handling
7b51e703
CH
4 *
5 * Portions Copyright (C) 2020 Christoph Hellwig
1da177e4
LT
6 */
7
1da177e4 8#include <linux/module.h>
3ad5cee5 9#include <linux/ctype.h>
1da177e4
LT
10#include <linux/fs.h>
11#include <linux/genhd.h>
b446b60e 12#include <linux/kdev_t.h>
1da177e4
LT
13#include <linux/kernel.h>
14#include <linux/blkdev.h>
66114cad 15#include <linux/backing-dev.h>
1da177e4
LT
16#include <linux/init.h>
17#include <linux/spinlock.h>
f500975a 18#include <linux/proc_fs.h>
1da177e4
LT
19#include <linux/seq_file.h>
20#include <linux/slab.h>
21#include <linux/kmod.h>
b81e0c23 22#include <linux/major.h>
58383af6 23#include <linux/mutex.h>
bcce3de1 24#include <linux/idr.h>
77ea887e 25#include <linux/log2.h>
25e823c8 26#include <linux/pm_runtime.h>
99e6608c 27#include <linux/badblocks.h>
1da177e4 28
ff88972c 29#include "blk.h"
8e141f9e 30#include "blk-rq-qos.h"
ff88972c 31
31eb6186 32static struct kobject *block_depr;
1da177e4 33
cf179948
MC
34/*
35 * Unique, monotonically increasing sequential number associated with block
36 * devices instances (i.e. incremented each time a device is attached).
37 * Associating uevents with block devices in userspace is difficult and racy:
38 * the uevent netlink socket is lossy, and on slow and overloaded systems has
39 * a very high latency.
40 * Block devices do not have exclusive owners in userspace, any process can set
41 * one up (e.g. loop devices). Moreover, device names can be reused (e.g. loop0
42 * can be reused again and again).
43 * A userspace process setting up a block device and watching for its events
44 * cannot thus reliably tell whether an event relates to the device it just set
45 * up or another earlier instance with the same name.
46 * This sequential number allows userspace processes to solve this problem, and
47 * uniquely associate an uevent to the lifetime to a device.
48 */
49static atomic64_t diskseq;
50
bcce3de1 51/* for extended dynamic devt allocation, currently only one major is used */
ce23bba8 52#define NR_EXT_DEVT (1 << MINORBITS)
22ae8ce8 53static DEFINE_IDA(ext_devt_ida);
bcce3de1 54
a782483c
CH
55void set_capacity(struct gendisk *disk, sector_t sectors)
56{
cb8432d6 57 struct block_device *bdev = disk->part0;
a782483c 58
0f472277 59 spin_lock(&bdev->bd_size_lock);
a782483c 60 i_size_write(bdev->bd_inode, (loff_t)sectors << SECTOR_SHIFT);
0f472277 61 spin_unlock(&bdev->bd_size_lock);
a782483c
CH
62}
63EXPORT_SYMBOL(set_capacity);
64
e598a72f 65/*
449f4ec9
CH
66 * Set disk capacity and notify if the size is not currently zero and will not
67 * be set to zero. Returns true if a uevent was sent, otherwise false.
e598a72f 68 */
449f4ec9 69bool set_capacity_and_notify(struct gendisk *disk, sector_t size)
e598a72f
BS
70{
71 sector_t capacity = get_capacity(disk);
a782483c 72 char *envp[] = { "RESIZE=1", NULL };
e598a72f
BS
73
74 set_capacity(disk, size);
e598a72f 75
a782483c
CH
76 /*
77 * Only print a message and send a uevent if the gendisk is user visible
78 * and alive. This avoids spamming the log and udev when setting the
79 * initial capacity during probing.
80 */
81 if (size == capacity ||
50b4aecf
CH
82 !disk_live(disk) ||
83 (disk->flags & GENHD_FL_HIDDEN))
a782483c 84 return false;
e598a72f 85
a782483c 86 pr_info("%s: detected capacity change from %lld to %lld\n",
452c0bf8 87 disk->disk_name, capacity, size);
7e890c37 88
a782483c
CH
89 /*
90 * Historically we did not send a uevent for changes to/from an empty
91 * device.
92 */
93 if (!capacity || !size)
94 return false;
95 kobject_uevent_env(&disk_to_dev(disk)->kobj, KOBJ_CHANGE, envp);
96 return true;
e598a72f 97}
449f4ec9 98EXPORT_SYMBOL_GPL(set_capacity_and_notify);
e598a72f 99
5cbd28e3 100/*
abd2864a
CH
101 * Format the device name of the indicated block device into the supplied buffer
102 * and return a pointer to that same buffer for convenience.
103 *
104 * Note: do not use this in new code, use the %pg specifier to sprintf and
105 * printk insted.
5cbd28e3 106 */
abd2864a 107const char *bdevname(struct block_device *bdev, char *buf)
5cbd28e3 108{
abd2864a
CH
109 struct gendisk *hd = bdev->bd_disk;
110 int partno = bdev->bd_partno;
111
5cbd28e3
CH
112 if (!partno)
113 snprintf(buf, BDEVNAME_SIZE, "%s", hd->disk_name);
114 else if (isdigit(hd->disk_name[strlen(hd->disk_name)-1]))
115 snprintf(buf, BDEVNAME_SIZE, "%sp%d", hd->disk_name, partno);
116 else
117 snprintf(buf, BDEVNAME_SIZE, "%s%d", hd->disk_name, partno);
118
119 return buf;
120}
5cbd28e3 121EXPORT_SYMBOL(bdevname);
e598a72f 122
0d02129e
CH
123static void part_stat_read_all(struct block_device *part,
124 struct disk_stats *stat)
ea18e0f0
KK
125{
126 int cpu;
127
128 memset(stat, 0, sizeof(struct disk_stats));
129 for_each_possible_cpu(cpu) {
0d02129e 130 struct disk_stats *ptr = per_cpu_ptr(part->bd_stats, cpu);
ea18e0f0
KK
131 int group;
132
133 for (group = 0; group < NR_STAT_GROUPS; group++) {
134 stat->nsecs[group] += ptr->nsecs[group];
135 stat->sectors[group] += ptr->sectors[group];
136 stat->ios[group] += ptr->ios[group];
137 stat->merges[group] += ptr->merges[group];
138 }
139
140 stat->io_ticks += ptr->io_ticks;
ea18e0f0
KK
141 }
142}
ea18e0f0 143
8446fe92 144static unsigned int part_in_flight(struct block_device *part)
f299b7c7 145{
b2f609e1 146 unsigned int inflight = 0;
1226b8dd 147 int cpu;
f299b7c7 148
1226b8dd 149 for_each_possible_cpu(cpu) {
e016b782
MP
150 inflight += part_stat_local_read_cpu(part, in_flight[0], cpu) +
151 part_stat_local_read_cpu(part, in_flight[1], cpu);
1226b8dd 152 }
e016b782
MP
153 if ((int)inflight < 0)
154 inflight = 0;
1226b8dd 155
e016b782 156 return inflight;
f299b7c7
JA
157}
158
8446fe92
CH
159static void part_in_flight_rw(struct block_device *part,
160 unsigned int inflight[2])
bf0ddaba 161{
1226b8dd
MP
162 int cpu;
163
1226b8dd
MP
164 inflight[0] = 0;
165 inflight[1] = 0;
166 for_each_possible_cpu(cpu) {
167 inflight[0] += part_stat_local_read_cpu(part, in_flight[0], cpu);
168 inflight[1] += part_stat_local_read_cpu(part, in_flight[1], cpu);
169 }
170 if ((int)inflight[0] < 0)
171 inflight[0] = 0;
172 if ((int)inflight[1] < 0)
173 inflight[1] = 0;
bf0ddaba
OS
174}
175
1da177e4
LT
176/*
177 * Can be deleted altogether. Later.
178 *
179 */
133d55cd 180#define BLKDEV_MAJOR_HASH_SIZE 255
1da177e4
LT
181static struct blk_major_name {
182 struct blk_major_name *next;
183 int major;
184 char name[16];
a160c615 185 void (*probe)(dev_t devt);
68eef3b4 186} *major_names[BLKDEV_MAJOR_HASH_SIZE];
e49fbbbf 187static DEFINE_MUTEX(major_names_lock);
dfbb3409 188static DEFINE_SPINLOCK(major_names_spinlock);
1da177e4
LT
189
190/* index in the above - for now: assume no multimajor ranges */
e61eb2e9 191static inline int major_to_index(unsigned major)
1da177e4 192{
68eef3b4 193 return major % BLKDEV_MAJOR_HASH_SIZE;
7170be5f
NH
194}
195
68eef3b4 196#ifdef CONFIG_PROC_FS
cf771cb5 197void blkdev_show(struct seq_file *seqf, off_t offset)
7170be5f 198{
68eef3b4 199 struct blk_major_name *dp;
7170be5f 200
dfbb3409 201 spin_lock(&major_names_spinlock);
133d55cd
LG
202 for (dp = major_names[major_to_index(offset)]; dp; dp = dp->next)
203 if (dp->major == offset)
cf771cb5 204 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
dfbb3409 205 spin_unlock(&major_names_spinlock);
1da177e4 206}
68eef3b4 207#endif /* CONFIG_PROC_FS */
1da177e4 208
9e8c0bcc 209/**
e2b6b301 210 * __register_blkdev - register a new block device
9e8c0bcc 211 *
f33ff110
SB
212 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
213 * @major = 0, try to allocate any unused major number.
9e8c0bcc 214 * @name: the name of the new block device as a zero terminated string
e2b6b301 215 * @probe: allback that is called on access to any minor number of @major
9e8c0bcc
MN
216 *
217 * The @name must be unique within the system.
218 *
0e056eb5 219 * The return value depends on the @major input parameter:
220 *
f33ff110
SB
221 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
222 * then the function returns zero on success, or a negative error code
0e056eb5 223 * - if any unused major number was requested with @major = 0 parameter
9e8c0bcc 224 * then the return value is the allocated major number in range
f33ff110
SB
225 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
226 *
227 * See Documentation/admin-guide/devices.txt for the list of allocated
228 * major numbers.
e2b6b301
CH
229 *
230 * Use register_blkdev instead for any new code.
9e8c0bcc 231 */
a160c615
CH
232int __register_blkdev(unsigned int major, const char *name,
233 void (*probe)(dev_t devt))
1da177e4
LT
234{
235 struct blk_major_name **n, *p;
236 int index, ret = 0;
237
e49fbbbf 238 mutex_lock(&major_names_lock);
1da177e4
LT
239
240 /* temporary */
241 if (major == 0) {
242 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
243 if (major_names[index] == NULL)
244 break;
245 }
246
247 if (index == 0) {
dfc76d11
KP
248 printk("%s: failed to get major for %s\n",
249 __func__, name);
1da177e4
LT
250 ret = -EBUSY;
251 goto out;
252 }
253 major = index;
254 ret = major;
255 }
256
133d55cd 257 if (major >= BLKDEV_MAJOR_MAX) {
dfc76d11
KP
258 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
259 __func__, major, BLKDEV_MAJOR_MAX-1, name);
133d55cd
LG
260
261 ret = -EINVAL;
262 goto out;
263 }
264
1da177e4
LT
265 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
266 if (p == NULL) {
267 ret = -ENOMEM;
268 goto out;
269 }
270
271 p->major = major;
a160c615 272 p->probe = probe;
1da177e4
LT
273 strlcpy(p->name, name, sizeof(p->name));
274 p->next = NULL;
275 index = major_to_index(major);
276
dfbb3409 277 spin_lock(&major_names_spinlock);
1da177e4
LT
278 for (n = &major_names[index]; *n; n = &(*n)->next) {
279 if ((*n)->major == major)
280 break;
281 }
282 if (!*n)
283 *n = p;
284 else
285 ret = -EBUSY;
dfbb3409 286 spin_unlock(&major_names_spinlock);
1da177e4
LT
287
288 if (ret < 0) {
f33ff110 289 printk("register_blkdev: cannot get major %u for %s\n",
1da177e4
LT
290 major, name);
291 kfree(p);
292 }
293out:
e49fbbbf 294 mutex_unlock(&major_names_lock);
1da177e4
LT
295 return ret;
296}
a160c615 297EXPORT_SYMBOL(__register_blkdev);
1da177e4 298
f4480240 299void unregister_blkdev(unsigned int major, const char *name)
1da177e4
LT
300{
301 struct blk_major_name **n;
302 struct blk_major_name *p = NULL;
303 int index = major_to_index(major);
1da177e4 304
e49fbbbf 305 mutex_lock(&major_names_lock);
dfbb3409 306 spin_lock(&major_names_spinlock);
1da177e4
LT
307 for (n = &major_names[index]; *n; n = &(*n)->next)
308 if ((*n)->major == major)
309 break;
294462a5
AM
310 if (!*n || strcmp((*n)->name, name)) {
311 WARN_ON(1);
294462a5 312 } else {
1da177e4
LT
313 p = *n;
314 *n = p->next;
315 }
dfbb3409 316 spin_unlock(&major_names_spinlock);
e49fbbbf 317 mutex_unlock(&major_names_lock);
1da177e4 318 kfree(p);
1da177e4
LT
319}
320
321EXPORT_SYMBOL(unregister_blkdev);
322
7c3f828b 323int blk_alloc_ext_minor(void)
bcce3de1 324{
bab998d6 325 int idx;
bcce3de1 326
22ae8ce8 327 idx = ida_alloc_range(&ext_devt_ida, 0, NR_EXT_DEVT, GFP_KERNEL);
c4b2b7d1
CH
328 if (idx == -ENOSPC)
329 return -EBUSY;
330 return idx;
bcce3de1
TH
331}
332
7c3f828b 333void blk_free_ext_minor(unsigned int minor)
bcce3de1 334{
c4b2b7d1 335 ida_free(&ext_devt_ida, minor);
6fcc44d1
YY
336}
337
1f014290
TH
338static char *bdevt_str(dev_t devt, char *buf)
339{
340 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
341 char tbuf[BDEVT_SIZE];
342 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
343 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
344 } else
345 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
346
347 return buf;
348}
349
bc359d03
CH
350void disk_uevent(struct gendisk *disk, enum kobject_action action)
351{
bc359d03 352 struct block_device *part;
3212135a 353 unsigned long idx;
bc359d03 354
3212135a
CH
355 rcu_read_lock();
356 xa_for_each(&disk->part_tbl, idx, part) {
357 if (bdev_is_partition(part) && !bdev_nr_sectors(part))
358 continue;
498dcc13 359 if (!kobject_get_unless_zero(&part->bd_device.kobj))
3212135a
CH
360 continue;
361
362 rcu_read_unlock();
bc359d03 363 kobject_uevent(bdev_kobj(part), action);
498dcc13 364 put_device(&part->bd_device);
3212135a
CH
365 rcu_read_lock();
366 }
367 rcu_read_unlock();
bc359d03
CH
368}
369EXPORT_SYMBOL_GPL(disk_uevent);
370
9301fe73
CH
371static void disk_scan_partitions(struct gendisk *disk)
372{
373 struct block_device *bdev;
374
375 if (!get_capacity(disk) || !disk_part_scan_enabled(disk))
376 return;
377
378 set_bit(GD_NEED_PART_SCAN, &disk->state);
379 bdev = blkdev_get_by_dev(disk_devt(disk), FMODE_READ, NULL);
380 if (!IS_ERR(bdev))
381 blkdev_put(bdev, FMODE_READ);
382}
383
1da177e4 384/**
d1254a87 385 * device_add_disk - add disk information to kernel list
e63a46be 386 * @parent: parent device for the disk
1da177e4 387 * @disk: per-device partitioning information
fef912bf 388 * @groups: Additional per-device sysfs groups
1da177e4
LT
389 *
390 * This function registers the partitioning information in @disk
391 * with the kernel.
392 */
83cbce95 393int device_add_disk(struct device *parent, struct gendisk *disk,
d1254a87
CH
394 const struct attribute_group **groups)
395
1da177e4 396{
52b85909 397 struct device *ddev = disk_to_dev(disk);
7c3f828b 398 int ret;
cf0ca9fe 399
737eb78e
DLM
400 /*
401 * The disk queue should now be all set with enough information about
402 * the device for the elevator code to pick an adequate default
403 * elevator if one is needed, that is, for devices requesting queue
404 * registration.
405 */
d1254a87 406 elevator_init_mq(disk->queue);
737eb78e 407
7c3f828b
CH
408 /*
409 * If the driver provides an explicit major number it also must provide
410 * the number of minors numbers supported, and those will be used to
411 * setup the gendisk.
412 * Otherwise just allocate the device numbers for both the whole device
413 * and all partitions from the extended dev_t space.
3e1a7ff8 414 */
7c3f828b 415 if (disk->major) {
83cbce95
LC
416 if (WARN_ON(!disk->minors))
417 return -EINVAL;
2e3c73fa
CH
418
419 if (disk->minors > DISK_MAX_PARTS) {
420 pr_err("block: can't allocate more than %d partitions\n",
421 DISK_MAX_PARTS);
422 disk->minors = DISK_MAX_PARTS;
423 }
7c3f828b 424 } else {
83cbce95
LC
425 if (WARN_ON(disk->minors))
426 return -EINVAL;
3e1a7ff8 427
7c3f828b 428 ret = blk_alloc_ext_minor();
83cbce95
LC
429 if (ret < 0)
430 return ret;
7c3f828b 431 disk->major = BLOCK_EXT_MAJOR;
539711d7 432 disk->first_minor = ret;
0d1feb72 433 disk->flags |= GENHD_FL_EXT_DEVT;
3e1a7ff8 434 }
7c3f828b 435
83cbce95
LC
436 ret = disk_alloc_events(disk);
437 if (ret)
438 goto out_free_ext_minor;
9f53d2fe 439
52b85909
CH
440 /* delay uevents, until we scanned partition table */
441 dev_set_uevent_suppress(ddev, 1);
442
443 ddev->parent = parent;
444 ddev->groups = groups;
445 dev_set_name(ddev, "%s", disk->disk_name);
8235b5c1
CH
446 if (!(disk->flags & GENHD_FL_HIDDEN))
447 ddev->devt = MKDEV(disk->major, disk->first_minor);
83cbce95
LC
448 ret = device_add(ddev);
449 if (ret)
450 goto out_disk_release_events;
52b85909
CH
451 if (!sysfs_deprecated) {
452 ret = sysfs_create_link(block_depr, &ddev->kobj,
453 kobject_name(&ddev->kobj));
83cbce95
LC
454 if (ret)
455 goto out_device_del;
52b85909
CH
456 }
457
458 /*
459 * avoid probable deadlock caused by allocating memory with
460 * GFP_KERNEL in runtime_resume callback of its all ancestor
461 * devices
462 */
463 pm_runtime_set_memalloc_noio(ddev, true);
464
83cbce95
LC
465 ret = blk_integrity_add(disk);
466 if (ret)
467 goto out_del_block_link;
bab53f6b 468
52b85909
CH
469 disk->part0->bd_holder_dir =
470 kobject_create_and_add("holders", &ddev->kobj);
83cbce95
LC
471 if (!disk->part0->bd_holder_dir)
472 goto out_del_integrity;
52b85909 473 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
83cbce95
LC
474 if (!disk->slave_dir)
475 goto out_put_holder_dir;
52b85909 476
83cbce95
LC
477 ret = bd_register_pending_holders(disk);
478 if (ret < 0)
479 goto out_put_slave_dir;
52b85909 480
83cbce95
LC
481 ret = blk_register_queue(disk);
482 if (ret)
483 goto out_put_slave_dir;
75f4dca5 484
8235b5c1
CH
485 if (disk->flags & GENHD_FL_HIDDEN) {
486 /*
487 * Don't let hidden disks show up in /proc/partitions,
488 * and don't bother scanning for partitions either.
489 */
490 disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO;
491 disk->flags |= GENHD_FL_NO_PART_SCAN;
492 } else {
493 ret = bdi_register(disk->bdi, "%u:%u",
494 disk->major, disk->first_minor);
83cbce95
LC
495 if (ret)
496 goto out_unregister_queue;
8235b5c1 497 bdi_set_owner(disk->bdi, ddev);
83cbce95
LC
498 ret = sysfs_create_link(&ddev->kobj,
499 &disk->bdi->dev->kobj, "bdi");
500 if (ret)
501 goto out_unregister_bdi;
8235b5c1 502
9d5ee676 503 bdev_add(disk->part0, ddev->devt);
52b85909
CH
504 disk_scan_partitions(disk);
505
506 /*
507 * Announce the disk and partitions after all partitions are
8235b5c1 508 * created. (for hidden disks uevents remain suppressed forever)
52b85909
CH
509 */
510 dev_set_uevent_suppress(ddev, 0);
511 disk_uevent(disk, KOBJ_ADD);
52b85909
CH
512 }
513
75f4dca5 514 disk_update_readahead(disk);
77ea887e 515 disk_add_events(disk);
83cbce95
LC
516 return 0;
517
518out_unregister_bdi:
519 if (!(disk->flags & GENHD_FL_HIDDEN))
520 bdi_unregister(disk->bdi);
521out_unregister_queue:
522 blk_unregister_queue(disk);
523out_put_slave_dir:
524 kobject_put(disk->slave_dir);
525out_put_holder_dir:
526 kobject_put(disk->part0->bd_holder_dir);
527out_del_integrity:
528 blk_integrity_del(disk);
529out_del_block_link:
530 if (!sysfs_deprecated)
531 sysfs_remove_link(block_depr, dev_name(ddev));
532out_device_del:
533 device_del(ddev);
534out_disk_release_events:
535 disk_release_events(disk);
536out_free_ext_minor:
537 if (disk->major == BLOCK_EXT_MAJOR)
538 blk_free_ext_minor(disk->first_minor);
539 return WARN_ON_ONCE(ret); /* keep until all callers handle errors */
1da177e4 540}
e63a46be 541EXPORT_SYMBOL(device_add_disk);
1da177e4 542
b5bd357c
LC
543/**
544 * del_gendisk - remove the gendisk
545 * @disk: the struct gendisk to remove
546 *
547 * Removes the gendisk and all its associated resources. This deletes the
548 * partitions associated with the gendisk, and unregisters the associated
549 * request_queue.
550 *
551 * This is the counter to the respective __device_add_disk() call.
552 *
553 * The final removal of the struct gendisk happens when its refcount reaches 0
554 * with put_disk(), which should be called after del_gendisk(), if
555 * __device_add_disk() was used.
e8c7d14a
LC
556 *
557 * Drivers exist which depend on the release of the gendisk to be synchronous,
558 * it should not be deferred.
559 *
560 * Context: can sleep
b5bd357c 561 */
d2bf1b67 562void del_gendisk(struct gendisk *disk)
1da177e4 563{
8e141f9e
CH
564 struct request_queue *q = disk->queue;
565
e8c7d14a
LC
566 might_sleep();
567
9f286992 568 if (WARN_ON_ONCE(!disk_live(disk) && !(disk->flags & GENHD_FL_HIDDEN)))
6b3ba976
CH
569 return;
570
25520d55 571 blk_integrity_del(disk);
77ea887e
TH
572 disk_del_events(disk);
573
a8698707 574 mutex_lock(&disk->open_mutex);
d7a66574 575 remove_inode_hash(disk->part0->bd_inode);
d3c4a43d 576 blk_drop_partitions(disk);
a8698707 577 mutex_unlock(&disk->open_mutex);
c76f48eb 578
45611837
CH
579 fsync_bdev(disk->part0);
580 __invalidate_device(disk->part0, true);
581
8e141f9e
CH
582 /*
583 * Fail any new I/O.
584 */
585 set_bit(GD_DEAD, &disk->state);
d2bf1b67 586 set_capacity(disk, 0);
d2bf1b67 587
8e141f9e
CH
588 /*
589 * Prevent new I/O from crossing bio_queue_enter().
590 */
591 blk_queue_start_drain(q);
8e141f9e 592
6b3ba976 593 if (!(disk->flags & GENHD_FL_HIDDEN)) {
8ddcd653 594 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
6b3ba976 595
90f16fdd
JK
596 /*
597 * Unregister bdi before releasing device numbers (as they can
598 * get reused and we'd get clashes in sysfs).
599 */
edb0872f 600 bdi_unregister(disk->bdi);
90f16fdd 601 }
d2bf1b67 602
6b3ba976 603 blk_unregister_queue(disk);
d2bf1b67 604
cb8432d6 605 kobject_put(disk->part0->bd_holder_dir);
d2bf1b67 606 kobject_put(disk->slave_dir);
d2bf1b67 607
8446fe92 608 part_stat_set_all(disk->part0, 0);
cb8432d6 609 disk->part0->bd_stamp = 0;
d2bf1b67
TH
610 if (!sysfs_deprecated)
611 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
25e823c8 612 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
d2bf1b67 613 device_del(disk_to_dev(disk));
d308ae0d
ML
614
615 blk_mq_freeze_queue_wait(q);
616
617 rq_qos_exit(q);
618 blk_sync_queue(q);
619 blk_flush_integrity();
620 /*
621 * Allow using passthrough request again after the queue is torn down.
622 */
623 blk_queue_flag_clear(QUEUE_FLAG_INIT_DONE, q);
624 __blk_mq_unfreeze_queue(q, true);
625
1da177e4 626}
d2bf1b67 627EXPORT_SYMBOL(del_gendisk);
1da177e4 628
f059a1d2
XY
629/**
630 * invalidate_disk - invalidate the disk
631 * @disk: the struct gendisk to invalidate
632 *
633 * A helper to invalidates the disk. It will clean the disk's associated
634 * buffer/page caches and reset its internal states so that the disk
635 * can be reused by the drivers.
636 *
637 * Context: can sleep
638 */
639void invalidate_disk(struct gendisk *disk)
640{
641 struct block_device *bdev = disk->part0;
642
643 invalidate_bdev(bdev);
644 bdev->bd_inode->i_mapping->wb_err = 0;
645 set_capacity(disk, 0);
646}
647EXPORT_SYMBOL(invalidate_disk);
648
99e6608c
VV
649/* sysfs access to bad-blocks list. */
650static ssize_t disk_badblocks_show(struct device *dev,
651 struct device_attribute *attr,
652 char *page)
653{
654 struct gendisk *disk = dev_to_disk(dev);
655
656 if (!disk->bb)
657 return sprintf(page, "\n");
658
659 return badblocks_show(disk->bb, page, 0);
660}
661
662static ssize_t disk_badblocks_store(struct device *dev,
663 struct device_attribute *attr,
664 const char *page, size_t len)
665{
666 struct gendisk *disk = dev_to_disk(dev);
667
668 if (!disk->bb)
669 return -ENXIO;
670
671 return badblocks_store(disk->bb, page, len, 0);
672}
673
22ae8ce8 674void blk_request_module(dev_t devt)
bd8eff3b 675{
a160c615
CH
676 unsigned int major = MAJOR(devt);
677 struct blk_major_name **n;
678
679 mutex_lock(&major_names_lock);
680 for (n = &major_names[major_to_index(major)]; *n; n = &(*n)->next) {
681 if ((*n)->major == major && (*n)->probe) {
682 (*n)->probe(devt);
683 mutex_unlock(&major_names_lock);
684 return;
685 }
686 }
687 mutex_unlock(&major_names_lock);
688
bd8eff3b
CH
689 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
690 /* Make old-style 2.4 aliases work */
691 request_module("block-major-%d", MAJOR(devt));
692}
693
5c6f35c5
GKH
694/*
695 * print a full list of all partitions - intended for places where the root
696 * filesystem can't be mounted and thus to give the victim some idea of what
697 * went wrong
698 */
699void __init printk_all_partitions(void)
700{
def4e38d
TH
701 struct class_dev_iter iter;
702 struct device *dev;
703
704 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
705 while ((dev = class_dev_iter_next(&iter))) {
706 struct gendisk *disk = dev_to_disk(dev);
ad1eaa53 707 struct block_device *part;
1f014290 708 char devt_buf[BDEVT_SIZE];
e559f58d 709 unsigned long idx;
def4e38d
TH
710
711 /*
712 * Don't show empty devices or things that have been
25985edc 713 * suppressed
def4e38d
TH
714 */
715 if (get_capacity(disk) == 0 ||
716 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
717 continue;
718
719 /*
e559f58d
CH
720 * Note, unlike /proc/partitions, I am showing the numbers in
721 * hex - the same format as the root= option takes.
def4e38d 722 */
e559f58d
CH
723 rcu_read_lock();
724 xa_for_each(&disk->part_tbl, idx, part) {
725 if (!bdev_nr_sectors(part))
726 continue;
a9e7bc3d 727 printk("%s%s %10llu %pg %s",
e559f58d 728 bdev_is_partition(part) ? " " : "",
ad1eaa53 729 bdevt_str(part->bd_dev, devt_buf),
a9e7bc3d 730 bdev_nr_sectors(part) >> 1, part,
ad1eaa53
CH
731 part->bd_meta_info ?
732 part->bd_meta_info->uuid : "");
e559f58d 733 if (bdev_is_partition(part))
074a7aca 734 printk("\n");
e559f58d
CH
735 else if (dev->parent && dev->parent->driver)
736 printk(" driver: %s\n",
737 dev->parent->driver->name);
738 else
739 printk(" (driver?)\n");
074a7aca 740 }
e559f58d 741 rcu_read_unlock();
def4e38d
TH
742 }
743 class_dev_iter_exit(&iter);
dd2a345f
DG
744}
745
1da177e4
LT
746#ifdef CONFIG_PROC_FS
747/* iterator */
def4e38d 748static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
68c4d4a7 749{
def4e38d
TH
750 loff_t skip = *pos;
751 struct class_dev_iter *iter;
752 struct device *dev;
68c4d4a7 753
aeb3d3a8 754 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
def4e38d
TH
755 if (!iter)
756 return ERR_PTR(-ENOMEM);
757
758 seqf->private = iter;
759 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
760 do {
761 dev = class_dev_iter_next(iter);
762 if (!dev)
763 return NULL;
764 } while (skip--);
765
766 return dev_to_disk(dev);
68c4d4a7
GKH
767}
768
def4e38d 769static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
1da177e4 770{
edfaa7c3 771 struct device *dev;
1da177e4 772
def4e38d
TH
773 (*pos)++;
774 dev = class_dev_iter_next(seqf->private);
2ac3cee5 775 if (dev)
68c4d4a7 776 return dev_to_disk(dev);
2ac3cee5 777
1da177e4
LT
778 return NULL;
779}
780
def4e38d 781static void disk_seqf_stop(struct seq_file *seqf, void *v)
27f30251 782{
def4e38d 783 struct class_dev_iter *iter = seqf->private;
27f30251 784
def4e38d
TH
785 /* stop is called even after start failed :-( */
786 if (iter) {
787 class_dev_iter_exit(iter);
788 kfree(iter);
77da1605 789 seqf->private = NULL;
5c0ef6d0 790 }
1da177e4
LT
791}
792
def4e38d 793static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
1da177e4 794{
06768067 795 void *p;
def4e38d
TH
796
797 p = disk_seqf_start(seqf, pos);
b9f985b6 798 if (!IS_ERR_OR_NULL(p) && !*pos)
def4e38d
TH
799 seq_puts(seqf, "major minor #blocks name\n\n");
800 return p;
1da177e4
LT
801}
802
cf771cb5 803static int show_partition(struct seq_file *seqf, void *v)
1da177e4
LT
804{
805 struct gendisk *sgp = v;
ad1eaa53 806 struct block_device *part;
ecc75a98 807 unsigned long idx;
1da177e4 808
1da177e4 809 /* Don't show non-partitionable removeable devices or empty devices */
d27769ec 810 if (!get_capacity(sgp) || (!disk_max_parts(sgp) &&
f331c029 811 (sgp->flags & GENHD_FL_REMOVABLE)))
1da177e4
LT
812 return 0;
813 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
814 return 0;
815
ecc75a98
CH
816 rcu_read_lock();
817 xa_for_each(&sgp->part_tbl, idx, part) {
818 if (!bdev_nr_sectors(part))
819 continue;
a291bb43 820 seq_printf(seqf, "%4d %7d %10llu %pg\n",
ad1eaa53 821 MAJOR(part->bd_dev), MINOR(part->bd_dev),
a291bb43 822 bdev_nr_sectors(part) >> 1, part);
ecc75a98
CH
823 }
824 rcu_read_unlock();
1da177e4
LT
825 return 0;
826}
827
f500975a 828static const struct seq_operations partitions_op = {
def4e38d
TH
829 .start = show_partition_start,
830 .next = disk_seqf_next,
831 .stop = disk_seqf_stop,
edfaa7c3 832 .show = show_partition
1da177e4
LT
833};
834#endif
835
1da177e4
LT
836static int __init genhd_device_init(void)
837{
e105b8bf
DW
838 int error;
839
840 block_class.dev_kobj = sysfs_dev_block_kobj;
841 error = class_register(&block_class);
ee27a558
RM
842 if (unlikely(error))
843 return error;
1da177e4 844 blk_dev_init();
edfaa7c3 845
561ec68e
ZY
846 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
847
edfaa7c3 848 /* create top-level block dir */
e52eec13
AK
849 if (!sysfs_deprecated)
850 block_depr = kobject_create_and_add("block", NULL);
830d3cfb 851 return 0;
1da177e4
LT
852}
853
854subsys_initcall(genhd_device_init);
855
edfaa7c3
KS
856static ssize_t disk_range_show(struct device *dev,
857 struct device_attribute *attr, char *buf)
1da177e4 858{
edfaa7c3 859 struct gendisk *disk = dev_to_disk(dev);
1da177e4 860
edfaa7c3 861 return sprintf(buf, "%d\n", disk->minors);
1da177e4
LT
862}
863
1f014290
TH
864static ssize_t disk_ext_range_show(struct device *dev,
865 struct device_attribute *attr, char *buf)
866{
867 struct gendisk *disk = dev_to_disk(dev);
868
b5d0b9df 869 return sprintf(buf, "%d\n", disk_max_parts(disk));
1f014290
TH
870}
871
edfaa7c3
KS
872static ssize_t disk_removable_show(struct device *dev,
873 struct device_attribute *attr, char *buf)
a7fd6706 874{
edfaa7c3 875 struct gendisk *disk = dev_to_disk(dev);
a7fd6706 876
edfaa7c3
KS
877 return sprintf(buf, "%d\n",
878 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
a7fd6706
KS
879}
880
8ddcd653
CH
881static ssize_t disk_hidden_show(struct device *dev,
882 struct device_attribute *attr, char *buf)
883{
884 struct gendisk *disk = dev_to_disk(dev);
885
886 return sprintf(buf, "%d\n",
887 (disk->flags & GENHD_FL_HIDDEN ? 1 : 0));
888}
889
1c9ce527
KS
890static ssize_t disk_ro_show(struct device *dev,
891 struct device_attribute *attr, char *buf)
892{
893 struct gendisk *disk = dev_to_disk(dev);
894
b7db9956 895 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
1c9ce527
KS
896}
897
3ad5cee5
CH
898ssize_t part_size_show(struct device *dev,
899 struct device_attribute *attr, char *buf)
900{
0d02129e 901 return sprintf(buf, "%llu\n", bdev_nr_sectors(dev_to_bdev(dev)));
3ad5cee5
CH
902}
903
904ssize_t part_stat_show(struct device *dev,
905 struct device_attribute *attr, char *buf)
906{
0d02129e 907 struct block_device *bdev = dev_to_bdev(dev);
ed6cddef 908 struct request_queue *q = bdev_get_queue(bdev);
ea18e0f0 909 struct disk_stats stat;
3ad5cee5
CH
910 unsigned int inflight;
911
0d02129e 912 part_stat_read_all(bdev, &stat);
b2f609e1 913 if (queue_is_mq(q))
0d02129e 914 inflight = blk_mq_in_flight(q, bdev);
b2f609e1 915 else
0d02129e 916 inflight = part_in_flight(bdev);
ea18e0f0 917
3ad5cee5
CH
918 return sprintf(buf,
919 "%8lu %8lu %8llu %8u "
920 "%8lu %8lu %8llu %8u "
921 "%8u %8u %8u "
922 "%8lu %8lu %8llu %8u "
923 "%8lu %8u"
924 "\n",
ea18e0f0
KK
925 stat.ios[STAT_READ],
926 stat.merges[STAT_READ],
927 (unsigned long long)stat.sectors[STAT_READ],
928 (unsigned int)div_u64(stat.nsecs[STAT_READ], NSEC_PER_MSEC),
929 stat.ios[STAT_WRITE],
930 stat.merges[STAT_WRITE],
931 (unsigned long long)stat.sectors[STAT_WRITE],
932 (unsigned int)div_u64(stat.nsecs[STAT_WRITE], NSEC_PER_MSEC),
3ad5cee5 933 inflight,
ea18e0f0 934 jiffies_to_msecs(stat.io_ticks),
8cd5b8fc
KK
935 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
936 stat.nsecs[STAT_WRITE] +
937 stat.nsecs[STAT_DISCARD] +
938 stat.nsecs[STAT_FLUSH],
939 NSEC_PER_MSEC),
ea18e0f0
KK
940 stat.ios[STAT_DISCARD],
941 stat.merges[STAT_DISCARD],
942 (unsigned long long)stat.sectors[STAT_DISCARD],
943 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD], NSEC_PER_MSEC),
944 stat.ios[STAT_FLUSH],
945 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH], NSEC_PER_MSEC));
3ad5cee5
CH
946}
947
948ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
949 char *buf)
950{
0d02129e 951 struct block_device *bdev = dev_to_bdev(dev);
ed6cddef 952 struct request_queue *q = bdev_get_queue(bdev);
3ad5cee5
CH
953 unsigned int inflight[2];
954
b2f609e1 955 if (queue_is_mq(q))
0d02129e 956 blk_mq_in_flight_rw(q, bdev, inflight);
b2f609e1 957 else
0d02129e 958 part_in_flight_rw(bdev, inflight);
b2f609e1 959
3ad5cee5
CH
960 return sprintf(buf, "%8u %8u\n", inflight[0], inflight[1]);
961}
962
edfaa7c3
KS
963static ssize_t disk_capability_show(struct device *dev,
964 struct device_attribute *attr, char *buf)
86ce18d7 965{
edfaa7c3
KS
966 struct gendisk *disk = dev_to_disk(dev);
967
968 return sprintf(buf, "%x\n", disk->flags);
86ce18d7 969}
edfaa7c3 970
c72758f3
MP
971static ssize_t disk_alignment_offset_show(struct device *dev,
972 struct device_attribute *attr,
973 char *buf)
974{
975 struct gendisk *disk = dev_to_disk(dev);
976
977 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
978}
979
86b37281
MP
980static ssize_t disk_discard_alignment_show(struct device *dev,
981 struct device_attribute *attr,
982 char *buf)
983{
984 struct gendisk *disk = dev_to_disk(dev);
985
dd3d145d 986 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
86b37281
MP
987}
988
13927b31
MC
989static ssize_t diskseq_show(struct device *dev,
990 struct device_attribute *attr, char *buf)
991{
992 struct gendisk *disk = dev_to_disk(dev);
993
994 return sprintf(buf, "%llu\n", disk->diskseq);
995}
996
5657a819
JP
997static DEVICE_ATTR(range, 0444, disk_range_show, NULL);
998static DEVICE_ATTR(ext_range, 0444, disk_ext_range_show, NULL);
999static DEVICE_ATTR(removable, 0444, disk_removable_show, NULL);
1000static DEVICE_ATTR(hidden, 0444, disk_hidden_show, NULL);
1001static DEVICE_ATTR(ro, 0444, disk_ro_show, NULL);
1002static DEVICE_ATTR(size, 0444, part_size_show, NULL);
1003static DEVICE_ATTR(alignment_offset, 0444, disk_alignment_offset_show, NULL);
1004static DEVICE_ATTR(discard_alignment, 0444, disk_discard_alignment_show, NULL);
1005static DEVICE_ATTR(capability, 0444, disk_capability_show, NULL);
1006static DEVICE_ATTR(stat, 0444, part_stat_show, NULL);
1007static DEVICE_ATTR(inflight, 0444, part_inflight_show, NULL);
1008static DEVICE_ATTR(badblocks, 0644, disk_badblocks_show, disk_badblocks_store);
13927b31 1009static DEVICE_ATTR(diskseq, 0444, diskseq_show, NULL);
3ad5cee5 1010
c17bb495 1011#ifdef CONFIG_FAIL_MAKE_REQUEST
3ad5cee5
CH
1012ssize_t part_fail_show(struct device *dev,
1013 struct device_attribute *attr, char *buf)
1014{
0d02129e 1015 return sprintf(buf, "%d\n", dev_to_bdev(dev)->bd_make_it_fail);
3ad5cee5
CH
1016}
1017
1018ssize_t part_fail_store(struct device *dev,
1019 struct device_attribute *attr,
1020 const char *buf, size_t count)
1021{
3ad5cee5
CH
1022 int i;
1023
1024 if (count > 0 && sscanf(buf, "%d", &i) > 0)
0d02129e 1025 dev_to_bdev(dev)->bd_make_it_fail = i;
3ad5cee5
CH
1026
1027 return count;
1028}
1029
edfaa7c3 1030static struct device_attribute dev_attr_fail =
5657a819 1031 __ATTR(make-it-fail, 0644, part_fail_show, part_fail_store);
3ad5cee5
CH
1032#endif /* CONFIG_FAIL_MAKE_REQUEST */
1033
581d4e28
JA
1034#ifdef CONFIG_FAIL_IO_TIMEOUT
1035static struct device_attribute dev_attr_fail_timeout =
5657a819 1036 __ATTR(io-timeout-fail, 0644, part_timeout_show, part_timeout_store);
581d4e28 1037#endif
edfaa7c3
KS
1038
1039static struct attribute *disk_attrs[] = {
1040 &dev_attr_range.attr,
1f014290 1041 &dev_attr_ext_range.attr,
edfaa7c3 1042 &dev_attr_removable.attr,
8ddcd653 1043 &dev_attr_hidden.attr,
1c9ce527 1044 &dev_attr_ro.attr,
edfaa7c3 1045 &dev_attr_size.attr,
c72758f3 1046 &dev_attr_alignment_offset.attr,
86b37281 1047 &dev_attr_discard_alignment.attr,
edfaa7c3
KS
1048 &dev_attr_capability.attr,
1049 &dev_attr_stat.attr,
316d315b 1050 &dev_attr_inflight.attr,
99e6608c 1051 &dev_attr_badblocks.attr,
2bc8cda5
CH
1052 &dev_attr_events.attr,
1053 &dev_attr_events_async.attr,
1054 &dev_attr_events_poll_msecs.attr,
13927b31 1055 &dev_attr_diskseq.attr,
edfaa7c3
KS
1056#ifdef CONFIG_FAIL_MAKE_REQUEST
1057 &dev_attr_fail.attr,
581d4e28
JA
1058#endif
1059#ifdef CONFIG_FAIL_IO_TIMEOUT
1060 &dev_attr_fail_timeout.attr,
edfaa7c3
KS
1061#endif
1062 NULL
1063};
1064
9438b3e0
DW
1065static umode_t disk_visible(struct kobject *kobj, struct attribute *a, int n)
1066{
1067 struct device *dev = container_of(kobj, typeof(*dev), kobj);
1068 struct gendisk *disk = dev_to_disk(dev);
1069
1070 if (a == &dev_attr_badblocks.attr && !disk->bb)
1071 return 0;
1072 return a->mode;
1073}
1074
edfaa7c3
KS
1075static struct attribute_group disk_attr_group = {
1076 .attrs = disk_attrs,
9438b3e0 1077 .is_visible = disk_visible,
edfaa7c3
KS
1078};
1079
a4dbd674 1080static const struct attribute_group *disk_attr_groups[] = {
edfaa7c3
KS
1081 &disk_attr_group,
1082 NULL
1da177e4
LT
1083};
1084
b5bd357c
LC
1085/**
1086 * disk_release - releases all allocated resources of the gendisk
1087 * @dev: the device representing this disk
1088 *
1089 * This function releases all allocated resources of the gendisk.
1090 *
b5bd357c
LC
1091 * Drivers which used __device_add_disk() have a gendisk with a request_queue
1092 * assigned. Since the request_queue sits on top of the gendisk for these
1093 * drivers we also call blk_put_queue() for them, and we expect the
1094 * request_queue refcount to reach 0 at this point, and so the request_queue
1095 * will also be freed prior to the disk.
e8c7d14a
LC
1096 *
1097 * Context: can sleep
b5bd357c 1098 */
edfaa7c3 1099static void disk_release(struct device *dev)
1da177e4 1100{
edfaa7c3
KS
1101 struct gendisk *disk = dev_to_disk(dev);
1102
e8c7d14a 1103 might_sleep();
a2041761 1104 WARN_ON_ONCE(disk_live(disk));
e8c7d14a 1105
77ea887e 1106 disk_release_events(disk);
1da177e4 1107 kfree(disk->random);
a33df75c 1108 xa_destroy(&disk->part_tbl);
d152c682 1109 disk->queue->disk = NULL;
61a35cfc 1110 blk_put_queue(disk->queue);
2f4731dc 1111 iput(disk->part0->bd_inode); /* frees the disk */
1da177e4 1112}
87eb7107
MC
1113
1114static int block_uevent(struct device *dev, struct kobj_uevent_env *env)
1115{
1116 struct gendisk *disk = dev_to_disk(dev);
1117
1118 return add_uevent_var(env, "DISKSEQ=%llu", disk->diskseq);
1119}
1120
edfaa7c3
KS
1121struct class block_class = {
1122 .name = "block",
87eb7107 1123 .dev_uevent = block_uevent,
1da177e4
LT
1124};
1125
3c2670e6 1126static char *block_devnode(struct device *dev, umode_t *mode,
4e4098a3 1127 kuid_t *uid, kgid_t *gid)
b03f38b6
KS
1128{
1129 struct gendisk *disk = dev_to_disk(dev);
1130
348e114b
CH
1131 if (disk->fops->devnode)
1132 return disk->fops->devnode(disk, mode);
b03f38b6
KS
1133 return NULL;
1134}
1135
ef45fe47 1136const struct device_type disk_type = {
edfaa7c3
KS
1137 .name = "disk",
1138 .groups = disk_attr_groups,
1139 .release = disk_release,
e454cea2 1140 .devnode = block_devnode,
1da177e4
LT
1141};
1142
a6e2ba88 1143#ifdef CONFIG_PROC_FS
cf771cb5
TH
1144/*
1145 * aggregate disk stat collector. Uses the same stats that the sysfs
1146 * entries do, above, but makes them available through one seq_file.
1147 *
1148 * The output looks suspiciously like /proc/partitions with a bunch of
1149 * extra fields.
1150 */
1151static int diskstats_show(struct seq_file *seqf, void *v)
1da177e4
LT
1152{
1153 struct gendisk *gp = v;
ad1eaa53 1154 struct block_device *hd;
e016b782 1155 unsigned int inflight;
ea18e0f0 1156 struct disk_stats stat;
7fae67cc 1157 unsigned long idx;
1da177e4
LT
1158
1159 /*
ed9e1982 1160 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
cf771cb5 1161 seq_puts(seqf, "major minor name"
1da177e4
LT
1162 " rio rmerge rsect ruse wio wmerge "
1163 "wsect wuse running use aveq"
1164 "\n\n");
1165 */
9f5e4865 1166
7fae67cc
CH
1167 rcu_read_lock();
1168 xa_for_each(&gp->part_tbl, idx, hd) {
1169 if (bdev_is_partition(hd) && !bdev_nr_sectors(hd))
1170 continue;
0d02129e 1171 part_stat_read_all(hd, &stat);
b2f609e1 1172 if (queue_is_mq(gp->queue))
ad1eaa53 1173 inflight = blk_mq_in_flight(gp->queue, hd);
b2f609e1 1174 else
ad1eaa53 1175 inflight = part_in_flight(hd);
ea18e0f0 1176
26e2d7a3 1177 seq_printf(seqf, "%4d %7d %pg "
bdca3c87
MC
1178 "%lu %lu %lu %u "
1179 "%lu %lu %lu %u "
1180 "%u %u %u "
b6866318
KK
1181 "%lu %lu %lu %u "
1182 "%lu %u"
1183 "\n",
26e2d7a3 1184 MAJOR(hd->bd_dev), MINOR(hd->bd_dev), hd,
ea18e0f0
KK
1185 stat.ios[STAT_READ],
1186 stat.merges[STAT_READ],
1187 stat.sectors[STAT_READ],
1188 (unsigned int)div_u64(stat.nsecs[STAT_READ],
1189 NSEC_PER_MSEC),
1190 stat.ios[STAT_WRITE],
1191 stat.merges[STAT_WRITE],
1192 stat.sectors[STAT_WRITE],
1193 (unsigned int)div_u64(stat.nsecs[STAT_WRITE],
1194 NSEC_PER_MSEC),
e016b782 1195 inflight,
ea18e0f0 1196 jiffies_to_msecs(stat.io_ticks),
8cd5b8fc
KK
1197 (unsigned int)div_u64(stat.nsecs[STAT_READ] +
1198 stat.nsecs[STAT_WRITE] +
1199 stat.nsecs[STAT_DISCARD] +
1200 stat.nsecs[STAT_FLUSH],
1201 NSEC_PER_MSEC),
ea18e0f0
KK
1202 stat.ios[STAT_DISCARD],
1203 stat.merges[STAT_DISCARD],
1204 stat.sectors[STAT_DISCARD],
1205 (unsigned int)div_u64(stat.nsecs[STAT_DISCARD],
1206 NSEC_PER_MSEC),
1207 stat.ios[STAT_FLUSH],
1208 (unsigned int)div_u64(stat.nsecs[STAT_FLUSH],
1209 NSEC_PER_MSEC)
28f39d55 1210 );
1da177e4 1211 }
7fae67cc 1212 rcu_read_unlock();
9f5e4865 1213
1da177e4
LT
1214 return 0;
1215}
1216
31d85ab2 1217static const struct seq_operations diskstats_op = {
def4e38d
TH
1218 .start = disk_seqf_start,
1219 .next = disk_seqf_next,
1220 .stop = disk_seqf_stop,
1da177e4
LT
1221 .show = diskstats_show
1222};
f500975a
AD
1223
1224static int __init proc_genhd_init(void)
1225{
fddda2b7
CH
1226 proc_create_seq("diskstats", 0, NULL, &diskstats_op);
1227 proc_create_seq("partitions", 0, NULL, &partitions_op);
f500975a
AD
1228 return 0;
1229}
1230module_init(proc_genhd_init);
a6e2ba88 1231#endif /* CONFIG_PROC_FS */
1da177e4 1232
c97d93c3
CH
1233dev_t part_devt(struct gendisk *disk, u8 partno)
1234{
0e0ccdec 1235 struct block_device *part;
c97d93c3
CH
1236 dev_t devt = 0;
1237
0e0ccdec
CH
1238 rcu_read_lock();
1239 part = xa_load(&disk->part_tbl, partno);
1240 if (part)
c97d93c3 1241 devt = part->bd_dev;
0e0ccdec 1242 rcu_read_unlock();
c97d93c3
CH
1243
1244 return devt;
1245}
1246
cf771cb5 1247dev_t blk_lookup_devt(const char *name, int partno)
a142be85 1248{
def4e38d
TH
1249 dev_t devt = MKDEV(0, 0);
1250 struct class_dev_iter iter;
1251 struct device *dev;
a142be85 1252
def4e38d
TH
1253 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1254 while ((dev = class_dev_iter_next(&iter))) {
a142be85 1255 struct gendisk *disk = dev_to_disk(dev);
a142be85 1256
3ada8b7e 1257 if (strcmp(dev_name(dev), name))
f331c029 1258 continue;
f331c029 1259
41b8c853
NB
1260 if (partno < disk->minors) {
1261 /* We need to return the right devno, even
1262 * if the partition doesn't exist yet.
1263 */
1264 devt = MKDEV(MAJOR(dev->devt),
1265 MINOR(dev->devt) + partno);
c97d93c3
CH
1266 } else {
1267 devt = part_devt(disk, partno);
1268 if (devt)
1269 break;
def4e38d 1270 }
5c0ef6d0 1271 }
def4e38d 1272 class_dev_iter_exit(&iter);
edfaa7c3
KS
1273 return devt;
1274}
edfaa7c3 1275
4a1fa41d
CH
1276struct gendisk *__alloc_disk_node(struct request_queue *q, int node_id,
1277 struct lock_class_key *lkclass)
1946089a
CL
1278{
1279 struct gendisk *disk;
1280
61a35cfc
CH
1281 if (!blk_get_queue(q))
1282 return NULL;
1283
c1b511eb 1284 disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
f93af2a4 1285 if (!disk)
61a35cfc 1286 goto out_put_queue;
6c23a968 1287
edb0872f
CH
1288 disk->bdi = bdi_alloc(node_id);
1289 if (!disk->bdi)
1290 goto out_free_disk;
1291
17220ca5
PB
1292 /* bdev_alloc() might need the queue, set before the first call */
1293 disk->queue = q;
1294
cb8432d6
CH
1295 disk->part0 = bdev_alloc(disk, 0);
1296 if (!disk->part0)
edb0872f 1297 goto out_free_bdi;
22ae8ce8 1298
f93af2a4 1299 disk->node_id = node_id;
a8698707 1300 mutex_init(&disk->open_mutex);
a33df75c
CH
1301 xa_init(&disk->part_tbl);
1302 if (xa_insert(&disk->part_tbl, 0, disk->part0, GFP_KERNEL))
1303 goto out_destroy_part_tbl;
f93af2a4 1304
f93af2a4
CH
1305 rand_initialize_disk(disk);
1306 disk_to_dev(disk)->class = &block_class;
1307 disk_to_dev(disk)->type = &disk_type;
1308 device_initialize(disk_to_dev(disk));
cf179948 1309 inc_diskseq(disk);
d152c682 1310 q->disk = disk;
4dcc4874 1311 lockdep_init_map(&disk->lockdep_map, "(bio completion)", lkclass, 0);
0dbcfe24
CH
1312#ifdef CONFIG_BLOCK_HOLDER_DEPRECATED
1313 INIT_LIST_HEAD(&disk->slave_bdevs);
1314#endif
1da177e4 1315 return disk;
f93af2a4 1316
a33df75c
CH
1317out_destroy_part_tbl:
1318 xa_destroy(&disk->part_tbl);
06cc978d 1319 disk->part0->bd_disk = NULL;
2f4731dc 1320 iput(disk->part0->bd_inode);
edb0872f
CH
1321out_free_bdi:
1322 bdi_put(disk->bdi);
f93af2a4
CH
1323out_free_disk:
1324 kfree(disk);
61a35cfc
CH
1325out_put_queue:
1326 blk_put_queue(q);
f93af2a4 1327 return NULL;
1da177e4 1328}
e319e1fb 1329EXPORT_SYMBOL(__alloc_disk_node);
1da177e4 1330
4dcc4874 1331struct gendisk *__blk_alloc_disk(int node, struct lock_class_key *lkclass)
f525464a
CH
1332{
1333 struct request_queue *q;
1334 struct gendisk *disk;
1335
1336 q = blk_alloc_queue(node);
1337 if (!q)
1338 return NULL;
1339
4a1fa41d 1340 disk = __alloc_disk_node(q, node, lkclass);
f525464a
CH
1341 if (!disk) {
1342 blk_cleanup_queue(q);
1343 return NULL;
1344 }
f525464a
CH
1345 return disk;
1346}
1347EXPORT_SYMBOL(__blk_alloc_disk);
1348
b5bd357c
LC
1349/**
1350 * put_disk - decrements the gendisk refcount
0d20dcc2 1351 * @disk: the struct gendisk to decrement the refcount for
b5bd357c
LC
1352 *
1353 * This decrements the refcount for the struct gendisk. When this reaches 0
1354 * we'll have disk_release() called.
e8c7d14a
LC
1355 *
1356 * Context: Any context, but the last reference must not be dropped from
1357 * atomic context.
b5bd357c 1358 */
1da177e4
LT
1359void put_disk(struct gendisk *disk)
1360{
1361 if (disk)
efdc41c8 1362 put_device(disk_to_dev(disk));
1da177e4 1363}
1da177e4
LT
1364EXPORT_SYMBOL(put_disk);
1365
f525464a
CH
1366/**
1367 * blk_cleanup_disk - shutdown a gendisk allocated by blk_alloc_disk
1368 * @disk: gendisk to shutdown
1369 *
1370 * Mark the queue hanging off @disk DYING, drain all pending requests, then mark
1371 * the queue DEAD, destroy and put it and the gendisk structure.
1372 *
1373 * Context: can sleep
1374 */
1375void blk_cleanup_disk(struct gendisk *disk)
1376{
1377 blk_cleanup_queue(disk->queue);
1378 put_disk(disk);
1379}
1380EXPORT_SYMBOL(blk_cleanup_disk);
1381
e3264a4d
HR
1382static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1383{
1384 char event[] = "DISK_RO=1";
1385 char *envp[] = { event, NULL };
1386
1387 if (!ro)
1388 event[8] = '0';
1389 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1390}
1391
52f019d4
CH
1392/**
1393 * set_disk_ro - set a gendisk read-only
1394 * @disk: gendisk to operate on
7f31bee3 1395 * @read_only: %true to set the disk read-only, %false set the disk read/write
52f019d4
CH
1396 *
1397 * This function is used to indicate whether a given disk device should have its
1398 * read-only flag set. set_disk_ro() is typically used by device drivers to
1399 * indicate whether the underlying physical device is write-protected.
1400 */
1401void set_disk_ro(struct gendisk *disk, bool read_only)
1da177e4 1402{
52f019d4
CH
1403 if (read_only) {
1404 if (test_and_set_bit(GD_READ_ONLY, &disk->state))
1405 return;
1406 } else {
1407 if (!test_and_clear_bit(GD_READ_ONLY, &disk->state))
1408 return;
e3264a4d 1409 }
52f019d4 1410 set_disk_ro_uevent(disk, read_only);
1da177e4 1411}
1da177e4
LT
1412EXPORT_SYMBOL(set_disk_ro);
1413
cf179948
MC
1414void inc_diskseq(struct gendisk *disk)
1415{
1416 disk->diskseq = atomic64_inc_return(&diskseq);
1417}