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