block: Fix race during disk initialization
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / block / genhd.c
blob7923e720ddf52f1626cf5422ef5271fd9c7395d6
1 /*
2 * gendisk handling
3 */
5 #include <linux/module.h>
6 #include <linux/fs.h>
7 #include <linux/genhd.h>
8 #include <linux/kdev_t.h>
9 #include <linux/kernel.h>
10 #include <linux/blkdev.h>
11 #include <linux/init.h>
12 #include <linux/spinlock.h>
13 #include <linux/proc_fs.h>
14 #include <linux/seq_file.h>
15 #include <linux/slab.h>
16 #include <linux/kmod.h>
17 #include <linux/kobj_map.h>
18 #include <linux/buffer_head.h>
19 #include <linux/mutex.h>
20 #include <linux/idr.h>
22 #include "blk.h"
24 static DEFINE_MUTEX(block_class_lock);
25 #ifndef CONFIG_SYSFS_DEPRECATED
26 struct kobject *block_depr;
27 #endif
29 /* for extended dynamic devt allocation, currently only one major is used */
30 #define MAX_EXT_DEVT (1 << MINORBITS)
32 /* For extended devt allocation. ext_devt_mutex prevents look up
33 * results from going away underneath its user.
35 static DEFINE_MUTEX(ext_devt_mutex);
36 static DEFINE_IDR(ext_devt_idr);
38 static struct device_type disk_type;
40 /**
41 * disk_get_part - get partition
42 * @disk: disk to look partition from
43 * @partno: partition number
45 * Look for partition @partno from @disk. If found, increment
46 * reference count and return it.
48 * CONTEXT:
49 * Don't care.
51 * RETURNS:
52 * Pointer to the found partition on success, NULL if not found.
54 struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
56 struct hd_struct *part = NULL;
57 struct disk_part_tbl *ptbl;
59 if (unlikely(partno < 0))
60 return NULL;
62 rcu_read_lock();
64 ptbl = rcu_dereference(disk->part_tbl);
65 if (likely(partno < ptbl->len)) {
66 part = rcu_dereference(ptbl->part[partno]);
67 if (part)
68 get_device(part_to_dev(part));
71 rcu_read_unlock();
73 return part;
75 EXPORT_SYMBOL_GPL(disk_get_part);
77 /**
78 * disk_part_iter_init - initialize partition iterator
79 * @piter: iterator to initialize
80 * @disk: disk to iterate over
81 * @flags: DISK_PITER_* flags
83 * Initialize @piter so that it iterates over partitions of @disk.
85 * CONTEXT:
86 * Don't care.
88 void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
89 unsigned int flags)
91 struct disk_part_tbl *ptbl;
93 rcu_read_lock();
94 ptbl = rcu_dereference(disk->part_tbl);
96 piter->disk = disk;
97 piter->part = NULL;
99 if (flags & DISK_PITER_REVERSE)
100 piter->idx = ptbl->len - 1;
101 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
102 piter->idx = 0;
103 else
104 piter->idx = 1;
106 piter->flags = flags;
108 rcu_read_unlock();
110 EXPORT_SYMBOL_GPL(disk_part_iter_init);
113 * disk_part_iter_next - proceed iterator to the next partition and return it
114 * @piter: iterator of interest
116 * Proceed @piter to the next partition and return it.
118 * CONTEXT:
119 * Don't care.
121 struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
123 struct disk_part_tbl *ptbl;
124 int inc, end;
126 /* put the last partition */
127 disk_put_part(piter->part);
128 piter->part = NULL;
130 /* get part_tbl */
131 rcu_read_lock();
132 ptbl = rcu_dereference(piter->disk->part_tbl);
134 /* determine iteration parameters */
135 if (piter->flags & DISK_PITER_REVERSE) {
136 inc = -1;
137 if (piter->flags & (DISK_PITER_INCL_PART0 |
138 DISK_PITER_INCL_EMPTY_PART0))
139 end = -1;
140 else
141 end = 0;
142 } else {
143 inc = 1;
144 end = ptbl->len;
147 /* iterate to the next partition */
148 for (; piter->idx != end; piter->idx += inc) {
149 struct hd_struct *part;
151 part = rcu_dereference(ptbl->part[piter->idx]);
152 if (!part)
153 continue;
154 if (!part->nr_sects &&
155 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
156 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
157 piter->idx == 0))
158 continue;
160 get_device(part_to_dev(part));
161 piter->part = part;
162 piter->idx += inc;
163 break;
166 rcu_read_unlock();
168 return piter->part;
170 EXPORT_SYMBOL_GPL(disk_part_iter_next);
173 * disk_part_iter_exit - finish up partition iteration
174 * @piter: iter of interest
176 * Called when iteration is over. Cleans up @piter.
178 * CONTEXT:
179 * Don't care.
181 void disk_part_iter_exit(struct disk_part_iter *piter)
183 disk_put_part(piter->part);
184 piter->part = NULL;
186 EXPORT_SYMBOL_GPL(disk_part_iter_exit);
188 static inline int sector_in_part(struct hd_struct *part, sector_t sector)
190 return part->start_sect <= sector &&
191 sector < part->start_sect + part->nr_sects;
195 * disk_map_sector_rcu - map sector to partition
196 * @disk: gendisk of interest
197 * @sector: sector to map
199 * Find out which partition @sector maps to on @disk. This is
200 * primarily used for stats accounting.
202 * CONTEXT:
203 * RCU read locked. The returned partition pointer is valid only
204 * while preemption is disabled.
206 * RETURNS:
207 * Found partition on success, part0 is returned if no partition matches
209 struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
211 struct disk_part_tbl *ptbl;
212 struct hd_struct *part;
213 int i;
215 ptbl = rcu_dereference(disk->part_tbl);
217 part = rcu_dereference(ptbl->last_lookup);
218 if (part && sector_in_part(part, sector))
219 return part;
221 for (i = 1; i < ptbl->len; i++) {
222 part = rcu_dereference(ptbl->part[i]);
224 if (part && sector_in_part(part, sector)) {
225 rcu_assign_pointer(ptbl->last_lookup, part);
226 return part;
229 return &disk->part0;
231 EXPORT_SYMBOL_GPL(disk_map_sector_rcu);
234 * Can be deleted altogether. Later.
237 static struct blk_major_name {
238 struct blk_major_name *next;
239 int major;
240 char name[16];
241 } *major_names[BLKDEV_MAJOR_HASH_SIZE];
243 /* index in the above - for now: assume no multimajor ranges */
244 static inline int major_to_index(int major)
246 return major % BLKDEV_MAJOR_HASH_SIZE;
249 #ifdef CONFIG_PROC_FS
250 void blkdev_show(struct seq_file *seqf, off_t offset)
252 struct blk_major_name *dp;
254 if (offset < BLKDEV_MAJOR_HASH_SIZE) {
255 mutex_lock(&block_class_lock);
256 for (dp = major_names[offset]; dp; dp = dp->next)
257 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
258 mutex_unlock(&block_class_lock);
261 #endif /* CONFIG_PROC_FS */
264 * register_blkdev - register a new block device
266 * @major: the requested major device number [1..255]. If @major=0, try to
267 * allocate any unused major number.
268 * @name: the name of the new block device as a zero terminated string
270 * The @name must be unique within the system.
272 * The return value depends on the @major input parameter.
273 * - if a major device number was requested in range [1..255] then the
274 * function returns zero on success, or a negative error code
275 * - if any unused major number was requested with @major=0 parameter
276 * then the return value is the allocated major number in range
277 * [1..255] or a negative error code otherwise
279 int register_blkdev(unsigned int major, const char *name)
281 struct blk_major_name **n, *p;
282 int index, ret = 0;
284 mutex_lock(&block_class_lock);
286 /* temporary */
287 if (major == 0) {
288 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
289 if (major_names[index] == NULL)
290 break;
293 if (index == 0) {
294 printk("register_blkdev: failed to get major for %s\n",
295 name);
296 ret = -EBUSY;
297 goto out;
299 major = index;
300 ret = major;
303 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
304 if (p == NULL) {
305 ret = -ENOMEM;
306 goto out;
309 p->major = major;
310 strlcpy(p->name, name, sizeof(p->name));
311 p->next = NULL;
312 index = major_to_index(major);
314 for (n = &major_names[index]; *n; n = &(*n)->next) {
315 if ((*n)->major == major)
316 break;
318 if (!*n)
319 *n = p;
320 else
321 ret = -EBUSY;
323 if (ret < 0) {
324 printk("register_blkdev: cannot get major %d for %s\n",
325 major, name);
326 kfree(p);
328 out:
329 mutex_unlock(&block_class_lock);
330 return ret;
333 EXPORT_SYMBOL(register_blkdev);
335 void unregister_blkdev(unsigned int major, const char *name)
337 struct blk_major_name **n;
338 struct blk_major_name *p = NULL;
339 int index = major_to_index(major);
341 mutex_lock(&block_class_lock);
342 for (n = &major_names[index]; *n; n = &(*n)->next)
343 if ((*n)->major == major)
344 break;
345 if (!*n || strcmp((*n)->name, name)) {
346 WARN_ON(1);
347 } else {
348 p = *n;
349 *n = p->next;
351 mutex_unlock(&block_class_lock);
352 kfree(p);
355 EXPORT_SYMBOL(unregister_blkdev);
357 static struct kobj_map *bdev_map;
360 * blk_mangle_minor - scatter minor numbers apart
361 * @minor: minor number to mangle
363 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
364 * is enabled. Mangling twice gives the original value.
366 * RETURNS:
367 * Mangled value.
369 * CONTEXT:
370 * Don't care.
372 static int blk_mangle_minor(int minor)
374 #ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
375 int i;
377 for (i = 0; i < MINORBITS / 2; i++) {
378 int low = minor & (1 << i);
379 int high = minor & (1 << (MINORBITS - 1 - i));
380 int distance = MINORBITS - 1 - 2 * i;
382 minor ^= low | high; /* clear both bits */
383 low <<= distance; /* swap the positions */
384 high >>= distance;
385 minor |= low | high; /* and set */
387 #endif
388 return minor;
392 * blk_alloc_devt - allocate a dev_t for a partition
393 * @part: partition to allocate dev_t for
394 * @devt: out parameter for resulting dev_t
396 * Allocate a dev_t for block device.
398 * RETURNS:
399 * 0 on success, allocated dev_t is returned in *@devt. -errno on
400 * failure.
402 * CONTEXT:
403 * Might sleep.
405 int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
407 struct gendisk *disk = part_to_disk(part);
408 int idx, rc;
410 /* in consecutive minor range? */
411 if (part->partno < disk->minors) {
412 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
413 return 0;
416 /* allocate ext devt */
417 do {
418 if (!idr_pre_get(&ext_devt_idr, GFP_KERNEL))
419 return -ENOMEM;
420 rc = idr_get_new(&ext_devt_idr, part, &idx);
421 } while (rc == -EAGAIN);
423 if (rc)
424 return rc;
426 if (idx > MAX_EXT_DEVT) {
427 idr_remove(&ext_devt_idr, idx);
428 return -EBUSY;
431 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
432 return 0;
436 * blk_free_devt - free a dev_t
437 * @devt: dev_t to free
439 * Free @devt which was allocated using blk_alloc_devt().
441 * CONTEXT:
442 * Might sleep.
444 void blk_free_devt(dev_t devt)
446 might_sleep();
448 if (devt == MKDEV(0, 0))
449 return;
451 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
452 mutex_lock(&ext_devt_mutex);
453 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
454 mutex_unlock(&ext_devt_mutex);
458 static char *bdevt_str(dev_t devt, char *buf)
460 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
461 char tbuf[BDEVT_SIZE];
462 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
463 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
464 } else
465 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
467 return buf;
471 * Register device numbers dev..(dev+range-1)
472 * range must be nonzero
473 * The hash chain is sorted on range, so that subranges can override.
475 void blk_register_region(dev_t devt, unsigned long range, struct module *module,
476 struct kobject *(*probe)(dev_t, int *, void *),
477 int (*lock)(dev_t, void *), void *data)
479 kobj_map(bdev_map, devt, range, module, probe, lock, data);
482 EXPORT_SYMBOL(blk_register_region);
484 void blk_unregister_region(dev_t devt, unsigned long range)
486 kobj_unmap(bdev_map, devt, range);
489 EXPORT_SYMBOL(blk_unregister_region);
491 static struct kobject *exact_match(dev_t devt, int *partno, void *data)
493 struct gendisk *p = data;
495 return &disk_to_dev(p)->kobj;
498 static int exact_lock(dev_t devt, void *data)
500 struct gendisk *p = data;
502 if (!get_disk(p))
503 return -1;
504 return 0;
508 * add_disk - add partitioning information to kernel list
509 * @disk: per-device partitioning information
511 * This function registers the partitioning information in @disk
512 * with the kernel.
514 * FIXME: error handling
516 void add_disk(struct gendisk *disk)
518 struct backing_dev_info *bdi;
519 dev_t devt;
520 int retval;
522 /* minors == 0 indicates to use ext devt from part0 and should
523 * be accompanied with EXT_DEVT flag. Make sure all
524 * parameters make sense.
526 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
527 WARN_ON(!disk->minors && !(disk->flags & GENHD_FL_EXT_DEVT));
529 disk->flags |= GENHD_FL_UP;
531 retval = blk_alloc_devt(&disk->part0, &devt);
532 if (retval) {
533 WARN_ON(1);
534 return;
536 disk_to_dev(disk)->devt = devt;
538 /* ->major and ->first_minor aren't supposed to be
539 * dereferenced from here on, but set them just in case.
541 disk->major = MAJOR(devt);
542 disk->first_minor = MINOR(devt);
544 /* Register BDI before referencing it from bdev */
545 bdi = &disk->queue->backing_dev_info;
546 bdi_register_dev(bdi, disk_devt(disk));
548 blk_register_region(disk_devt(disk), disk->minors, NULL,
549 exact_match, exact_lock, disk);
550 register_disk(disk);
551 blk_register_queue(disk);
553 retval = sysfs_create_link(&disk_to_dev(disk)->kobj, &bdi->dev->kobj,
554 "bdi");
555 WARN_ON(retval);
558 EXPORT_SYMBOL(add_disk);
559 EXPORT_SYMBOL(del_gendisk); /* in partitions/check.c */
561 void unlink_gendisk(struct gendisk *disk)
563 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
564 bdi_unregister(&disk->queue->backing_dev_info);
565 blk_unregister_queue(disk);
566 blk_unregister_region(disk_devt(disk), disk->minors);
570 * get_gendisk - get partitioning information for a given device
571 * @devt: device to get partitioning information for
572 * @partno: returned partition index
574 * This function gets the structure containing partitioning
575 * information for the given device @devt.
577 struct gendisk *get_gendisk(dev_t devt, int *partno)
579 struct gendisk *disk = NULL;
581 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
582 struct kobject *kobj;
584 kobj = kobj_lookup(bdev_map, devt, partno);
585 if (kobj)
586 disk = dev_to_disk(kobj_to_dev(kobj));
587 } else {
588 struct hd_struct *part;
590 mutex_lock(&ext_devt_mutex);
591 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
592 if (part && get_disk(part_to_disk(part))) {
593 *partno = part->partno;
594 disk = part_to_disk(part);
596 mutex_unlock(&ext_devt_mutex);
599 return disk;
601 EXPORT_SYMBOL(get_gendisk);
604 * bdget_disk - do bdget() by gendisk and partition number
605 * @disk: gendisk of interest
606 * @partno: partition number
608 * Find partition @partno from @disk, do bdget() on it.
610 * CONTEXT:
611 * Don't care.
613 * RETURNS:
614 * Resulting block_device on success, NULL on failure.
616 struct block_device *bdget_disk(struct gendisk *disk, int partno)
618 struct hd_struct *part;
619 struct block_device *bdev = NULL;
621 part = disk_get_part(disk, partno);
622 if (part)
623 bdev = bdget(part_devt(part));
624 disk_put_part(part);
626 return bdev;
628 EXPORT_SYMBOL(bdget_disk);
631 * print a full list of all partitions - intended for places where the root
632 * filesystem can't be mounted and thus to give the victim some idea of what
633 * went wrong
635 void __init printk_all_partitions(void)
637 struct class_dev_iter iter;
638 struct device *dev;
640 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
641 while ((dev = class_dev_iter_next(&iter))) {
642 struct gendisk *disk = dev_to_disk(dev);
643 struct disk_part_iter piter;
644 struct hd_struct *part;
645 char name_buf[BDEVNAME_SIZE];
646 char devt_buf[BDEVT_SIZE];
647 u8 uuid[PARTITION_META_INFO_UUIDLTH * 2 + 1];
650 * Don't show empty devices or things that have been
651 * surpressed
653 if (get_capacity(disk) == 0 ||
654 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
655 continue;
658 * Note, unlike /proc/partitions, I am showing the
659 * numbers in hex - the same format as the root=
660 * option takes.
662 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
663 while ((part = disk_part_iter_next(&piter))) {
664 bool is_part0 = part == &disk->part0;
666 uuid[0] = 0;
667 if (part->info)
668 part_unpack_uuid(part->info->uuid, uuid);
670 printk("%s%s %10llu %s %s", is_part0 ? "" : " ",
671 bdevt_str(part_devt(part), devt_buf),
672 (unsigned long long)part->nr_sects >> 1,
673 disk_name(disk, part->partno, name_buf), uuid);
674 if (is_part0) {
675 if (disk->driverfs_dev != NULL &&
676 disk->driverfs_dev->driver != NULL)
677 printk(" driver: %s\n",
678 disk->driverfs_dev->driver->name);
679 else
680 printk(" (driver?)\n");
681 } else
682 printk("\n");
684 disk_part_iter_exit(&piter);
686 class_dev_iter_exit(&iter);
689 #ifdef CONFIG_PROC_FS
690 /* iterator */
691 static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
693 loff_t skip = *pos;
694 struct class_dev_iter *iter;
695 struct device *dev;
697 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
698 if (!iter)
699 return ERR_PTR(-ENOMEM);
701 seqf->private = iter;
702 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
703 do {
704 dev = class_dev_iter_next(iter);
705 if (!dev)
706 return NULL;
707 } while (skip--);
709 return dev_to_disk(dev);
712 static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
714 struct device *dev;
716 (*pos)++;
717 dev = class_dev_iter_next(seqf->private);
718 if (dev)
719 return dev_to_disk(dev);
721 return NULL;
724 static void disk_seqf_stop(struct seq_file *seqf, void *v)
726 struct class_dev_iter *iter = seqf->private;
728 /* stop is called even after start failed :-( */
729 if (iter) {
730 class_dev_iter_exit(iter);
731 kfree(iter);
735 static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
737 static void *p;
739 p = disk_seqf_start(seqf, pos);
740 if (!IS_ERR(p) && p && !*pos)
741 seq_puts(seqf, "major minor #blocks name\n\n");
742 return p;
745 static int show_partition(struct seq_file *seqf, void *v)
747 struct gendisk *sgp = v;
748 struct disk_part_iter piter;
749 struct hd_struct *part;
750 char buf[BDEVNAME_SIZE];
752 /* Don't show non-partitionable removeable devices or empty devices */
753 if (!get_capacity(sgp) || (!disk_partitionable(sgp) &&
754 (sgp->flags & GENHD_FL_REMOVABLE)))
755 return 0;
756 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
757 return 0;
759 /* show the full disk and all non-0 size partitions of it */
760 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
761 while ((part = disk_part_iter_next(&piter)))
762 seq_printf(seqf, "%4d %7d %10llu %s\n",
763 MAJOR(part_devt(part)), MINOR(part_devt(part)),
764 (unsigned long long)part->nr_sects >> 1,
765 disk_name(sgp, part->partno, buf));
766 disk_part_iter_exit(&piter);
768 return 0;
771 static const struct seq_operations partitions_op = {
772 .start = show_partition_start,
773 .next = disk_seqf_next,
774 .stop = disk_seqf_stop,
775 .show = show_partition
778 static int partitions_open(struct inode *inode, struct file *file)
780 return seq_open(file, &partitions_op);
783 static const struct file_operations proc_partitions_operations = {
784 .open = partitions_open,
785 .read = seq_read,
786 .llseek = seq_lseek,
787 .release = seq_release,
789 #endif
792 static struct kobject *base_probe(dev_t devt, int *partno, void *data)
794 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
795 /* Make old-style 2.4 aliases work */
796 request_module("block-major-%d", MAJOR(devt));
797 return NULL;
800 static int __init genhd_device_init(void)
802 int error;
804 block_class.dev_kobj = sysfs_dev_block_kobj;
805 error = class_register(&block_class);
806 if (unlikely(error))
807 return error;
808 bdev_map = kobj_map_init(base_probe, &block_class_lock);
809 blk_dev_init();
811 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
813 #ifndef CONFIG_SYSFS_DEPRECATED
814 /* create top-level block dir */
815 block_depr = kobject_create_and_add("block", NULL);
816 #endif
817 return 0;
820 subsys_initcall(genhd_device_init);
822 static ssize_t disk_range_show(struct device *dev,
823 struct device_attribute *attr, char *buf)
825 struct gendisk *disk = dev_to_disk(dev);
827 return sprintf(buf, "%d\n", disk->minors);
830 static ssize_t disk_ext_range_show(struct device *dev,
831 struct device_attribute *attr, char *buf)
833 struct gendisk *disk = dev_to_disk(dev);
835 return sprintf(buf, "%d\n", disk_max_parts(disk));
838 static ssize_t disk_removable_show(struct device *dev,
839 struct device_attribute *attr, char *buf)
841 struct gendisk *disk = dev_to_disk(dev);
843 return sprintf(buf, "%d\n",
844 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
847 static ssize_t disk_ro_show(struct device *dev,
848 struct device_attribute *attr, char *buf)
850 struct gendisk *disk = dev_to_disk(dev);
852 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
855 static ssize_t disk_capability_show(struct device *dev,
856 struct device_attribute *attr, char *buf)
858 struct gendisk *disk = dev_to_disk(dev);
860 return sprintf(buf, "%x\n", disk->flags);
863 static ssize_t disk_alignment_offset_show(struct device *dev,
864 struct device_attribute *attr,
865 char *buf)
867 struct gendisk *disk = dev_to_disk(dev);
869 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
872 static ssize_t disk_discard_alignment_show(struct device *dev,
873 struct device_attribute *attr,
874 char *buf)
876 struct gendisk *disk = dev_to_disk(dev);
878 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
881 static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
882 static DEVICE_ATTR(ext_range, S_IRUGO, disk_ext_range_show, NULL);
883 static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
884 static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
885 static DEVICE_ATTR(size, S_IRUGO, part_size_show, NULL);
886 static DEVICE_ATTR(alignment_offset, S_IRUGO, disk_alignment_offset_show, NULL);
887 static DEVICE_ATTR(discard_alignment, S_IRUGO, disk_discard_alignment_show,
888 NULL);
889 static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
890 static DEVICE_ATTR(stat, S_IRUGO, part_stat_show, NULL);
891 static DEVICE_ATTR(inflight, S_IRUGO, part_inflight_show, NULL);
892 #ifdef CONFIG_FAIL_MAKE_REQUEST
893 static struct device_attribute dev_attr_fail =
894 __ATTR(make-it-fail, S_IRUGO|S_IWUSR, part_fail_show, part_fail_store);
895 #endif
896 #ifdef CONFIG_FAIL_IO_TIMEOUT
897 static struct device_attribute dev_attr_fail_timeout =
898 __ATTR(io-timeout-fail, S_IRUGO|S_IWUSR, part_timeout_show,
899 part_timeout_store);
900 #endif
902 static struct attribute *disk_attrs[] = {
903 &dev_attr_range.attr,
904 &dev_attr_ext_range.attr,
905 &dev_attr_removable.attr,
906 &dev_attr_ro.attr,
907 &dev_attr_size.attr,
908 &dev_attr_alignment_offset.attr,
909 &dev_attr_discard_alignment.attr,
910 &dev_attr_capability.attr,
911 &dev_attr_stat.attr,
912 &dev_attr_inflight.attr,
913 #ifdef CONFIG_FAIL_MAKE_REQUEST
914 &dev_attr_fail.attr,
915 #endif
916 #ifdef CONFIG_FAIL_IO_TIMEOUT
917 &dev_attr_fail_timeout.attr,
918 #endif
919 NULL
922 static struct attribute_group disk_attr_group = {
923 .attrs = disk_attrs,
926 static const struct attribute_group *disk_attr_groups[] = {
927 &disk_attr_group,
928 NULL
931 static void disk_free_ptbl_rcu_cb(struct rcu_head *head)
933 struct disk_part_tbl *ptbl =
934 container_of(head, struct disk_part_tbl, rcu_head);
936 kfree(ptbl);
940 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
941 * @disk: disk to replace part_tbl for
942 * @new_ptbl: new part_tbl to install
944 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
945 * original ptbl is freed using RCU callback.
947 * LOCKING:
948 * Matching bd_mutx locked.
950 static void disk_replace_part_tbl(struct gendisk *disk,
951 struct disk_part_tbl *new_ptbl)
953 struct disk_part_tbl *old_ptbl = disk->part_tbl;
955 rcu_assign_pointer(disk->part_tbl, new_ptbl);
957 if (old_ptbl) {
958 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
959 call_rcu(&old_ptbl->rcu_head, disk_free_ptbl_rcu_cb);
964 * disk_expand_part_tbl - expand disk->part_tbl
965 * @disk: disk to expand part_tbl for
966 * @partno: expand such that this partno can fit in
968 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
969 * uses RCU to allow unlocked dereferencing for stats and other stuff.
971 * LOCKING:
972 * Matching bd_mutex locked, might sleep.
974 * RETURNS:
975 * 0 on success, -errno on failure.
977 int disk_expand_part_tbl(struct gendisk *disk, int partno)
979 struct disk_part_tbl *old_ptbl = disk->part_tbl;
980 struct disk_part_tbl *new_ptbl;
981 int len = old_ptbl ? old_ptbl->len : 0;
982 int target = partno + 1;
983 size_t size;
984 int i;
986 /* disk_max_parts() is zero during initialization, ignore if so */
987 if (disk_max_parts(disk) && target > disk_max_parts(disk))
988 return -EINVAL;
990 if (target <= len)
991 return 0;
993 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
994 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
995 if (!new_ptbl)
996 return -ENOMEM;
998 new_ptbl->len = target;
1000 for (i = 0; i < len; i++)
1001 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1003 disk_replace_part_tbl(disk, new_ptbl);
1004 return 0;
1007 static void disk_release(struct device *dev)
1009 struct gendisk *disk = dev_to_disk(dev);
1011 kfree(disk->random);
1012 disk_replace_part_tbl(disk, NULL);
1013 free_part_stats(&disk->part0);
1014 free_part_info(&disk->part0);
1015 kfree(disk);
1017 struct class block_class = {
1018 .name = "block",
1021 static char *block_devnode(struct device *dev, mode_t *mode)
1023 struct gendisk *disk = dev_to_disk(dev);
1025 if (disk->devnode)
1026 return disk->devnode(disk, mode);
1027 return NULL;
1030 static struct device_type disk_type = {
1031 .name = "disk",
1032 .groups = disk_attr_groups,
1033 .release = disk_release,
1034 .devnode = block_devnode,
1037 #ifdef CONFIG_PROC_FS
1039 * aggregate disk stat collector. Uses the same stats that the sysfs
1040 * entries do, above, but makes them available through one seq_file.
1042 * The output looks suspiciously like /proc/partitions with a bunch of
1043 * extra fields.
1045 static int diskstats_show(struct seq_file *seqf, void *v)
1047 struct gendisk *gp = v;
1048 struct disk_part_iter piter;
1049 struct hd_struct *hd;
1050 char buf[BDEVNAME_SIZE];
1051 int cpu;
1054 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
1055 seq_puts(seqf, "major minor name"
1056 " rio rmerge rsect ruse wio wmerge "
1057 "wsect wuse running use aveq"
1058 "\n\n");
1061 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
1062 while ((hd = disk_part_iter_next(&piter))) {
1063 cpu = part_stat_lock();
1064 part_round_stats(cpu, hd);
1065 part_stat_unlock();
1066 seq_printf(seqf, "%4d %7d %s %lu %lu %llu "
1067 "%u %lu %lu %llu %u %u %u %u\n",
1068 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1069 disk_name(gp, hd->partno, buf),
1070 part_stat_read(hd, ios[0]),
1071 part_stat_read(hd, merges[0]),
1072 (unsigned long long)part_stat_read(hd, sectors[0]),
1073 jiffies_to_msecs(part_stat_read(hd, ticks[0])),
1074 part_stat_read(hd, ios[1]),
1075 part_stat_read(hd, merges[1]),
1076 (unsigned long long)part_stat_read(hd, sectors[1]),
1077 jiffies_to_msecs(part_stat_read(hd, ticks[1])),
1078 part_in_flight(hd),
1079 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
1080 jiffies_to_msecs(part_stat_read(hd, time_in_queue))
1083 disk_part_iter_exit(&piter);
1085 return 0;
1088 static const struct seq_operations diskstats_op = {
1089 .start = disk_seqf_start,
1090 .next = disk_seqf_next,
1091 .stop = disk_seqf_stop,
1092 .show = diskstats_show
1095 static int diskstats_open(struct inode *inode, struct file *file)
1097 return seq_open(file, &diskstats_op);
1100 static const struct file_operations proc_diskstats_operations = {
1101 .open = diskstats_open,
1102 .read = seq_read,
1103 .llseek = seq_lseek,
1104 .release = seq_release,
1107 static int __init proc_genhd_init(void)
1109 proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
1110 proc_create("partitions", 0, NULL, &proc_partitions_operations);
1111 return 0;
1113 module_init(proc_genhd_init);
1114 #endif /* CONFIG_PROC_FS */
1116 static void media_change_notify_thread(struct work_struct *work)
1118 struct gendisk *gd = container_of(work, struct gendisk, async_notify);
1119 char event[] = "MEDIA_CHANGE=1";
1120 char *envp[] = { event, NULL };
1123 * set enviroment vars to indicate which event this is for
1124 * so that user space will know to go check the media status.
1126 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1127 put_device(gd->driverfs_dev);
1130 #if 0
1131 void genhd_media_change_notify(struct gendisk *disk)
1133 get_device(disk->driverfs_dev);
1134 schedule_work(&disk->async_notify);
1136 EXPORT_SYMBOL_GPL(genhd_media_change_notify);
1137 #endif /* 0 */
1139 dev_t blk_lookup_devt(const char *name, int partno)
1141 dev_t devt = MKDEV(0, 0);
1142 struct class_dev_iter iter;
1143 struct device *dev;
1145 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1146 while ((dev = class_dev_iter_next(&iter))) {
1147 struct gendisk *disk = dev_to_disk(dev);
1148 struct hd_struct *part;
1150 if (strcmp(dev_name(dev), name))
1151 continue;
1153 if (partno < disk->minors) {
1154 /* We need to return the right devno, even
1155 * if the partition doesn't exist yet.
1157 devt = MKDEV(MAJOR(dev->devt),
1158 MINOR(dev->devt) + partno);
1159 break;
1161 part = disk_get_part(disk, partno);
1162 if (part) {
1163 devt = part_devt(part);
1164 disk_put_part(part);
1165 break;
1167 disk_put_part(part);
1169 class_dev_iter_exit(&iter);
1170 return devt;
1172 EXPORT_SYMBOL(blk_lookup_devt);
1174 struct gendisk *alloc_disk(int minors)
1176 return alloc_disk_node(minors, -1);
1178 EXPORT_SYMBOL(alloc_disk);
1180 struct gendisk *alloc_disk_node(int minors, int node_id)
1182 struct gendisk *disk;
1184 disk = kmalloc_node(sizeof(struct gendisk),
1185 GFP_KERNEL | __GFP_ZERO, node_id);
1186 if (disk) {
1187 if (!init_part_stats(&disk->part0)) {
1188 kfree(disk);
1189 return NULL;
1191 disk->node_id = node_id;
1192 if (disk_expand_part_tbl(disk, 0)) {
1193 free_part_stats(&disk->part0);
1194 kfree(disk);
1195 return NULL;
1197 disk->part_tbl->part[0] = &disk->part0;
1199 disk->minors = minors;
1200 rand_initialize_disk(disk);
1201 disk_to_dev(disk)->class = &block_class;
1202 disk_to_dev(disk)->type = &disk_type;
1203 device_initialize(disk_to_dev(disk));
1204 INIT_WORK(&disk->async_notify,
1205 media_change_notify_thread);
1207 return disk;
1209 EXPORT_SYMBOL(alloc_disk_node);
1211 struct kobject *get_disk(struct gendisk *disk)
1213 struct module *owner;
1214 struct kobject *kobj;
1216 if (!disk->fops)
1217 return NULL;
1218 owner = disk->fops->owner;
1219 if (owner && !try_module_get(owner))
1220 return NULL;
1221 kobj = kobject_get(&disk_to_dev(disk)->kobj);
1222 if (kobj == NULL) {
1223 module_put(owner);
1224 return NULL;
1226 return kobj;
1230 EXPORT_SYMBOL(get_disk);
1232 void put_disk(struct gendisk *disk)
1234 if (disk)
1235 kobject_put(&disk_to_dev(disk)->kobj);
1238 EXPORT_SYMBOL(put_disk);
1240 static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1242 char event[] = "DISK_RO=1";
1243 char *envp[] = { event, NULL };
1245 if (!ro)
1246 event[8] = '0';
1247 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1250 void set_device_ro(struct block_device *bdev, int flag)
1252 bdev->bd_part->policy = flag;
1255 EXPORT_SYMBOL(set_device_ro);
1257 void set_disk_ro(struct gendisk *disk, int flag)
1259 struct disk_part_iter piter;
1260 struct hd_struct *part;
1262 if (disk->part0.policy != flag) {
1263 set_disk_ro_uevent(disk, flag);
1264 disk->part0.policy = flag;
1267 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
1268 while ((part = disk_part_iter_next(&piter)))
1269 part->policy = flag;
1270 disk_part_iter_exit(&piter);
1273 EXPORT_SYMBOL(set_disk_ro);
1275 int bdev_read_only(struct block_device *bdev)
1277 if (!bdev)
1278 return 0;
1279 return bdev->bd_part->policy;
1282 EXPORT_SYMBOL(bdev_read_only);
1284 int invalidate_partition(struct gendisk *disk, int partno)
1286 int res = 0;
1287 struct block_device *bdev = bdget_disk(disk, partno);
1288 if (bdev) {
1289 fsync_bdev(bdev);
1290 res = __invalidate_device(bdev);
1291 bdput(bdev);
1293 return res;
1296 EXPORT_SYMBOL(invalidate_partition);