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