5 #include <linux/module.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/seq_file.h>
14 #include <linux/slab.h>
15 #include <linux/kmod.h>
16 #include <linux/kobj_map.h>
17 #include <linux/buffer_head.h>
18 #include <linux/mutex.h>
20 static DEFINE_MUTEX(block_class_lock
);
21 #ifndef CONFIG_SYSFS_DEPRECATED
22 struct kobject
*block_depr
;
26 * Can be deleted altogether. Later.
29 static struct blk_major_name
{
30 struct blk_major_name
*next
;
33 } *major_names
[BLKDEV_MAJOR_HASH_SIZE
];
35 /* index in the above - for now: assume no multimajor ranges */
36 static inline int major_to_index(int major
)
38 return major
% BLKDEV_MAJOR_HASH_SIZE
;
42 void blkdev_show(struct seq_file
*f
, off_t offset
)
44 struct blk_major_name
*dp
;
46 if (offset
< BLKDEV_MAJOR_HASH_SIZE
) {
47 mutex_lock(&block_class_lock
);
48 for (dp
= major_names
[offset
]; dp
; dp
= dp
->next
)
49 seq_printf(f
, "%3d %s\n", dp
->major
, dp
->name
);
50 mutex_unlock(&block_class_lock
);
53 #endif /* CONFIG_PROC_FS */
55 int register_blkdev(unsigned int major
, const char *name
)
57 struct blk_major_name
**n
, *p
;
60 mutex_lock(&block_class_lock
);
64 for (index
= ARRAY_SIZE(major_names
)-1; index
> 0; index
--) {
65 if (major_names
[index
] == NULL
)
70 printk("register_blkdev: failed to get major for %s\n",
79 p
= kmalloc(sizeof(struct blk_major_name
), GFP_KERNEL
);
86 strlcpy(p
->name
, name
, sizeof(p
->name
));
88 index
= major_to_index(major
);
90 for (n
= &major_names
[index
]; *n
; n
= &(*n
)->next
) {
91 if ((*n
)->major
== major
)
100 printk("register_blkdev: cannot get major %d for %s\n",
105 mutex_unlock(&block_class_lock
);
109 EXPORT_SYMBOL(register_blkdev
);
111 void unregister_blkdev(unsigned int major
, const char *name
)
113 struct blk_major_name
**n
;
114 struct blk_major_name
*p
= NULL
;
115 int index
= major_to_index(major
);
117 mutex_lock(&block_class_lock
);
118 for (n
= &major_names
[index
]; *n
; n
= &(*n
)->next
)
119 if ((*n
)->major
== major
)
121 if (!*n
|| strcmp((*n
)->name
, name
)) {
127 mutex_unlock(&block_class_lock
);
131 EXPORT_SYMBOL(unregister_blkdev
);
133 static struct kobj_map
*bdev_map
;
136 * Register device numbers dev..(dev+range-1)
137 * range must be nonzero
138 * The hash chain is sorted on range, so that subranges can override.
140 void blk_register_region(dev_t devt
, unsigned long range
, struct module
*module
,
141 struct kobject
*(*probe
)(dev_t
, int *, void *),
142 int (*lock
)(dev_t
, void *), void *data
)
144 kobj_map(bdev_map
, devt
, range
, module
, probe
, lock
, data
);
147 EXPORT_SYMBOL(blk_register_region
);
149 void blk_unregister_region(dev_t devt
, unsigned long range
)
151 kobj_unmap(bdev_map
, devt
, range
);
154 EXPORT_SYMBOL(blk_unregister_region
);
156 static struct kobject
*exact_match(dev_t devt
, int *part
, void *data
)
158 struct gendisk
*p
= data
;
163 static int exact_lock(dev_t devt
, void *data
)
165 struct gendisk
*p
= data
;
173 * add_disk - add partitioning information to kernel list
174 * @disk: per-device partitioning information
176 * This function registers the partitioning information in @disk
179 void add_disk(struct gendisk
*disk
)
181 disk
->flags
|= GENHD_FL_UP
;
182 blk_register_region(MKDEV(disk
->major
, disk
->first_minor
),
183 disk
->minors
, NULL
, exact_match
, exact_lock
, disk
);
185 blk_register_queue(disk
);
188 EXPORT_SYMBOL(add_disk
);
189 EXPORT_SYMBOL(del_gendisk
); /* in partitions/check.c */
191 void unlink_gendisk(struct gendisk
*disk
)
193 blk_unregister_queue(disk
);
194 blk_unregister_region(MKDEV(disk
->major
, disk
->first_minor
),
199 * get_gendisk - get partitioning information for a given device
200 * @dev: device to get partitioning information for
202 * This function gets the structure containing partitioning
203 * information for the given device @dev.
205 struct gendisk
*get_gendisk(dev_t devt
, int *part
)
207 struct kobject
*kobj
= kobj_lookup(bdev_map
, devt
, part
);
208 struct device
*dev
= kobj_to_dev(kobj
);
210 return kobj
? dev_to_disk(dev
) : NULL
;
214 * print a full list of all partitions - intended for places where the root
215 * filesystem can't be mounted and thus to give the victim some idea of what
218 void __init
printk_all_partitions(void)
222 char buf
[BDEVNAME_SIZE
];
225 mutex_lock(&block_class_lock
);
226 /* For each block device... */
227 list_for_each_entry(dev
, &block_class
.devices
, node
) {
228 if (dev
->type
!= &disk_type
)
230 sgp
= dev_to_disk(dev
);
232 * Don't show empty devices or things that have been surpressed
234 if (get_capacity(sgp
) == 0 ||
235 (sgp
->flags
& GENHD_FL_SUPPRESS_PARTITION_INFO
))
239 * Note, unlike /proc/partitions, I am showing the numbers in
240 * hex - the same format as the root= option takes.
242 printk("%02x%02x %10llu %s",
243 sgp
->major
, sgp
->first_minor
,
244 (unsigned long long)get_capacity(sgp
) >> 1,
245 disk_name(sgp
, 0, buf
));
246 if (sgp
->driverfs_dev
!= NULL
&&
247 sgp
->driverfs_dev
->driver
!= NULL
)
248 printk(" driver: %s\n",
249 sgp
->driverfs_dev
->driver
->name
);
251 printk(" (driver?)\n");
253 /* now show the partitions */
254 for (n
= 0; n
< sgp
->minors
- 1; ++n
) {
255 if (sgp
->part
[n
] == NULL
)
257 if (sgp
->part
[n
]->nr_sects
== 0)
259 printk(" %02x%02x %10llu %s\n",
260 sgp
->major
, n
+ 1 + sgp
->first_minor
,
261 (unsigned long long)sgp
->part
[n
]->nr_sects
>> 1,
262 disk_name(sgp
, n
+ 1, buf
));
266 mutex_unlock(&block_class_lock
);
269 #ifdef CONFIG_PROC_FS
271 static void *part_start(struct seq_file
*part
, loff_t
*pos
)
276 mutex_lock(&block_class_lock
);
277 list_for_each_entry(dev
, &block_class
.devices
, node
) {
278 if (dev
->type
!= &disk_type
)
281 return dev_to_disk(dev
);
286 static void *part_next(struct seq_file
*part
, void *v
, loff_t
*pos
)
288 struct gendisk
*gp
= v
;
291 list_for_each_entry(dev
, &gp
->dev
.node
, node
) {
292 if (&dev
->node
== &block_class
.devices
)
294 if (dev
->type
== &disk_type
)
295 return dev_to_disk(dev
);
300 static void part_stop(struct seq_file
*part
, void *v
)
302 mutex_unlock(&block_class_lock
);
305 static int show_partition(struct seq_file
*part
, void *v
)
307 struct gendisk
*sgp
= v
;
309 char buf
[BDEVNAME_SIZE
];
311 if (&sgp
->dev
.node
== block_class
.devices
.next
)
312 seq_puts(part
, "major minor #blocks name\n\n");
314 /* Don't show non-partitionable removeable devices or empty devices */
315 if (!get_capacity(sgp
) ||
316 (sgp
->minors
== 1 && (sgp
->flags
& GENHD_FL_REMOVABLE
)))
318 if (sgp
->flags
& GENHD_FL_SUPPRESS_PARTITION_INFO
)
321 /* show the full disk and all non-0 size partitions of it */
322 seq_printf(part
, "%4d %4d %10llu %s\n",
323 sgp
->major
, sgp
->first_minor
,
324 (unsigned long long)get_capacity(sgp
) >> 1,
325 disk_name(sgp
, 0, buf
));
326 for (n
= 0; n
< sgp
->minors
- 1; n
++) {
329 if (sgp
->part
[n
]->nr_sects
== 0)
331 seq_printf(part
, "%4d %4d %10llu %s\n",
332 sgp
->major
, n
+ 1 + sgp
->first_minor
,
333 (unsigned long long)sgp
->part
[n
]->nr_sects
>> 1 ,
334 disk_name(sgp
, n
+ 1, buf
));
340 const struct seq_operations partitions_op
= {
344 .show
= show_partition
349 extern int blk_dev_init(void);
351 static struct kobject
*base_probe(dev_t devt
, int *part
, void *data
)
353 if (request_module("block-major-%d-%d", MAJOR(devt
), MINOR(devt
)) > 0)
354 /* Make old-style 2.4 aliases work */
355 request_module("block-major-%d", MAJOR(devt
));
359 static int __init
genhd_device_init(void)
361 class_register(&block_class
);
362 bdev_map
= kobj_map_init(base_probe
, &block_class_lock
);
365 #ifndef CONFIG_SYSFS_DEPRECATED
366 /* create top-level block dir */
367 block_depr
= kobject_create_and_add("block", NULL
);
372 subsys_initcall(genhd_device_init
);
374 static ssize_t
disk_range_show(struct device
*dev
,
375 struct device_attribute
*attr
, char *buf
)
377 struct gendisk
*disk
= dev_to_disk(dev
);
379 return sprintf(buf
, "%d\n", disk
->minors
);
382 static ssize_t
disk_removable_show(struct device
*dev
,
383 struct device_attribute
*attr
, char *buf
)
385 struct gendisk
*disk
= dev_to_disk(dev
);
387 return sprintf(buf
, "%d\n",
388 (disk
->flags
& GENHD_FL_REMOVABLE
? 1 : 0));
391 static ssize_t
disk_size_show(struct device
*dev
,
392 struct device_attribute
*attr
, char *buf
)
394 struct gendisk
*disk
= dev_to_disk(dev
);
396 return sprintf(buf
, "%llu\n", (unsigned long long)get_capacity(disk
));
399 static ssize_t
disk_capability_show(struct device
*dev
,
400 struct device_attribute
*attr
, char *buf
)
402 struct gendisk
*disk
= dev_to_disk(dev
);
404 return sprintf(buf
, "%x\n", disk
->flags
);
407 static ssize_t
disk_stat_show(struct device
*dev
,
408 struct device_attribute
*attr
, char *buf
)
410 struct gendisk
*disk
= dev_to_disk(dev
);
413 disk_round_stats(disk
);
416 "%8lu %8lu %8llu %8u "
417 "%8lu %8lu %8llu %8u "
420 disk_stat_read(disk
, ios
[READ
]),
421 disk_stat_read(disk
, merges
[READ
]),
422 (unsigned long long)disk_stat_read(disk
, sectors
[READ
]),
423 jiffies_to_msecs(disk_stat_read(disk
, ticks
[READ
])),
424 disk_stat_read(disk
, ios
[WRITE
]),
425 disk_stat_read(disk
, merges
[WRITE
]),
426 (unsigned long long)disk_stat_read(disk
, sectors
[WRITE
]),
427 jiffies_to_msecs(disk_stat_read(disk
, ticks
[WRITE
])),
429 jiffies_to_msecs(disk_stat_read(disk
, io_ticks
)),
430 jiffies_to_msecs(disk_stat_read(disk
, time_in_queue
)));
433 #ifdef CONFIG_FAIL_MAKE_REQUEST
434 static ssize_t
disk_fail_show(struct device
*dev
,
435 struct device_attribute
*attr
, char *buf
)
437 struct gendisk
*disk
= dev_to_disk(dev
);
439 return sprintf(buf
, "%d\n", disk
->flags
& GENHD_FL_FAIL
? 1 : 0);
442 static ssize_t
disk_fail_store(struct device
*dev
,
443 struct device_attribute
*attr
,
444 const char *buf
, size_t count
)
446 struct gendisk
*disk
= dev_to_disk(dev
);
449 if (count
> 0 && sscanf(buf
, "%d", &i
) > 0) {
451 disk
->flags
&= ~GENHD_FL_FAIL
;
453 disk
->flags
|= GENHD_FL_FAIL
;
461 static DEVICE_ATTR(range
, S_IRUGO
, disk_range_show
, NULL
);
462 static DEVICE_ATTR(removable
, S_IRUGO
, disk_removable_show
, NULL
);
463 static DEVICE_ATTR(size
, S_IRUGO
, disk_size_show
, NULL
);
464 static DEVICE_ATTR(capability
, S_IRUGO
, disk_capability_show
, NULL
);
465 static DEVICE_ATTR(stat
, S_IRUGO
, disk_stat_show
, NULL
);
466 #ifdef CONFIG_FAIL_MAKE_REQUEST
467 static struct device_attribute dev_attr_fail
=
468 __ATTR(make
-it
-fail
, S_IRUGO
|S_IWUSR
, disk_fail_show
, disk_fail_store
);
471 static struct attribute
*disk_attrs
[] = {
472 &dev_attr_range
.attr
,
473 &dev_attr_removable
.attr
,
475 &dev_attr_capability
.attr
,
477 #ifdef CONFIG_FAIL_MAKE_REQUEST
483 static struct attribute_group disk_attr_group
= {
487 static struct attribute_group
*disk_attr_groups
[] = {
492 static void disk_release(struct device
*dev
)
494 struct gendisk
*disk
= dev_to_disk(dev
);
498 free_disk_stats(disk
);
501 struct class block_class
= {
505 struct device_type disk_type
= {
507 .groups
= disk_attr_groups
,
508 .release
= disk_release
,
512 * aggregate disk stat collector. Uses the same stats that the sysfs
513 * entries do, above, but makes them available through one seq_file.
515 * The output looks suspiciously like /proc/partitions with a bunch of
519 static void *diskstats_start(struct seq_file
*part
, loff_t
*pos
)
524 mutex_lock(&block_class_lock
);
525 list_for_each_entry(dev
, &block_class
.devices
, node
) {
526 if (dev
->type
!= &disk_type
)
529 return dev_to_disk(dev
);
534 static void *diskstats_next(struct seq_file
*part
, void *v
, loff_t
*pos
)
536 struct gendisk
*gp
= v
;
540 list_for_each_entry(dev
, &gp
->dev
.node
, node
) {
541 if (&dev
->node
== &block_class
.devices
)
543 if (dev
->type
== &disk_type
)
544 return dev_to_disk(dev
);
549 static void diskstats_stop(struct seq_file
*part
, void *v
)
551 mutex_unlock(&block_class_lock
);
554 static int diskstats_show(struct seq_file
*s
, void *v
)
556 struct gendisk
*gp
= v
;
557 char buf
[BDEVNAME_SIZE
];
561 if (&gp->dev.kobj.entry == block_class.devices.next)
562 seq_puts(s, "major minor name"
563 " rio rmerge rsect ruse wio wmerge "
564 "wsect wuse running use aveq"
569 disk_round_stats(gp
);
571 seq_printf(s
, "%4d %4d %s %lu %lu %llu %u %lu %lu %llu %u %u %u %u\n",
572 gp
->major
, n
+ gp
->first_minor
, disk_name(gp
, n
, buf
),
573 disk_stat_read(gp
, ios
[0]), disk_stat_read(gp
, merges
[0]),
574 (unsigned long long)disk_stat_read(gp
, sectors
[0]),
575 jiffies_to_msecs(disk_stat_read(gp
, ticks
[0])),
576 disk_stat_read(gp
, ios
[1]), disk_stat_read(gp
, merges
[1]),
577 (unsigned long long)disk_stat_read(gp
, sectors
[1]),
578 jiffies_to_msecs(disk_stat_read(gp
, ticks
[1])),
580 jiffies_to_msecs(disk_stat_read(gp
, io_ticks
)),
581 jiffies_to_msecs(disk_stat_read(gp
, time_in_queue
)));
583 /* now show all non-0 size partitions of it */
584 for (n
= 0; n
< gp
->minors
- 1; n
++) {
585 struct hd_struct
*hd
= gp
->part
[n
];
587 if (hd
&& hd
->nr_sects
)
588 seq_printf(s
, "%4d %4d %s %u %u %u %u\n",
589 gp
->major
, n
+ gp
->first_minor
+ 1,
590 disk_name(gp
, n
+ 1, buf
),
591 hd
->ios
[0], hd
->sectors
[0],
592 hd
->ios
[1], hd
->sectors
[1]);
598 const struct seq_operations diskstats_op
= {
599 .start
= diskstats_start
,
600 .next
= diskstats_next
,
601 .stop
= diskstats_stop
,
602 .show
= diskstats_show
605 static void media_change_notify_thread(struct work_struct
*work
)
607 struct gendisk
*gd
= container_of(work
, struct gendisk
, async_notify
);
608 char event
[] = "MEDIA_CHANGE=1";
609 char *envp
[] = { event
, NULL
};
612 * set enviroment vars to indicate which event this is for
613 * so that user space will know to go check the media status.
615 kobject_uevent_env(&gd
->dev
.kobj
, KOBJ_CHANGE
, envp
);
616 put_device(gd
->driverfs_dev
);
619 void genhd_media_change_notify(struct gendisk
*disk
)
621 get_device(disk
->driverfs_dev
);
622 schedule_work(&disk
->async_notify
);
624 EXPORT_SYMBOL_GPL(genhd_media_change_notify
);
626 dev_t
blk_lookup_devt(const char *name
)
629 dev_t devt
= MKDEV(0, 0);
631 mutex_lock(&block_class_lock
);
632 list_for_each_entry(dev
, &block_class
.devices
, node
) {
633 if (strcmp(dev
->bus_id
, name
) == 0) {
638 mutex_unlock(&block_class_lock
);
643 EXPORT_SYMBOL(blk_lookup_devt
);
645 struct gendisk
*alloc_disk(int minors
)
647 return alloc_disk_node(minors
, -1);
650 struct gendisk
*alloc_disk_node(int minors
, int node_id
)
652 struct gendisk
*disk
;
654 disk
= kmalloc_node(sizeof(struct gendisk
),
655 GFP_KERNEL
| __GFP_ZERO
, node_id
);
657 if (!init_disk_stats(disk
)) {
662 int size
= (minors
- 1) * sizeof(struct hd_struct
*);
663 disk
->part
= kmalloc_node(size
,
664 GFP_KERNEL
| __GFP_ZERO
, node_id
);
666 free_disk_stats(disk
);
671 disk
->minors
= minors
;
672 rand_initialize_disk(disk
);
673 disk
->dev
.class = &block_class
;
674 disk
->dev
.type
= &disk_type
;
675 device_initialize(&disk
->dev
);
676 INIT_WORK(&disk
->async_notify
,
677 media_change_notify_thread
);
682 EXPORT_SYMBOL(alloc_disk
);
683 EXPORT_SYMBOL(alloc_disk_node
);
685 struct kobject
*get_disk(struct gendisk
*disk
)
687 struct module
*owner
;
688 struct kobject
*kobj
;
692 owner
= disk
->fops
->owner
;
693 if (owner
&& !try_module_get(owner
))
695 kobj
= kobject_get(&disk
->dev
.kobj
);
704 EXPORT_SYMBOL(get_disk
);
706 void put_disk(struct gendisk
*disk
)
709 kobject_put(&disk
->dev
.kobj
);
712 EXPORT_SYMBOL(put_disk
);
714 void set_device_ro(struct block_device
*bdev
, int flag
)
716 if (bdev
->bd_contains
!= bdev
)
717 bdev
->bd_part
->policy
= flag
;
719 bdev
->bd_disk
->policy
= flag
;
722 EXPORT_SYMBOL(set_device_ro
);
724 void set_disk_ro(struct gendisk
*disk
, int flag
)
728 for (i
= 0; i
< disk
->minors
- 1; i
++)
729 if (disk
->part
[i
]) disk
->part
[i
]->policy
= flag
;
732 EXPORT_SYMBOL(set_disk_ro
);
734 int bdev_read_only(struct block_device
*bdev
)
738 else if (bdev
->bd_contains
!= bdev
)
739 return bdev
->bd_part
->policy
;
741 return bdev
->bd_disk
->policy
;
744 EXPORT_SYMBOL(bdev_read_only
);
746 int invalidate_partition(struct gendisk
*disk
, int index
)
749 struct block_device
*bdev
= bdget_disk(disk
, index
);
752 res
= __invalidate_device(bdev
);
758 EXPORT_SYMBOL(invalidate_partition
);