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/backing-dev.h>
12 #include <linux/init.h>
13 #include <linux/spinlock.h>
14 #include <linux/proc_fs.h>
15 #include <linux/seq_file.h>
16 #include <linux/slab.h>
17 #include <linux/kmod.h>
18 #include <linux/kobj_map.h>
19 #include <linux/mutex.h>
20 #include <linux/idr.h>
21 #include <linux/log2.h>
22 #include <linux/pm_runtime.h>
23 #include <linux/badblocks.h>
27 static DEFINE_MUTEX(block_class_lock
);
28 struct kobject
*block_depr
;
30 /* for extended dynamic devt allocation, currently only one major is used */
31 #define NR_EXT_DEVT (1 << MINORBITS)
33 /* For extended devt allocation. ext_devt_lock prevents look up
34 * results from going away underneath its user.
36 static DEFINE_SPINLOCK(ext_devt_lock
);
37 static DEFINE_IDR(ext_devt_idr
);
39 static const struct device_type disk_type
;
41 static void disk_check_events(struct disk_events
*ev
,
42 unsigned int *clearing_ptr
);
43 static void disk_alloc_events(struct gendisk
*disk
);
44 static void disk_add_events(struct gendisk
*disk
);
45 static void disk_del_events(struct gendisk
*disk
);
46 static void disk_release_events(struct gendisk
*disk
);
48 void part_inc_in_flight(struct request_queue
*q
, struct hd_struct
*part
, int rw
)
53 part_stat_local_inc(part
, in_flight
[rw
]);
55 part_stat_local_inc(&part_to_disk(part
)->part0
, in_flight
[rw
]);
58 void part_dec_in_flight(struct request_queue
*q
, struct hd_struct
*part
, int rw
)
63 part_stat_local_dec(part
, in_flight
[rw
]);
65 part_stat_local_dec(&part_to_disk(part
)->part0
, in_flight
[rw
]);
68 unsigned int part_in_flight(struct request_queue
*q
, struct hd_struct
*part
)
71 unsigned int inflight
;
74 return blk_mq_in_flight(q
, part
);
78 for_each_possible_cpu(cpu
) {
79 inflight
+= part_stat_local_read_cpu(part
, in_flight
[0], cpu
) +
80 part_stat_local_read_cpu(part
, in_flight
[1], cpu
);
82 if ((int)inflight
< 0)
88 void part_in_flight_rw(struct request_queue
*q
, struct hd_struct
*part
,
89 unsigned int inflight
[2])
94 blk_mq_in_flight_rw(q
, part
, inflight
);
100 for_each_possible_cpu(cpu
) {
101 inflight
[0] += part_stat_local_read_cpu(part
, in_flight
[0], cpu
);
102 inflight
[1] += part_stat_local_read_cpu(part
, in_flight
[1], cpu
);
104 if ((int)inflight
[0] < 0)
106 if ((int)inflight
[1] < 0)
110 struct hd_struct
*__disk_get_part(struct gendisk
*disk
, int partno
)
112 struct disk_part_tbl
*ptbl
= rcu_dereference(disk
->part_tbl
);
114 if (unlikely(partno
< 0 || partno
>= ptbl
->len
))
116 return rcu_dereference(ptbl
->part
[partno
]);
120 * disk_get_part - get partition
121 * @disk: disk to look partition from
122 * @partno: partition number
124 * Look for partition @partno from @disk. If found, increment
125 * reference count and return it.
131 * Pointer to the found partition on success, NULL if not found.
133 struct hd_struct
*disk_get_part(struct gendisk
*disk
, int partno
)
135 struct hd_struct
*part
;
138 part
= __disk_get_part(disk
, partno
);
140 get_device(part_to_dev(part
));
145 EXPORT_SYMBOL_GPL(disk_get_part
);
148 * disk_part_iter_init - initialize partition iterator
149 * @piter: iterator to initialize
150 * @disk: disk to iterate over
151 * @flags: DISK_PITER_* flags
153 * Initialize @piter so that it iterates over partitions of @disk.
158 void disk_part_iter_init(struct disk_part_iter
*piter
, struct gendisk
*disk
,
161 struct disk_part_tbl
*ptbl
;
164 ptbl
= rcu_dereference(disk
->part_tbl
);
169 if (flags
& DISK_PITER_REVERSE
)
170 piter
->idx
= ptbl
->len
- 1;
171 else if (flags
& (DISK_PITER_INCL_PART0
| DISK_PITER_INCL_EMPTY_PART0
))
176 piter
->flags
= flags
;
180 EXPORT_SYMBOL_GPL(disk_part_iter_init
);
183 * disk_part_iter_next - proceed iterator to the next partition and return it
184 * @piter: iterator of interest
186 * Proceed @piter to the next partition and return it.
191 struct hd_struct
*disk_part_iter_next(struct disk_part_iter
*piter
)
193 struct disk_part_tbl
*ptbl
;
196 /* put the last partition */
197 disk_put_part(piter
->part
);
202 ptbl
= rcu_dereference(piter
->disk
->part_tbl
);
204 /* determine iteration parameters */
205 if (piter
->flags
& DISK_PITER_REVERSE
) {
207 if (piter
->flags
& (DISK_PITER_INCL_PART0
|
208 DISK_PITER_INCL_EMPTY_PART0
))
217 /* iterate to the next partition */
218 for (; piter
->idx
!= end
; piter
->idx
+= inc
) {
219 struct hd_struct
*part
;
221 part
= rcu_dereference(ptbl
->part
[piter
->idx
]);
224 if (!part_nr_sects_read(part
) &&
225 !(piter
->flags
& DISK_PITER_INCL_EMPTY
) &&
226 !(piter
->flags
& DISK_PITER_INCL_EMPTY_PART0
&&
230 get_device(part_to_dev(part
));
240 EXPORT_SYMBOL_GPL(disk_part_iter_next
);
243 * disk_part_iter_exit - finish up partition iteration
244 * @piter: iter of interest
246 * Called when iteration is over. Cleans up @piter.
251 void disk_part_iter_exit(struct disk_part_iter
*piter
)
253 disk_put_part(piter
->part
);
256 EXPORT_SYMBOL_GPL(disk_part_iter_exit
);
258 static inline int sector_in_part(struct hd_struct
*part
, sector_t sector
)
260 return part
->start_sect
<= sector
&&
261 sector
< part
->start_sect
+ part_nr_sects_read(part
);
265 * disk_map_sector_rcu - map sector to partition
266 * @disk: gendisk of interest
267 * @sector: sector to map
269 * Find out which partition @sector maps to on @disk. This is
270 * primarily used for stats accounting.
273 * RCU read locked. The returned partition pointer is valid only
274 * while preemption is disabled.
277 * Found partition on success, part0 is returned if no partition matches
279 struct hd_struct
*disk_map_sector_rcu(struct gendisk
*disk
, sector_t sector
)
281 struct disk_part_tbl
*ptbl
;
282 struct hd_struct
*part
;
285 ptbl
= rcu_dereference(disk
->part_tbl
);
287 part
= rcu_dereference(ptbl
->last_lookup
);
288 if (part
&& sector_in_part(part
, sector
))
291 for (i
= 1; i
< ptbl
->len
; i
++) {
292 part
= rcu_dereference(ptbl
->part
[i
]);
294 if (part
&& sector_in_part(part
, sector
)) {
295 rcu_assign_pointer(ptbl
->last_lookup
, part
);
301 EXPORT_SYMBOL_GPL(disk_map_sector_rcu
);
304 * Can be deleted altogether. Later.
307 #define BLKDEV_MAJOR_HASH_SIZE 255
308 static struct blk_major_name
{
309 struct blk_major_name
*next
;
312 } *major_names
[BLKDEV_MAJOR_HASH_SIZE
];
314 /* index in the above - for now: assume no multimajor ranges */
315 static inline int major_to_index(unsigned major
)
317 return major
% BLKDEV_MAJOR_HASH_SIZE
;
320 #ifdef CONFIG_PROC_FS
321 void blkdev_show(struct seq_file
*seqf
, off_t offset
)
323 struct blk_major_name
*dp
;
325 mutex_lock(&block_class_lock
);
326 for (dp
= major_names
[major_to_index(offset
)]; dp
; dp
= dp
->next
)
327 if (dp
->major
== offset
)
328 seq_printf(seqf
, "%3d %s\n", dp
->major
, dp
->name
);
329 mutex_unlock(&block_class_lock
);
331 #endif /* CONFIG_PROC_FS */
334 * register_blkdev - register a new block device
336 * @major: the requested major device number [1..BLKDEV_MAJOR_MAX-1]. If
337 * @major = 0, try to allocate any unused major number.
338 * @name: the name of the new block device as a zero terminated string
340 * The @name must be unique within the system.
342 * The return value depends on the @major input parameter:
344 * - if a major device number was requested in range [1..BLKDEV_MAJOR_MAX-1]
345 * then the function returns zero on success, or a negative error code
346 * - if any unused major number was requested with @major = 0 parameter
347 * then the return value is the allocated major number in range
348 * [1..BLKDEV_MAJOR_MAX-1] or a negative error code otherwise
350 * See Documentation/admin-guide/devices.txt for the list of allocated
353 int register_blkdev(unsigned int major
, const char *name
)
355 struct blk_major_name
**n
, *p
;
358 mutex_lock(&block_class_lock
);
362 for (index
= ARRAY_SIZE(major_names
)-1; index
> 0; index
--) {
363 if (major_names
[index
] == NULL
)
368 printk("%s: failed to get major for %s\n",
377 if (major
>= BLKDEV_MAJOR_MAX
) {
378 pr_err("%s: major requested (%u) is greater than the maximum (%u) for %s\n",
379 __func__
, major
, BLKDEV_MAJOR_MAX
-1, name
);
385 p
= kmalloc(sizeof(struct blk_major_name
), GFP_KERNEL
);
392 strlcpy(p
->name
, name
, sizeof(p
->name
));
394 index
= major_to_index(major
);
396 for (n
= &major_names
[index
]; *n
; n
= &(*n
)->next
) {
397 if ((*n
)->major
== major
)
406 printk("register_blkdev: cannot get major %u for %s\n",
411 mutex_unlock(&block_class_lock
);
415 EXPORT_SYMBOL(register_blkdev
);
417 void unregister_blkdev(unsigned int major
, const char *name
)
419 struct blk_major_name
**n
;
420 struct blk_major_name
*p
= NULL
;
421 int index
= major_to_index(major
);
423 mutex_lock(&block_class_lock
);
424 for (n
= &major_names
[index
]; *n
; n
= &(*n
)->next
)
425 if ((*n
)->major
== major
)
427 if (!*n
|| strcmp((*n
)->name
, name
)) {
433 mutex_unlock(&block_class_lock
);
437 EXPORT_SYMBOL(unregister_blkdev
);
439 static struct kobj_map
*bdev_map
;
442 * blk_mangle_minor - scatter minor numbers apart
443 * @minor: minor number to mangle
445 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
446 * is enabled. Mangling twice gives the original value.
454 static int blk_mangle_minor(int minor
)
456 #ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
459 for (i
= 0; i
< MINORBITS
/ 2; i
++) {
460 int low
= minor
& (1 << i
);
461 int high
= minor
& (1 << (MINORBITS
- 1 - i
));
462 int distance
= MINORBITS
- 1 - 2 * i
;
464 minor
^= low
| high
; /* clear both bits */
465 low
<<= distance
; /* swap the positions */
467 minor
|= low
| high
; /* and set */
474 * blk_alloc_devt - allocate a dev_t for a partition
475 * @part: partition to allocate dev_t for
476 * @devt: out parameter for resulting dev_t
478 * Allocate a dev_t for block device.
481 * 0 on success, allocated dev_t is returned in *@devt. -errno on
487 int blk_alloc_devt(struct hd_struct
*part
, dev_t
*devt
)
489 struct gendisk
*disk
= part_to_disk(part
);
492 /* in consecutive minor range? */
493 if (part
->partno
< disk
->minors
) {
494 *devt
= MKDEV(disk
->major
, disk
->first_minor
+ part
->partno
);
498 /* allocate ext devt */
499 idr_preload(GFP_KERNEL
);
501 spin_lock_bh(&ext_devt_lock
);
502 idx
= idr_alloc(&ext_devt_idr
, part
, 0, NR_EXT_DEVT
, GFP_NOWAIT
);
503 spin_unlock_bh(&ext_devt_lock
);
507 return idx
== -ENOSPC
? -EBUSY
: idx
;
509 *devt
= MKDEV(BLOCK_EXT_MAJOR
, blk_mangle_minor(idx
));
514 * blk_free_devt - free a dev_t
515 * @devt: dev_t to free
517 * Free @devt which was allocated using blk_alloc_devt().
522 void blk_free_devt(dev_t devt
)
524 if (devt
== MKDEV(0, 0))
527 if (MAJOR(devt
) == BLOCK_EXT_MAJOR
) {
528 spin_lock_bh(&ext_devt_lock
);
529 idr_remove(&ext_devt_idr
, blk_mangle_minor(MINOR(devt
)));
530 spin_unlock_bh(&ext_devt_lock
);
534 static char *bdevt_str(dev_t devt
, char *buf
)
536 if (MAJOR(devt
) <= 0xff && MINOR(devt
) <= 0xff) {
537 char tbuf
[BDEVT_SIZE
];
538 snprintf(tbuf
, BDEVT_SIZE
, "%02x%02x", MAJOR(devt
), MINOR(devt
));
539 snprintf(buf
, BDEVT_SIZE
, "%-9s", tbuf
);
541 snprintf(buf
, BDEVT_SIZE
, "%03x:%05x", MAJOR(devt
), MINOR(devt
));
547 * Register device numbers dev..(dev+range-1)
548 * range must be nonzero
549 * The hash chain is sorted on range, so that subranges can override.
551 void blk_register_region(dev_t devt
, unsigned long range
, struct module
*module
,
552 struct kobject
*(*probe
)(dev_t
, int *, void *),
553 int (*lock
)(dev_t
, void *), void *data
)
555 kobj_map(bdev_map
, devt
, range
, module
, probe
, lock
, data
);
558 EXPORT_SYMBOL(blk_register_region
);
560 void blk_unregister_region(dev_t devt
, unsigned long range
)
562 kobj_unmap(bdev_map
, devt
, range
);
565 EXPORT_SYMBOL(blk_unregister_region
);
567 static struct kobject
*exact_match(dev_t devt
, int *partno
, void *data
)
569 struct gendisk
*p
= data
;
571 return &disk_to_dev(p
)->kobj
;
574 static int exact_lock(dev_t devt
, void *data
)
576 struct gendisk
*p
= data
;
578 if (!get_disk_and_module(p
))
583 static void register_disk(struct device
*parent
, struct gendisk
*disk
,
584 const struct attribute_group
**groups
)
586 struct device
*ddev
= disk_to_dev(disk
);
587 struct block_device
*bdev
;
588 struct disk_part_iter piter
;
589 struct hd_struct
*part
;
592 ddev
->parent
= parent
;
594 dev_set_name(ddev
, "%s", disk
->disk_name
);
596 /* delay uevents, until we scanned partition table */
597 dev_set_uevent_suppress(ddev
, 1);
600 WARN_ON(ddev
->groups
);
601 ddev
->groups
= groups
;
603 if (device_add(ddev
))
605 if (!sysfs_deprecated
) {
606 err
= sysfs_create_link(block_depr
, &ddev
->kobj
,
607 kobject_name(&ddev
->kobj
));
615 * avoid probable deadlock caused by allocating memory with
616 * GFP_KERNEL in runtime_resume callback of its all ancestor
619 pm_runtime_set_memalloc_noio(ddev
, true);
621 disk
->part0
.holder_dir
= kobject_create_and_add("holders", &ddev
->kobj
);
622 disk
->slave_dir
= kobject_create_and_add("slaves", &ddev
->kobj
);
624 if (disk
->flags
& GENHD_FL_HIDDEN
) {
625 dev_set_uevent_suppress(ddev
, 0);
629 /* No minors to use for partitions */
630 if (!disk_part_scan_enabled(disk
))
633 /* No such device (e.g., media were just removed) */
634 if (!get_capacity(disk
))
637 bdev
= bdget_disk(disk
, 0);
641 bdev
->bd_invalidated
= 1;
642 err
= blkdev_get(bdev
, FMODE_READ
, NULL
);
645 blkdev_put(bdev
, FMODE_READ
);
648 /* announce disk after possible partitions are created */
649 dev_set_uevent_suppress(ddev
, 0);
650 kobject_uevent(&ddev
->kobj
, KOBJ_ADD
);
652 /* announce possible partitions */
653 disk_part_iter_init(&piter
, disk
, 0);
654 while ((part
= disk_part_iter_next(&piter
)))
655 kobject_uevent(&part_to_dev(part
)->kobj
, KOBJ_ADD
);
656 disk_part_iter_exit(&piter
);
658 if (disk
->queue
->backing_dev_info
->dev
) {
659 err
= sysfs_create_link(&ddev
->kobj
,
660 &disk
->queue
->backing_dev_info
->dev
->kobj
,
667 * __device_add_disk - add disk information to kernel list
668 * @parent: parent device for the disk
669 * @disk: per-device partitioning information
670 * @groups: Additional per-device sysfs groups
671 * @register_queue: register the queue if set to true
673 * This function registers the partitioning information in @disk
676 * FIXME: error handling
678 static void __device_add_disk(struct device
*parent
, struct gendisk
*disk
,
679 const struct attribute_group
**groups
,
685 /* minors == 0 indicates to use ext devt from part0 and should
686 * be accompanied with EXT_DEVT flag. Make sure all
687 * parameters make sense.
689 WARN_ON(disk
->minors
&& !(disk
->major
|| disk
->first_minor
));
690 WARN_ON(!disk
->minors
&&
691 !(disk
->flags
& (GENHD_FL_EXT_DEVT
| GENHD_FL_HIDDEN
)));
693 disk
->flags
|= GENHD_FL_UP
;
695 retval
= blk_alloc_devt(&disk
->part0
, &devt
);
700 disk
->major
= MAJOR(devt
);
701 disk
->first_minor
= MINOR(devt
);
703 disk_alloc_events(disk
);
705 if (disk
->flags
& GENHD_FL_HIDDEN
) {
707 * Don't let hidden disks show up in /proc/partitions,
708 * and don't bother scanning for partitions either.
710 disk
->flags
|= GENHD_FL_SUPPRESS_PARTITION_INFO
;
711 disk
->flags
|= GENHD_FL_NO_PART_SCAN
;
715 /* Register BDI before referencing it from bdev */
716 disk_to_dev(disk
)->devt
= devt
;
717 ret
= bdi_register_owner(disk
->queue
->backing_dev_info
,
720 blk_register_region(disk_devt(disk
), disk
->minors
, NULL
,
721 exact_match
, exact_lock
, disk
);
723 register_disk(parent
, disk
, groups
);
725 blk_register_queue(disk
);
728 * Take an extra ref on queue which will be put on disk_release()
729 * so that it sticks around as long as @disk is there.
731 WARN_ON_ONCE(!blk_get_queue(disk
->queue
));
733 disk_add_events(disk
);
734 blk_integrity_add(disk
);
737 void device_add_disk(struct device
*parent
, struct gendisk
*disk
,
738 const struct attribute_group
**groups
)
741 __device_add_disk(parent
, disk
, groups
, true);
743 EXPORT_SYMBOL(device_add_disk
);
745 void device_add_disk_no_queue_reg(struct device
*parent
, struct gendisk
*disk
)
747 __device_add_disk(parent
, disk
, NULL
, false);
749 EXPORT_SYMBOL(device_add_disk_no_queue_reg
);
751 void del_gendisk(struct gendisk
*disk
)
753 struct disk_part_iter piter
;
754 struct hd_struct
*part
;
756 blk_integrity_del(disk
);
757 disk_del_events(disk
);
760 * Block lookups of the disk until all bdevs are unhashed and the
761 * disk is marked as dead (GENHD_FL_UP cleared).
763 down_write(&disk
->lookup_sem
);
764 /* invalidate stuff */
765 disk_part_iter_init(&piter
, disk
,
766 DISK_PITER_INCL_EMPTY
| DISK_PITER_REVERSE
);
767 while ((part
= disk_part_iter_next(&piter
))) {
768 invalidate_partition(disk
, part
->partno
);
769 bdev_unhash_inode(part_devt(part
));
770 delete_partition(disk
, part
->partno
);
772 disk_part_iter_exit(&piter
);
774 invalidate_partition(disk
, 0);
775 bdev_unhash_inode(disk_devt(disk
));
776 set_capacity(disk
, 0);
777 disk
->flags
&= ~GENHD_FL_UP
;
778 up_write(&disk
->lookup_sem
);
780 if (!(disk
->flags
& GENHD_FL_HIDDEN
))
781 sysfs_remove_link(&disk_to_dev(disk
)->kobj
, "bdi");
784 * Unregister bdi before releasing device numbers (as they can
785 * get reused and we'd get clashes in sysfs).
787 if (!(disk
->flags
& GENHD_FL_HIDDEN
))
788 bdi_unregister(disk
->queue
->backing_dev_info
);
789 blk_unregister_queue(disk
);
794 if (!(disk
->flags
& GENHD_FL_HIDDEN
))
795 blk_unregister_region(disk_devt(disk
), disk
->minors
);
797 kobject_put(disk
->part0
.holder_dir
);
798 kobject_put(disk
->slave_dir
);
800 part_stat_set_all(&disk
->part0
, 0);
801 disk
->part0
.stamp
= 0;
802 if (!sysfs_deprecated
)
803 sysfs_remove_link(block_depr
, dev_name(disk_to_dev(disk
)));
804 pm_runtime_set_memalloc_noio(disk_to_dev(disk
), false);
805 device_del(disk_to_dev(disk
));
807 EXPORT_SYMBOL(del_gendisk
);
809 /* sysfs access to bad-blocks list. */
810 static ssize_t
disk_badblocks_show(struct device
*dev
,
811 struct device_attribute
*attr
,
814 struct gendisk
*disk
= dev_to_disk(dev
);
817 return sprintf(page
, "\n");
819 return badblocks_show(disk
->bb
, page
, 0);
822 static ssize_t
disk_badblocks_store(struct device
*dev
,
823 struct device_attribute
*attr
,
824 const char *page
, size_t len
)
826 struct gendisk
*disk
= dev_to_disk(dev
);
831 return badblocks_store(disk
->bb
, page
, len
, 0);
835 * get_gendisk - get partitioning information for a given device
836 * @devt: device to get partitioning information for
837 * @partno: returned partition index
839 * This function gets the structure containing partitioning
840 * information for the given device @devt.
842 struct gendisk
*get_gendisk(dev_t devt
, int *partno
)
844 struct gendisk
*disk
= NULL
;
846 if (MAJOR(devt
) != BLOCK_EXT_MAJOR
) {
847 struct kobject
*kobj
;
849 kobj
= kobj_lookup(bdev_map
, devt
, partno
);
851 disk
= dev_to_disk(kobj_to_dev(kobj
));
853 struct hd_struct
*part
;
855 spin_lock_bh(&ext_devt_lock
);
856 part
= idr_find(&ext_devt_idr
, blk_mangle_minor(MINOR(devt
)));
857 if (part
&& get_disk_and_module(part_to_disk(part
))) {
858 *partno
= part
->partno
;
859 disk
= part_to_disk(part
);
861 spin_unlock_bh(&ext_devt_lock
);
868 * Synchronize with del_gendisk() to not return disk that is being
871 down_read(&disk
->lookup_sem
);
872 if (unlikely((disk
->flags
& GENHD_FL_HIDDEN
) ||
873 !(disk
->flags
& GENHD_FL_UP
))) {
874 up_read(&disk
->lookup_sem
);
875 put_disk_and_module(disk
);
878 up_read(&disk
->lookup_sem
);
882 EXPORT_SYMBOL(get_gendisk
);
885 * bdget_disk - do bdget() by gendisk and partition number
886 * @disk: gendisk of interest
887 * @partno: partition number
889 * Find partition @partno from @disk, do bdget() on it.
895 * Resulting block_device on success, NULL on failure.
897 struct block_device
*bdget_disk(struct gendisk
*disk
, int partno
)
899 struct hd_struct
*part
;
900 struct block_device
*bdev
= NULL
;
902 part
= disk_get_part(disk
, partno
);
904 bdev
= bdget(part_devt(part
));
909 EXPORT_SYMBOL(bdget_disk
);
912 * print a full list of all partitions - intended for places where the root
913 * filesystem can't be mounted and thus to give the victim some idea of what
916 void __init
printk_all_partitions(void)
918 struct class_dev_iter iter
;
921 class_dev_iter_init(&iter
, &block_class
, NULL
, &disk_type
);
922 while ((dev
= class_dev_iter_next(&iter
))) {
923 struct gendisk
*disk
= dev_to_disk(dev
);
924 struct disk_part_iter piter
;
925 struct hd_struct
*part
;
926 char name_buf
[BDEVNAME_SIZE
];
927 char devt_buf
[BDEVT_SIZE
];
930 * Don't show empty devices or things that have been
933 if (get_capacity(disk
) == 0 ||
934 (disk
->flags
& GENHD_FL_SUPPRESS_PARTITION_INFO
))
938 * Note, unlike /proc/partitions, I am showing the
939 * numbers in hex - the same format as the root=
942 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_PART0
);
943 while ((part
= disk_part_iter_next(&piter
))) {
944 bool is_part0
= part
== &disk
->part0
;
946 printk("%s%s %10llu %s %s", is_part0
? "" : " ",
947 bdevt_str(part_devt(part
), devt_buf
),
948 (unsigned long long)part_nr_sects_read(part
) >> 1
949 , disk_name(disk
, part
->partno
, name_buf
),
950 part
->info
? part
->info
->uuid
: "");
952 if (dev
->parent
&& dev
->parent
->driver
)
953 printk(" driver: %s\n",
954 dev
->parent
->driver
->name
);
956 printk(" (driver?)\n");
960 disk_part_iter_exit(&piter
);
962 class_dev_iter_exit(&iter
);
965 #ifdef CONFIG_PROC_FS
967 static void *disk_seqf_start(struct seq_file
*seqf
, loff_t
*pos
)
970 struct class_dev_iter
*iter
;
973 iter
= kmalloc(sizeof(*iter
), GFP_KERNEL
);
975 return ERR_PTR(-ENOMEM
);
977 seqf
->private = iter
;
978 class_dev_iter_init(iter
, &block_class
, NULL
, &disk_type
);
980 dev
= class_dev_iter_next(iter
);
985 return dev_to_disk(dev
);
988 static void *disk_seqf_next(struct seq_file
*seqf
, void *v
, loff_t
*pos
)
993 dev
= class_dev_iter_next(seqf
->private);
995 return dev_to_disk(dev
);
1000 static void disk_seqf_stop(struct seq_file
*seqf
, void *v
)
1002 struct class_dev_iter
*iter
= seqf
->private;
1004 /* stop is called even after start failed :-( */
1006 class_dev_iter_exit(iter
);
1008 seqf
->private = NULL
;
1012 static void *show_partition_start(struct seq_file
*seqf
, loff_t
*pos
)
1016 p
= disk_seqf_start(seqf
, pos
);
1017 if (!IS_ERR_OR_NULL(p
) && !*pos
)
1018 seq_puts(seqf
, "major minor #blocks name\n\n");
1022 static int show_partition(struct seq_file
*seqf
, void *v
)
1024 struct gendisk
*sgp
= v
;
1025 struct disk_part_iter piter
;
1026 struct hd_struct
*part
;
1027 char buf
[BDEVNAME_SIZE
];
1029 /* Don't show non-partitionable removeable devices or empty devices */
1030 if (!get_capacity(sgp
) || (!disk_max_parts(sgp
) &&
1031 (sgp
->flags
& GENHD_FL_REMOVABLE
)))
1033 if (sgp
->flags
& GENHD_FL_SUPPRESS_PARTITION_INFO
)
1036 /* show the full disk and all non-0 size partitions of it */
1037 disk_part_iter_init(&piter
, sgp
, DISK_PITER_INCL_PART0
);
1038 while ((part
= disk_part_iter_next(&piter
)))
1039 seq_printf(seqf
, "%4d %7d %10llu %s\n",
1040 MAJOR(part_devt(part
)), MINOR(part_devt(part
)),
1041 (unsigned long long)part_nr_sects_read(part
) >> 1,
1042 disk_name(sgp
, part
->partno
, buf
));
1043 disk_part_iter_exit(&piter
);
1048 static const struct seq_operations partitions_op
= {
1049 .start
= show_partition_start
,
1050 .next
= disk_seqf_next
,
1051 .stop
= disk_seqf_stop
,
1052 .show
= show_partition
1057 static struct kobject
*base_probe(dev_t devt
, int *partno
, void *data
)
1059 if (request_module("block-major-%d-%d", MAJOR(devt
), MINOR(devt
)) > 0)
1060 /* Make old-style 2.4 aliases work */
1061 request_module("block-major-%d", MAJOR(devt
));
1065 static int __init
genhd_device_init(void)
1069 block_class
.dev_kobj
= sysfs_dev_block_kobj
;
1070 error
= class_register(&block_class
);
1071 if (unlikely(error
))
1073 bdev_map
= kobj_map_init(base_probe
, &block_class_lock
);
1076 register_blkdev(BLOCK_EXT_MAJOR
, "blkext");
1078 /* create top-level block dir */
1079 if (!sysfs_deprecated
)
1080 block_depr
= kobject_create_and_add("block", NULL
);
1084 subsys_initcall(genhd_device_init
);
1086 static ssize_t
disk_range_show(struct device
*dev
,
1087 struct device_attribute
*attr
, char *buf
)
1089 struct gendisk
*disk
= dev_to_disk(dev
);
1091 return sprintf(buf
, "%d\n", disk
->minors
);
1094 static ssize_t
disk_ext_range_show(struct device
*dev
,
1095 struct device_attribute
*attr
, char *buf
)
1097 struct gendisk
*disk
= dev_to_disk(dev
);
1099 return sprintf(buf
, "%d\n", disk_max_parts(disk
));
1102 static ssize_t
disk_removable_show(struct device
*dev
,
1103 struct device_attribute
*attr
, char *buf
)
1105 struct gendisk
*disk
= dev_to_disk(dev
);
1107 return sprintf(buf
, "%d\n",
1108 (disk
->flags
& GENHD_FL_REMOVABLE
? 1 : 0));
1111 static ssize_t
disk_hidden_show(struct device
*dev
,
1112 struct device_attribute
*attr
, char *buf
)
1114 struct gendisk
*disk
= dev_to_disk(dev
);
1116 return sprintf(buf
, "%d\n",
1117 (disk
->flags
& GENHD_FL_HIDDEN
? 1 : 0));
1120 static ssize_t
disk_ro_show(struct device
*dev
,
1121 struct device_attribute
*attr
, char *buf
)
1123 struct gendisk
*disk
= dev_to_disk(dev
);
1125 return sprintf(buf
, "%d\n", get_disk_ro(disk
) ? 1 : 0);
1128 static ssize_t
disk_capability_show(struct device
*dev
,
1129 struct device_attribute
*attr
, char *buf
)
1131 struct gendisk
*disk
= dev_to_disk(dev
);
1133 return sprintf(buf
, "%x\n", disk
->flags
);
1136 static ssize_t
disk_alignment_offset_show(struct device
*dev
,
1137 struct device_attribute
*attr
,
1140 struct gendisk
*disk
= dev_to_disk(dev
);
1142 return sprintf(buf
, "%d\n", queue_alignment_offset(disk
->queue
));
1145 static ssize_t
disk_discard_alignment_show(struct device
*dev
,
1146 struct device_attribute
*attr
,
1149 struct gendisk
*disk
= dev_to_disk(dev
);
1151 return sprintf(buf
, "%d\n", queue_discard_alignment(disk
->queue
));
1154 static DEVICE_ATTR(range
, 0444, disk_range_show
, NULL
);
1155 static DEVICE_ATTR(ext_range
, 0444, disk_ext_range_show
, NULL
);
1156 static DEVICE_ATTR(removable
, 0444, disk_removable_show
, NULL
);
1157 static DEVICE_ATTR(hidden
, 0444, disk_hidden_show
, NULL
);
1158 static DEVICE_ATTR(ro
, 0444, disk_ro_show
, NULL
);
1159 static DEVICE_ATTR(size
, 0444, part_size_show
, NULL
);
1160 static DEVICE_ATTR(alignment_offset
, 0444, disk_alignment_offset_show
, NULL
);
1161 static DEVICE_ATTR(discard_alignment
, 0444, disk_discard_alignment_show
, NULL
);
1162 static DEVICE_ATTR(capability
, 0444, disk_capability_show
, NULL
);
1163 static DEVICE_ATTR(stat
, 0444, part_stat_show
, NULL
);
1164 static DEVICE_ATTR(inflight
, 0444, part_inflight_show
, NULL
);
1165 static DEVICE_ATTR(badblocks
, 0644, disk_badblocks_show
, disk_badblocks_store
);
1166 #ifdef CONFIG_FAIL_MAKE_REQUEST
1167 static struct device_attribute dev_attr_fail
=
1168 __ATTR(make
-it
-fail
, 0644, part_fail_show
, part_fail_store
);
1170 #ifdef CONFIG_FAIL_IO_TIMEOUT
1171 static struct device_attribute dev_attr_fail_timeout
=
1172 __ATTR(io
-timeout
-fail
, 0644, part_timeout_show
, part_timeout_store
);
1175 static struct attribute
*disk_attrs
[] = {
1176 &dev_attr_range
.attr
,
1177 &dev_attr_ext_range
.attr
,
1178 &dev_attr_removable
.attr
,
1179 &dev_attr_hidden
.attr
,
1181 &dev_attr_size
.attr
,
1182 &dev_attr_alignment_offset
.attr
,
1183 &dev_attr_discard_alignment
.attr
,
1184 &dev_attr_capability
.attr
,
1185 &dev_attr_stat
.attr
,
1186 &dev_attr_inflight
.attr
,
1187 &dev_attr_badblocks
.attr
,
1188 #ifdef CONFIG_FAIL_MAKE_REQUEST
1189 &dev_attr_fail
.attr
,
1191 #ifdef CONFIG_FAIL_IO_TIMEOUT
1192 &dev_attr_fail_timeout
.attr
,
1197 static umode_t
disk_visible(struct kobject
*kobj
, struct attribute
*a
, int n
)
1199 struct device
*dev
= container_of(kobj
, typeof(*dev
), kobj
);
1200 struct gendisk
*disk
= dev_to_disk(dev
);
1202 if (a
== &dev_attr_badblocks
.attr
&& !disk
->bb
)
1207 static struct attribute_group disk_attr_group
= {
1208 .attrs
= disk_attrs
,
1209 .is_visible
= disk_visible
,
1212 static const struct attribute_group
*disk_attr_groups
[] = {
1218 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1219 * @disk: disk to replace part_tbl for
1220 * @new_ptbl: new part_tbl to install
1222 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1223 * original ptbl is freed using RCU callback.
1226 * Matching bd_mutex locked or the caller is the only user of @disk.
1228 static void disk_replace_part_tbl(struct gendisk
*disk
,
1229 struct disk_part_tbl
*new_ptbl
)
1231 struct disk_part_tbl
*old_ptbl
=
1232 rcu_dereference_protected(disk
->part_tbl
, 1);
1234 rcu_assign_pointer(disk
->part_tbl
, new_ptbl
);
1237 rcu_assign_pointer(old_ptbl
->last_lookup
, NULL
);
1238 kfree_rcu(old_ptbl
, rcu_head
);
1243 * disk_expand_part_tbl - expand disk->part_tbl
1244 * @disk: disk to expand part_tbl for
1245 * @partno: expand such that this partno can fit in
1247 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1248 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1251 * Matching bd_mutex locked or the caller is the only user of @disk.
1255 * 0 on success, -errno on failure.
1257 int disk_expand_part_tbl(struct gendisk
*disk
, int partno
)
1259 struct disk_part_tbl
*old_ptbl
=
1260 rcu_dereference_protected(disk
->part_tbl
, 1);
1261 struct disk_part_tbl
*new_ptbl
;
1262 int len
= old_ptbl
? old_ptbl
->len
: 0;
1267 * check for int overflow, since we can get here from blkpg_ioctl()
1268 * with a user passed 'partno'.
1270 target
= partno
+ 1;
1274 /* disk_max_parts() is zero during initialization, ignore if so */
1275 if (disk_max_parts(disk
) && target
> disk_max_parts(disk
))
1281 size
= sizeof(*new_ptbl
) + target
* sizeof(new_ptbl
->part
[0]);
1282 new_ptbl
= kzalloc_node(size
, GFP_KERNEL
, disk
->node_id
);
1286 new_ptbl
->len
= target
;
1288 for (i
= 0; i
< len
; i
++)
1289 rcu_assign_pointer(new_ptbl
->part
[i
], old_ptbl
->part
[i
]);
1291 disk_replace_part_tbl(disk
, new_ptbl
);
1295 static void disk_release(struct device
*dev
)
1297 struct gendisk
*disk
= dev_to_disk(dev
);
1299 blk_free_devt(dev
->devt
);
1300 disk_release_events(disk
);
1301 kfree(disk
->random
);
1302 disk_replace_part_tbl(disk
, NULL
);
1303 hd_free_part(&disk
->part0
);
1305 blk_put_queue(disk
->queue
);
1308 struct class block_class
= {
1312 static char *block_devnode(struct device
*dev
, umode_t
*mode
,
1313 kuid_t
*uid
, kgid_t
*gid
)
1315 struct gendisk
*disk
= dev_to_disk(dev
);
1318 return disk
->devnode(disk
, mode
);
1322 static const struct device_type disk_type
= {
1324 .groups
= disk_attr_groups
,
1325 .release
= disk_release
,
1326 .devnode
= block_devnode
,
1329 #ifdef CONFIG_PROC_FS
1331 * aggregate disk stat collector. Uses the same stats that the sysfs
1332 * entries do, above, but makes them available through one seq_file.
1334 * The output looks suspiciously like /proc/partitions with a bunch of
1337 static int diskstats_show(struct seq_file
*seqf
, void *v
)
1339 struct gendisk
*gp
= v
;
1340 struct disk_part_iter piter
;
1341 struct hd_struct
*hd
;
1342 char buf
[BDEVNAME_SIZE
];
1343 unsigned int inflight
;
1346 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
1347 seq_puts(seqf, "major minor name"
1348 " rio rmerge rsect ruse wio wmerge "
1349 "wsect wuse running use aveq"
1353 disk_part_iter_init(&piter
, gp
, DISK_PITER_INCL_EMPTY_PART0
);
1354 while ((hd
= disk_part_iter_next(&piter
))) {
1355 inflight
= part_in_flight(gp
->queue
, hd
);
1356 seq_printf(seqf
, "%4d %7d %s "
1361 MAJOR(part_devt(hd
)), MINOR(part_devt(hd
)),
1362 disk_name(gp
, hd
->partno
, buf
),
1363 part_stat_read(hd
, ios
[STAT_READ
]),
1364 part_stat_read(hd
, merges
[STAT_READ
]),
1365 part_stat_read(hd
, sectors
[STAT_READ
]),
1366 (unsigned int)part_stat_read_msecs(hd
, STAT_READ
),
1367 part_stat_read(hd
, ios
[STAT_WRITE
]),
1368 part_stat_read(hd
, merges
[STAT_WRITE
]),
1369 part_stat_read(hd
, sectors
[STAT_WRITE
]),
1370 (unsigned int)part_stat_read_msecs(hd
, STAT_WRITE
),
1372 jiffies_to_msecs(part_stat_read(hd
, io_ticks
)),
1373 jiffies_to_msecs(part_stat_read(hd
, time_in_queue
)),
1374 part_stat_read(hd
, ios
[STAT_DISCARD
]),
1375 part_stat_read(hd
, merges
[STAT_DISCARD
]),
1376 part_stat_read(hd
, sectors
[STAT_DISCARD
]),
1377 (unsigned int)part_stat_read_msecs(hd
, STAT_DISCARD
)
1380 disk_part_iter_exit(&piter
);
1385 static const struct seq_operations diskstats_op
= {
1386 .start
= disk_seqf_start
,
1387 .next
= disk_seqf_next
,
1388 .stop
= disk_seqf_stop
,
1389 .show
= diskstats_show
1392 static int __init
proc_genhd_init(void)
1394 proc_create_seq("diskstats", 0, NULL
, &diskstats_op
);
1395 proc_create_seq("partitions", 0, NULL
, &partitions_op
);
1398 module_init(proc_genhd_init
);
1399 #endif /* CONFIG_PROC_FS */
1401 dev_t
blk_lookup_devt(const char *name
, int partno
)
1403 dev_t devt
= MKDEV(0, 0);
1404 struct class_dev_iter iter
;
1407 class_dev_iter_init(&iter
, &block_class
, NULL
, &disk_type
);
1408 while ((dev
= class_dev_iter_next(&iter
))) {
1409 struct gendisk
*disk
= dev_to_disk(dev
);
1410 struct hd_struct
*part
;
1412 if (strcmp(dev_name(dev
), name
))
1415 if (partno
< disk
->minors
) {
1416 /* We need to return the right devno, even
1417 * if the partition doesn't exist yet.
1419 devt
= MKDEV(MAJOR(dev
->devt
),
1420 MINOR(dev
->devt
) + partno
);
1423 part
= disk_get_part(disk
, partno
);
1425 devt
= part_devt(part
);
1426 disk_put_part(part
);
1429 disk_put_part(part
);
1431 class_dev_iter_exit(&iter
);
1434 EXPORT_SYMBOL(blk_lookup_devt
);
1436 struct gendisk
*__alloc_disk_node(int minors
, int node_id
)
1438 struct gendisk
*disk
;
1439 struct disk_part_tbl
*ptbl
;
1441 if (minors
> DISK_MAX_PARTS
) {
1443 "block: can't allocate more than %d partitions\n",
1445 minors
= DISK_MAX_PARTS
;
1448 disk
= kzalloc_node(sizeof(struct gendisk
), GFP_KERNEL
, node_id
);
1450 if (!init_part_stats(&disk
->part0
)) {
1454 init_rwsem(&disk
->lookup_sem
);
1455 disk
->node_id
= node_id
;
1456 if (disk_expand_part_tbl(disk
, 0)) {
1457 free_part_stats(&disk
->part0
);
1461 ptbl
= rcu_dereference_protected(disk
->part_tbl
, 1);
1462 rcu_assign_pointer(ptbl
->part
[0], &disk
->part0
);
1465 * set_capacity() and get_capacity() currently don't use
1466 * seqcounter to read/update the part0->nr_sects. Still init
1467 * the counter as we can read the sectors in IO submission
1468 * patch using seqence counters.
1470 * TODO: Ideally set_capacity() and get_capacity() should be
1471 * converted to make use of bd_mutex and sequence counters.
1473 seqcount_init(&disk
->part0
.nr_sects_seq
);
1474 if (hd_ref_init(&disk
->part0
)) {
1475 hd_free_part(&disk
->part0
);
1480 disk
->minors
= minors
;
1481 rand_initialize_disk(disk
);
1482 disk_to_dev(disk
)->class = &block_class
;
1483 disk_to_dev(disk
)->type
= &disk_type
;
1484 device_initialize(disk_to_dev(disk
));
1488 EXPORT_SYMBOL(__alloc_disk_node
);
1490 struct kobject
*get_disk_and_module(struct gendisk
*disk
)
1492 struct module
*owner
;
1493 struct kobject
*kobj
;
1497 owner
= disk
->fops
->owner
;
1498 if (owner
&& !try_module_get(owner
))
1500 kobj
= kobject_get_unless_zero(&disk_to_dev(disk
)->kobj
);
1508 EXPORT_SYMBOL(get_disk_and_module
);
1510 void put_disk(struct gendisk
*disk
)
1513 kobject_put(&disk_to_dev(disk
)->kobj
);
1515 EXPORT_SYMBOL(put_disk
);
1518 * This is a counterpart of get_disk_and_module() and thus also of
1521 void put_disk_and_module(struct gendisk
*disk
)
1524 struct module
*owner
= disk
->fops
->owner
;
1530 EXPORT_SYMBOL(put_disk_and_module
);
1532 static void set_disk_ro_uevent(struct gendisk
*gd
, int ro
)
1534 char event
[] = "DISK_RO=1";
1535 char *envp
[] = { event
, NULL
};
1539 kobject_uevent_env(&disk_to_dev(gd
)->kobj
, KOBJ_CHANGE
, envp
);
1542 void set_device_ro(struct block_device
*bdev
, int flag
)
1544 bdev
->bd_part
->policy
= flag
;
1547 EXPORT_SYMBOL(set_device_ro
);
1549 void set_disk_ro(struct gendisk
*disk
, int flag
)
1551 struct disk_part_iter piter
;
1552 struct hd_struct
*part
;
1554 if (disk
->part0
.policy
!= flag
) {
1555 set_disk_ro_uevent(disk
, flag
);
1556 disk
->part0
.policy
= flag
;
1559 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_EMPTY
);
1560 while ((part
= disk_part_iter_next(&piter
)))
1561 part
->policy
= flag
;
1562 disk_part_iter_exit(&piter
);
1565 EXPORT_SYMBOL(set_disk_ro
);
1567 int bdev_read_only(struct block_device
*bdev
)
1571 return bdev
->bd_part
->policy
;
1574 EXPORT_SYMBOL(bdev_read_only
);
1576 int invalidate_partition(struct gendisk
*disk
, int partno
)
1579 struct block_device
*bdev
= bdget_disk(disk
, partno
);
1582 res
= __invalidate_device(bdev
, true);
1588 EXPORT_SYMBOL(invalidate_partition
);
1591 * Disk events - monitor disk events like media change and eject request.
1593 struct disk_events
{
1594 struct list_head node
; /* all disk_event's */
1595 struct gendisk
*disk
; /* the associated disk */
1598 struct mutex block_mutex
; /* protects blocking */
1599 int block
; /* event blocking depth */
1600 unsigned int pending
; /* events already sent out */
1601 unsigned int clearing
; /* events being cleared */
1603 long poll_msecs
; /* interval, -1 for default */
1604 struct delayed_work dwork
;
1607 static const char *disk_events_strs
[] = {
1608 [ilog2(DISK_EVENT_MEDIA_CHANGE
)] = "media_change",
1609 [ilog2(DISK_EVENT_EJECT_REQUEST
)] = "eject_request",
1612 static char *disk_uevents
[] = {
1613 [ilog2(DISK_EVENT_MEDIA_CHANGE
)] = "DISK_MEDIA_CHANGE=1",
1614 [ilog2(DISK_EVENT_EJECT_REQUEST
)] = "DISK_EJECT_REQUEST=1",
1617 /* list of all disk_events */
1618 static DEFINE_MUTEX(disk_events_mutex
);
1619 static LIST_HEAD(disk_events
);
1621 /* disable in-kernel polling by default */
1622 static unsigned long disk_events_dfl_poll_msecs
;
1624 static unsigned long disk_events_poll_jiffies(struct gendisk
*disk
)
1626 struct disk_events
*ev
= disk
->ev
;
1627 long intv_msecs
= 0;
1630 * If device-specific poll interval is set, always use it. If
1631 * the default is being used, poll iff there are events which
1632 * can't be monitored asynchronously.
1634 if (ev
->poll_msecs
>= 0)
1635 intv_msecs
= ev
->poll_msecs
;
1636 else if (disk
->events
& ~disk
->async_events
)
1637 intv_msecs
= disk_events_dfl_poll_msecs
;
1639 return msecs_to_jiffies(intv_msecs
);
1643 * disk_block_events - block and flush disk event checking
1644 * @disk: disk to block events for
1646 * On return from this function, it is guaranteed that event checking
1647 * isn't in progress and won't happen until unblocked by
1648 * disk_unblock_events(). Events blocking is counted and the actual
1649 * unblocking happens after the matching number of unblocks are done.
1651 * Note that this intentionally does not block event checking from
1652 * disk_clear_events().
1657 void disk_block_events(struct gendisk
*disk
)
1659 struct disk_events
*ev
= disk
->ev
;
1660 unsigned long flags
;
1667 * Outer mutex ensures that the first blocker completes canceling
1668 * the event work before further blockers are allowed to finish.
1670 mutex_lock(&ev
->block_mutex
);
1672 spin_lock_irqsave(&ev
->lock
, flags
);
1673 cancel
= !ev
->block
++;
1674 spin_unlock_irqrestore(&ev
->lock
, flags
);
1677 cancel_delayed_work_sync(&disk
->ev
->dwork
);
1679 mutex_unlock(&ev
->block_mutex
);
1682 static void __disk_unblock_events(struct gendisk
*disk
, bool check_now
)
1684 struct disk_events
*ev
= disk
->ev
;
1686 unsigned long flags
;
1688 spin_lock_irqsave(&ev
->lock
, flags
);
1690 if (WARN_ON_ONCE(ev
->block
<= 0))
1696 intv
= disk_events_poll_jiffies(disk
);
1698 queue_delayed_work(system_freezable_power_efficient_wq
,
1701 queue_delayed_work(system_freezable_power_efficient_wq
,
1704 spin_unlock_irqrestore(&ev
->lock
, flags
);
1708 * disk_unblock_events - unblock disk event checking
1709 * @disk: disk to unblock events for
1711 * Undo disk_block_events(). When the block count reaches zero, it
1712 * starts events polling if configured.
1715 * Don't care. Safe to call from irq context.
1717 void disk_unblock_events(struct gendisk
*disk
)
1720 __disk_unblock_events(disk
, false);
1724 * disk_flush_events - schedule immediate event checking and flushing
1725 * @disk: disk to check and flush events for
1726 * @mask: events to flush
1728 * Schedule immediate event checking on @disk if not blocked. Events in
1729 * @mask are scheduled to be cleared from the driver. Note that this
1730 * doesn't clear the events from @disk->ev.
1733 * If @mask is non-zero must be called with bdev->bd_mutex held.
1735 void disk_flush_events(struct gendisk
*disk
, unsigned int mask
)
1737 struct disk_events
*ev
= disk
->ev
;
1742 spin_lock_irq(&ev
->lock
);
1743 ev
->clearing
|= mask
;
1745 mod_delayed_work(system_freezable_power_efficient_wq
,
1747 spin_unlock_irq(&ev
->lock
);
1751 * disk_clear_events - synchronously check, clear and return pending events
1752 * @disk: disk to fetch and clear events from
1753 * @mask: mask of events to be fetched and cleared
1755 * Disk events are synchronously checked and pending events in @mask
1756 * are cleared and returned. This ignores the block count.
1761 unsigned int disk_clear_events(struct gendisk
*disk
, unsigned int mask
)
1763 const struct block_device_operations
*bdops
= disk
->fops
;
1764 struct disk_events
*ev
= disk
->ev
;
1765 unsigned int pending
;
1766 unsigned int clearing
= mask
;
1769 /* for drivers still using the old ->media_changed method */
1770 if ((mask
& DISK_EVENT_MEDIA_CHANGE
) &&
1771 bdops
->media_changed
&& bdops
->media_changed(disk
))
1772 return DISK_EVENT_MEDIA_CHANGE
;
1776 disk_block_events(disk
);
1779 * store the union of mask and ev->clearing on the stack so that the
1780 * race with disk_flush_events does not cause ambiguity (ev->clearing
1781 * can still be modified even if events are blocked).
1783 spin_lock_irq(&ev
->lock
);
1784 clearing
|= ev
->clearing
;
1786 spin_unlock_irq(&ev
->lock
);
1788 disk_check_events(ev
, &clearing
);
1790 * if ev->clearing is not 0, the disk_flush_events got called in the
1791 * middle of this function, so we want to run the workfn without delay.
1793 __disk_unblock_events(disk
, ev
->clearing
? true : false);
1795 /* then, fetch and clear pending events */
1796 spin_lock_irq(&ev
->lock
);
1797 pending
= ev
->pending
& mask
;
1798 ev
->pending
&= ~mask
;
1799 spin_unlock_irq(&ev
->lock
);
1800 WARN_ON_ONCE(clearing
& mask
);
1806 * Separate this part out so that a different pointer for clearing_ptr can be
1807 * passed in for disk_clear_events.
1809 static void disk_events_workfn(struct work_struct
*work
)
1811 struct delayed_work
*dwork
= to_delayed_work(work
);
1812 struct disk_events
*ev
= container_of(dwork
, struct disk_events
, dwork
);
1814 disk_check_events(ev
, &ev
->clearing
);
1817 static void disk_check_events(struct disk_events
*ev
,
1818 unsigned int *clearing_ptr
)
1820 struct gendisk
*disk
= ev
->disk
;
1821 char *envp
[ARRAY_SIZE(disk_uevents
) + 1] = { };
1822 unsigned int clearing
= *clearing_ptr
;
1823 unsigned int events
;
1825 int nr_events
= 0, i
;
1828 events
= disk
->fops
->check_events(disk
, clearing
);
1830 /* accumulate pending events and schedule next poll if necessary */
1831 spin_lock_irq(&ev
->lock
);
1833 events
&= ~ev
->pending
;
1834 ev
->pending
|= events
;
1835 *clearing_ptr
&= ~clearing
;
1837 intv
= disk_events_poll_jiffies(disk
);
1838 if (!ev
->block
&& intv
)
1839 queue_delayed_work(system_freezable_power_efficient_wq
,
1842 spin_unlock_irq(&ev
->lock
);
1845 * Tell userland about new events. Only the events listed in
1846 * @disk->events are reported. Unlisted events are processed the
1847 * same internally but never get reported to userland.
1849 for (i
= 0; i
< ARRAY_SIZE(disk_uevents
); i
++)
1850 if (events
& disk
->events
& (1 << i
))
1851 envp
[nr_events
++] = disk_uevents
[i
];
1854 kobject_uevent_env(&disk_to_dev(disk
)->kobj
, KOBJ_CHANGE
, envp
);
1858 * A disk events enabled device has the following sysfs nodes under
1859 * its /sys/block/X/ directory.
1861 * events : list of all supported events
1862 * events_async : list of events which can be detected w/o polling
1863 * events_poll_msecs : polling interval, 0: disable, -1: system default
1865 static ssize_t
__disk_events_show(unsigned int events
, char *buf
)
1867 const char *delim
= "";
1871 for (i
= 0; i
< ARRAY_SIZE(disk_events_strs
); i
++)
1872 if (events
& (1 << i
)) {
1873 pos
+= sprintf(buf
+ pos
, "%s%s",
1874 delim
, disk_events_strs
[i
]);
1878 pos
+= sprintf(buf
+ pos
, "\n");
1882 static ssize_t
disk_events_show(struct device
*dev
,
1883 struct device_attribute
*attr
, char *buf
)
1885 struct gendisk
*disk
= dev_to_disk(dev
);
1887 return __disk_events_show(disk
->events
, buf
);
1890 static ssize_t
disk_events_async_show(struct device
*dev
,
1891 struct device_attribute
*attr
, char *buf
)
1893 struct gendisk
*disk
= dev_to_disk(dev
);
1895 return __disk_events_show(disk
->async_events
, buf
);
1898 static ssize_t
disk_events_poll_msecs_show(struct device
*dev
,
1899 struct device_attribute
*attr
,
1902 struct gendisk
*disk
= dev_to_disk(dev
);
1904 return sprintf(buf
, "%ld\n", disk
->ev
->poll_msecs
);
1907 static ssize_t
disk_events_poll_msecs_store(struct device
*dev
,
1908 struct device_attribute
*attr
,
1909 const char *buf
, size_t count
)
1911 struct gendisk
*disk
= dev_to_disk(dev
);
1914 if (!count
|| !sscanf(buf
, "%ld", &intv
))
1917 if (intv
< 0 && intv
!= -1)
1920 disk_block_events(disk
);
1921 disk
->ev
->poll_msecs
= intv
;
1922 __disk_unblock_events(disk
, true);
1927 static const DEVICE_ATTR(events
, 0444, disk_events_show
, NULL
);
1928 static const DEVICE_ATTR(events_async
, 0444, disk_events_async_show
, NULL
);
1929 static const DEVICE_ATTR(events_poll_msecs
, 0644,
1930 disk_events_poll_msecs_show
,
1931 disk_events_poll_msecs_store
);
1933 static const struct attribute
*disk_events_attrs
[] = {
1934 &dev_attr_events
.attr
,
1935 &dev_attr_events_async
.attr
,
1936 &dev_attr_events_poll_msecs
.attr
,
1941 * The default polling interval can be specified by the kernel
1942 * parameter block.events_dfl_poll_msecs which defaults to 0
1943 * (disable). This can also be modified runtime by writing to
1944 * /sys/module/block/events_dfl_poll_msecs.
1946 static int disk_events_set_dfl_poll_msecs(const char *val
,
1947 const struct kernel_param
*kp
)
1949 struct disk_events
*ev
;
1952 ret
= param_set_ulong(val
, kp
);
1956 mutex_lock(&disk_events_mutex
);
1958 list_for_each_entry(ev
, &disk_events
, node
)
1959 disk_flush_events(ev
->disk
, 0);
1961 mutex_unlock(&disk_events_mutex
);
1966 static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops
= {
1967 .set
= disk_events_set_dfl_poll_msecs
,
1968 .get
= param_get_ulong
,
1971 #undef MODULE_PARAM_PREFIX
1972 #define MODULE_PARAM_PREFIX "block."
1974 module_param_cb(events_dfl_poll_msecs
, &disk_events_dfl_poll_msecs_param_ops
,
1975 &disk_events_dfl_poll_msecs
, 0644);
1978 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
1980 static void disk_alloc_events(struct gendisk
*disk
)
1982 struct disk_events
*ev
;
1984 if (!disk
->fops
->check_events
)
1987 ev
= kzalloc(sizeof(*ev
), GFP_KERNEL
);
1989 pr_warn("%s: failed to initialize events\n", disk
->disk_name
);
1993 INIT_LIST_HEAD(&ev
->node
);
1995 spin_lock_init(&ev
->lock
);
1996 mutex_init(&ev
->block_mutex
);
1998 ev
->poll_msecs
= -1;
1999 INIT_DELAYED_WORK(&ev
->dwork
, disk_events_workfn
);
2004 static void disk_add_events(struct gendisk
*disk
)
2009 /* FIXME: error handling */
2010 if (sysfs_create_files(&disk_to_dev(disk
)->kobj
, disk_events_attrs
) < 0)
2011 pr_warn("%s: failed to create sysfs files for events\n",
2014 mutex_lock(&disk_events_mutex
);
2015 list_add_tail(&disk
->ev
->node
, &disk_events
);
2016 mutex_unlock(&disk_events_mutex
);
2019 * Block count is initialized to 1 and the following initial
2020 * unblock kicks it into action.
2022 __disk_unblock_events(disk
, true);
2025 static void disk_del_events(struct gendisk
*disk
)
2030 disk_block_events(disk
);
2032 mutex_lock(&disk_events_mutex
);
2033 list_del_init(&disk
->ev
->node
);
2034 mutex_unlock(&disk_events_mutex
);
2036 sysfs_remove_files(&disk_to_dev(disk
)->kobj
, disk_events_attrs
);
2039 static void disk_release_events(struct gendisk
*disk
)
2041 /* the block count should be 1 from disk_del_events() */
2042 WARN_ON_ONCE(disk
->ev
&& disk
->ev
->block
!= 1);