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 atomic_inc(&part
->in_flight
[rw
]);
55 atomic_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 atomic_dec(&part
->in_flight
[rw
]);
65 atomic_dec(&part_to_disk(part
)->part0
.in_flight
[rw
]);
68 void part_in_flight(struct request_queue
*q
, struct hd_struct
*part
,
69 unsigned int inflight
[2])
72 blk_mq_in_flight(q
, part
, inflight
);
76 inflight
[0] = atomic_read(&part
->in_flight
[0]) +
77 atomic_read(&part
->in_flight
[1]);
79 part
= &part_to_disk(part
)->part0
;
80 inflight
[1] = atomic_read(&part
->in_flight
[0]) +
81 atomic_read(&part
->in_flight
[1]);
85 struct hd_struct
*__disk_get_part(struct gendisk
*disk
, int partno
)
87 struct disk_part_tbl
*ptbl
= rcu_dereference(disk
->part_tbl
);
89 if (unlikely(partno
< 0 || partno
>= ptbl
->len
))
91 return rcu_dereference(ptbl
->part
[partno
]);
95 * disk_get_part - get partition
96 * @disk: disk to look partition from
97 * @partno: partition number
99 * Look for partition @partno from @disk. If found, increment
100 * reference count and return it.
106 * Pointer to the found partition on success, NULL if not found.
108 struct hd_struct
*disk_get_part(struct gendisk
*disk
, int partno
)
110 struct hd_struct
*part
;
113 part
= __disk_get_part(disk
, partno
);
115 get_device(part_to_dev(part
));
120 EXPORT_SYMBOL_GPL(disk_get_part
);
123 * disk_part_iter_init - initialize partition iterator
124 * @piter: iterator to initialize
125 * @disk: disk to iterate over
126 * @flags: DISK_PITER_* flags
128 * Initialize @piter so that it iterates over partitions of @disk.
133 void disk_part_iter_init(struct disk_part_iter
*piter
, struct gendisk
*disk
,
136 struct disk_part_tbl
*ptbl
;
139 ptbl
= rcu_dereference(disk
->part_tbl
);
144 if (flags
& DISK_PITER_REVERSE
)
145 piter
->idx
= ptbl
->len
- 1;
146 else if (flags
& (DISK_PITER_INCL_PART0
| DISK_PITER_INCL_EMPTY_PART0
))
151 piter
->flags
= flags
;
155 EXPORT_SYMBOL_GPL(disk_part_iter_init
);
158 * disk_part_iter_next - proceed iterator to the next partition and return it
159 * @piter: iterator of interest
161 * Proceed @piter to the next partition and return it.
166 struct hd_struct
*disk_part_iter_next(struct disk_part_iter
*piter
)
168 struct disk_part_tbl
*ptbl
;
171 /* put the last partition */
172 disk_put_part(piter
->part
);
177 ptbl
= rcu_dereference(piter
->disk
->part_tbl
);
179 /* determine iteration parameters */
180 if (piter
->flags
& DISK_PITER_REVERSE
) {
182 if (piter
->flags
& (DISK_PITER_INCL_PART0
|
183 DISK_PITER_INCL_EMPTY_PART0
))
192 /* iterate to the next partition */
193 for (; piter
->idx
!= end
; piter
->idx
+= inc
) {
194 struct hd_struct
*part
;
196 part
= rcu_dereference(ptbl
->part
[piter
->idx
]);
199 if (!part_nr_sects_read(part
) &&
200 !(piter
->flags
& DISK_PITER_INCL_EMPTY
) &&
201 !(piter
->flags
& DISK_PITER_INCL_EMPTY_PART0
&&
205 get_device(part_to_dev(part
));
215 EXPORT_SYMBOL_GPL(disk_part_iter_next
);
218 * disk_part_iter_exit - finish up partition iteration
219 * @piter: iter of interest
221 * Called when iteration is over. Cleans up @piter.
226 void disk_part_iter_exit(struct disk_part_iter
*piter
)
228 disk_put_part(piter
->part
);
231 EXPORT_SYMBOL_GPL(disk_part_iter_exit
);
233 static inline int sector_in_part(struct hd_struct
*part
, sector_t sector
)
235 return part
->start_sect
<= sector
&&
236 sector
< part
->start_sect
+ part_nr_sects_read(part
);
240 * disk_map_sector_rcu - map sector to partition
241 * @disk: gendisk of interest
242 * @sector: sector to map
244 * Find out which partition @sector maps to on @disk. This is
245 * primarily used for stats accounting.
248 * RCU read locked. The returned partition pointer is valid only
249 * while preemption is disabled.
252 * Found partition on success, part0 is returned if no partition matches
254 struct hd_struct
*disk_map_sector_rcu(struct gendisk
*disk
, sector_t sector
)
256 struct disk_part_tbl
*ptbl
;
257 struct hd_struct
*part
;
260 ptbl
= rcu_dereference(disk
->part_tbl
);
262 part
= rcu_dereference(ptbl
->last_lookup
);
263 if (part
&& sector_in_part(part
, sector
))
266 for (i
= 1; i
< ptbl
->len
; i
++) {
267 part
= rcu_dereference(ptbl
->part
[i
]);
269 if (part
&& sector_in_part(part
, sector
)) {
270 rcu_assign_pointer(ptbl
->last_lookup
, part
);
276 EXPORT_SYMBOL_GPL(disk_map_sector_rcu
);
279 * Can be deleted altogether. Later.
282 #define BLKDEV_MAJOR_HASH_SIZE 255
283 static struct blk_major_name
{
284 struct blk_major_name
*next
;
287 } *major_names
[BLKDEV_MAJOR_HASH_SIZE
];
289 /* index in the above - for now: assume no multimajor ranges */
290 static inline int major_to_index(unsigned major
)
292 return major
% BLKDEV_MAJOR_HASH_SIZE
;
295 #ifdef CONFIG_PROC_FS
296 void blkdev_show(struct seq_file
*seqf
, off_t offset
)
298 struct blk_major_name
*dp
;
300 mutex_lock(&block_class_lock
);
301 for (dp
= major_names
[major_to_index(offset
)]; dp
; dp
= dp
->next
)
302 if (dp
->major
== offset
)
303 seq_printf(seqf
, "%3d %s\n", dp
->major
, dp
->name
);
304 mutex_unlock(&block_class_lock
);
306 #endif /* CONFIG_PROC_FS */
309 * register_blkdev - register a new block device
311 * @major: the requested major device number [1..255]. If @major = 0, try to
312 * allocate any unused major number.
313 * @name: the name of the new block device as a zero terminated string
315 * The @name must be unique within the system.
317 * The return value depends on the @major input parameter:
319 * - if a major device number was requested in range [1..255] then the
320 * function returns zero on success, or a negative error code
321 * - if any unused major number was requested with @major = 0 parameter
322 * then the return value is the allocated major number in range
323 * [1..255] or a negative error code otherwise
325 int register_blkdev(unsigned int major
, const char *name
)
327 struct blk_major_name
**n
, *p
;
330 mutex_lock(&block_class_lock
);
334 for (index
= ARRAY_SIZE(major_names
)-1; index
> 0; index
--) {
335 if (major_names
[index
] == NULL
)
340 printk("register_blkdev: failed to get major for %s\n",
349 if (major
>= BLKDEV_MAJOR_MAX
) {
350 pr_err("register_blkdev: major requested (%d) is greater than the maximum (%d) for %s\n",
351 major
, BLKDEV_MAJOR_MAX
, name
);
357 p
= kmalloc(sizeof(struct blk_major_name
), GFP_KERNEL
);
364 strlcpy(p
->name
, name
, sizeof(p
->name
));
366 index
= major_to_index(major
);
368 for (n
= &major_names
[index
]; *n
; n
= &(*n
)->next
) {
369 if ((*n
)->major
== major
)
378 printk("register_blkdev: cannot get major %d for %s\n",
383 mutex_unlock(&block_class_lock
);
387 EXPORT_SYMBOL(register_blkdev
);
389 void unregister_blkdev(unsigned int major
, const char *name
)
391 struct blk_major_name
**n
;
392 struct blk_major_name
*p
= NULL
;
393 int index
= major_to_index(major
);
395 mutex_lock(&block_class_lock
);
396 for (n
= &major_names
[index
]; *n
; n
= &(*n
)->next
)
397 if ((*n
)->major
== major
)
399 if (!*n
|| strcmp((*n
)->name
, name
)) {
405 mutex_unlock(&block_class_lock
);
409 EXPORT_SYMBOL(unregister_blkdev
);
411 static struct kobj_map
*bdev_map
;
414 * blk_mangle_minor - scatter minor numbers apart
415 * @minor: minor number to mangle
417 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
418 * is enabled. Mangling twice gives the original value.
426 static int blk_mangle_minor(int minor
)
428 #ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
431 for (i
= 0; i
< MINORBITS
/ 2; i
++) {
432 int low
= minor
& (1 << i
);
433 int high
= minor
& (1 << (MINORBITS
- 1 - i
));
434 int distance
= MINORBITS
- 1 - 2 * i
;
436 minor
^= low
| high
; /* clear both bits */
437 low
<<= distance
; /* swap the positions */
439 minor
|= low
| high
; /* and set */
446 * blk_alloc_devt - allocate a dev_t for a partition
447 * @part: partition to allocate dev_t for
448 * @devt: out parameter for resulting dev_t
450 * Allocate a dev_t for block device.
453 * 0 on success, allocated dev_t is returned in *@devt. -errno on
459 int blk_alloc_devt(struct hd_struct
*part
, dev_t
*devt
)
461 struct gendisk
*disk
= part_to_disk(part
);
464 /* in consecutive minor range? */
465 if (part
->partno
< disk
->minors
) {
466 *devt
= MKDEV(disk
->major
, disk
->first_minor
+ part
->partno
);
470 /* allocate ext devt */
471 idr_preload(GFP_KERNEL
);
473 spin_lock_bh(&ext_devt_lock
);
474 idx
= idr_alloc(&ext_devt_idr
, part
, 0, NR_EXT_DEVT
, GFP_NOWAIT
);
475 spin_unlock_bh(&ext_devt_lock
);
479 return idx
== -ENOSPC
? -EBUSY
: idx
;
481 *devt
= MKDEV(BLOCK_EXT_MAJOR
, blk_mangle_minor(idx
));
486 * blk_free_devt - free a dev_t
487 * @devt: dev_t to free
489 * Free @devt which was allocated using blk_alloc_devt().
494 void blk_free_devt(dev_t devt
)
496 if (devt
== MKDEV(0, 0))
499 if (MAJOR(devt
) == BLOCK_EXT_MAJOR
) {
500 spin_lock_bh(&ext_devt_lock
);
501 idr_remove(&ext_devt_idr
, blk_mangle_minor(MINOR(devt
)));
502 spin_unlock_bh(&ext_devt_lock
);
506 static char *bdevt_str(dev_t devt
, char *buf
)
508 if (MAJOR(devt
) <= 0xff && MINOR(devt
) <= 0xff) {
509 char tbuf
[BDEVT_SIZE
];
510 snprintf(tbuf
, BDEVT_SIZE
, "%02x%02x", MAJOR(devt
), MINOR(devt
));
511 snprintf(buf
, BDEVT_SIZE
, "%-9s", tbuf
);
513 snprintf(buf
, BDEVT_SIZE
, "%03x:%05x", MAJOR(devt
), MINOR(devt
));
519 * Register device numbers dev..(dev+range-1)
520 * range must be nonzero
521 * The hash chain is sorted on range, so that subranges can override.
523 void blk_register_region(dev_t devt
, unsigned long range
, struct module
*module
,
524 struct kobject
*(*probe
)(dev_t
, int *, void *),
525 int (*lock
)(dev_t
, void *), void *data
)
527 kobj_map(bdev_map
, devt
, range
, module
, probe
, lock
, data
);
530 EXPORT_SYMBOL(blk_register_region
);
532 void blk_unregister_region(dev_t devt
, unsigned long range
)
534 kobj_unmap(bdev_map
, devt
, range
);
537 EXPORT_SYMBOL(blk_unregister_region
);
539 static struct kobject
*exact_match(dev_t devt
, int *partno
, void *data
)
541 struct gendisk
*p
= data
;
543 return &disk_to_dev(p
)->kobj
;
546 static int exact_lock(dev_t devt
, void *data
)
548 struct gendisk
*p
= data
;
555 static void register_disk(struct device
*parent
, struct gendisk
*disk
)
557 struct device
*ddev
= disk_to_dev(disk
);
558 struct block_device
*bdev
;
559 struct disk_part_iter piter
;
560 struct hd_struct
*part
;
563 ddev
->parent
= parent
;
565 dev_set_name(ddev
, "%s", disk
->disk_name
);
567 /* delay uevents, until we scanned partition table */
568 dev_set_uevent_suppress(ddev
, 1);
570 if (device_add(ddev
))
572 if (!sysfs_deprecated
) {
573 err
= sysfs_create_link(block_depr
, &ddev
->kobj
,
574 kobject_name(&ddev
->kobj
));
582 * avoid probable deadlock caused by allocating memory with
583 * GFP_KERNEL in runtime_resume callback of its all ancestor
586 pm_runtime_set_memalloc_noio(ddev
, true);
588 disk
->part0
.holder_dir
= kobject_create_and_add("holders", &ddev
->kobj
);
589 disk
->slave_dir
= kobject_create_and_add("slaves", &ddev
->kobj
);
591 if (disk
->flags
& GENHD_FL_HIDDEN
) {
592 dev_set_uevent_suppress(ddev
, 0);
596 /* No minors to use for partitions */
597 if (!disk_part_scan_enabled(disk
))
600 /* No such device (e.g., media were just removed) */
601 if (!get_capacity(disk
))
604 bdev
= bdget_disk(disk
, 0);
608 bdev
->bd_invalidated
= 1;
609 err
= blkdev_get(bdev
, FMODE_READ
, NULL
);
612 blkdev_put(bdev
, FMODE_READ
);
615 /* announce disk after possible partitions are created */
616 dev_set_uevent_suppress(ddev
, 0);
617 kobject_uevent(&ddev
->kobj
, KOBJ_ADD
);
619 /* announce possible partitions */
620 disk_part_iter_init(&piter
, disk
, 0);
621 while ((part
= disk_part_iter_next(&piter
)))
622 kobject_uevent(&part_to_dev(part
)->kobj
, KOBJ_ADD
);
623 disk_part_iter_exit(&piter
);
625 err
= sysfs_create_link(&ddev
->kobj
,
626 &disk
->queue
->backing_dev_info
->dev
->kobj
,
632 * __device_add_disk - add disk information to kernel list
633 * @parent: parent device for the disk
634 * @disk: per-device partitioning information
635 * @register_queue: register the queue if set to true
637 * This function registers the partitioning information in @disk
640 * FIXME: error handling
642 static void __device_add_disk(struct device
*parent
, struct gendisk
*disk
,
648 /* minors == 0 indicates to use ext devt from part0 and should
649 * be accompanied with EXT_DEVT flag. Make sure all
650 * parameters make sense.
652 WARN_ON(disk
->minors
&& !(disk
->major
|| disk
->first_minor
));
653 WARN_ON(!disk
->minors
&&
654 !(disk
->flags
& (GENHD_FL_EXT_DEVT
| GENHD_FL_HIDDEN
)));
656 disk
->flags
|= GENHD_FL_UP
;
658 retval
= blk_alloc_devt(&disk
->part0
, &devt
);
663 disk
->major
= MAJOR(devt
);
664 disk
->first_minor
= MINOR(devt
);
666 disk_alloc_events(disk
);
668 if (disk
->flags
& GENHD_FL_HIDDEN
) {
670 * Don't let hidden disks show up in /proc/partitions,
671 * and don't bother scanning for partitions either.
673 disk
->flags
|= GENHD_FL_SUPPRESS_PARTITION_INFO
;
674 disk
->flags
|= GENHD_FL_NO_PART_SCAN
;
678 /* Register BDI before referencing it from bdev */
679 disk_to_dev(disk
)->devt
= devt
;
680 ret
= bdi_register_owner(disk
->queue
->backing_dev_info
,
683 blk_register_region(disk_devt(disk
), disk
->minors
, NULL
,
684 exact_match
, exact_lock
, disk
);
686 register_disk(parent
, disk
);
688 blk_register_queue(disk
);
691 * Take an extra ref on queue which will be put on disk_release()
692 * so that it sticks around as long as @disk is there.
694 WARN_ON_ONCE(!blk_get_queue(disk
->queue
));
696 disk_add_events(disk
);
697 blk_integrity_add(disk
);
700 void device_add_disk(struct device
*parent
, struct gendisk
*disk
)
702 __device_add_disk(parent
, disk
, true);
704 EXPORT_SYMBOL(device_add_disk
);
706 void device_add_disk_no_queue_reg(struct device
*parent
, struct gendisk
*disk
)
708 __device_add_disk(parent
, disk
, false);
710 EXPORT_SYMBOL(device_add_disk_no_queue_reg
);
712 void del_gendisk(struct gendisk
*disk
)
714 struct disk_part_iter piter
;
715 struct hd_struct
*part
;
717 blk_integrity_del(disk
);
718 disk_del_events(disk
);
720 /* invalidate stuff */
721 disk_part_iter_init(&piter
, disk
,
722 DISK_PITER_INCL_EMPTY
| DISK_PITER_REVERSE
);
723 while ((part
= disk_part_iter_next(&piter
))) {
724 invalidate_partition(disk
, part
->partno
);
725 bdev_unhash_inode(part_devt(part
));
726 delete_partition(disk
, part
->partno
);
728 disk_part_iter_exit(&piter
);
730 invalidate_partition(disk
, 0);
731 bdev_unhash_inode(disk_devt(disk
));
732 set_capacity(disk
, 0);
733 disk
->flags
&= ~GENHD_FL_UP
;
735 if (!(disk
->flags
& GENHD_FL_HIDDEN
))
736 sysfs_remove_link(&disk_to_dev(disk
)->kobj
, "bdi");
739 * Unregister bdi before releasing device numbers (as they can
740 * get reused and we'd get clashes in sysfs).
742 if (!(disk
->flags
& GENHD_FL_HIDDEN
))
743 bdi_unregister(disk
->queue
->backing_dev_info
);
744 blk_unregister_queue(disk
);
749 if (!(disk
->flags
& GENHD_FL_HIDDEN
))
750 blk_unregister_region(disk_devt(disk
), disk
->minors
);
752 kobject_put(disk
->part0
.holder_dir
);
753 kobject_put(disk
->slave_dir
);
755 part_stat_set_all(&disk
->part0
, 0);
756 disk
->part0
.stamp
= 0;
757 if (!sysfs_deprecated
)
758 sysfs_remove_link(block_depr
, dev_name(disk_to_dev(disk
)));
759 pm_runtime_set_memalloc_noio(disk_to_dev(disk
), false);
760 device_del(disk_to_dev(disk
));
762 EXPORT_SYMBOL(del_gendisk
);
764 /* sysfs access to bad-blocks list. */
765 static ssize_t
disk_badblocks_show(struct device
*dev
,
766 struct device_attribute
*attr
,
769 struct gendisk
*disk
= dev_to_disk(dev
);
772 return sprintf(page
, "\n");
774 return badblocks_show(disk
->bb
, page
, 0);
777 static ssize_t
disk_badblocks_store(struct device
*dev
,
778 struct device_attribute
*attr
,
779 const char *page
, size_t len
)
781 struct gendisk
*disk
= dev_to_disk(dev
);
786 return badblocks_store(disk
->bb
, page
, len
, 0);
790 * get_gendisk - get partitioning information for a given device
791 * @devt: device to get partitioning information for
792 * @partno: returned partition index
794 * This function gets the structure containing partitioning
795 * information for the given device @devt.
797 struct gendisk
*get_gendisk(dev_t devt
, int *partno
)
799 struct gendisk
*disk
= NULL
;
801 if (MAJOR(devt
) != BLOCK_EXT_MAJOR
) {
802 struct kobject
*kobj
;
804 kobj
= kobj_lookup(bdev_map
, devt
, partno
);
806 disk
= dev_to_disk(kobj_to_dev(kobj
));
808 struct hd_struct
*part
;
810 spin_lock_bh(&ext_devt_lock
);
811 part
= idr_find(&ext_devt_idr
, blk_mangle_minor(MINOR(devt
)));
812 if (part
&& get_disk(part_to_disk(part
))) {
813 *partno
= part
->partno
;
814 disk
= part_to_disk(part
);
816 spin_unlock_bh(&ext_devt_lock
);
819 if (disk
&& unlikely(disk
->flags
& GENHD_FL_HIDDEN
)) {
825 EXPORT_SYMBOL(get_gendisk
);
828 * bdget_disk - do bdget() by gendisk and partition number
829 * @disk: gendisk of interest
830 * @partno: partition number
832 * Find partition @partno from @disk, do bdget() on it.
838 * Resulting block_device on success, NULL on failure.
840 struct block_device
*bdget_disk(struct gendisk
*disk
, int partno
)
842 struct hd_struct
*part
;
843 struct block_device
*bdev
= NULL
;
845 part
= disk_get_part(disk
, partno
);
847 bdev
= bdget(part_devt(part
));
852 EXPORT_SYMBOL(bdget_disk
);
855 * print a full list of all partitions - intended for places where the root
856 * filesystem can't be mounted and thus to give the victim some idea of what
859 void __init
printk_all_partitions(void)
861 struct class_dev_iter iter
;
864 class_dev_iter_init(&iter
, &block_class
, NULL
, &disk_type
);
865 while ((dev
= class_dev_iter_next(&iter
))) {
866 struct gendisk
*disk
= dev_to_disk(dev
);
867 struct disk_part_iter piter
;
868 struct hd_struct
*part
;
869 char name_buf
[BDEVNAME_SIZE
];
870 char devt_buf
[BDEVT_SIZE
];
873 * Don't show empty devices or things that have been
876 if (get_capacity(disk
) == 0 ||
877 (disk
->flags
& GENHD_FL_SUPPRESS_PARTITION_INFO
))
881 * Note, unlike /proc/partitions, I am showing the
882 * numbers in hex - the same format as the root=
885 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_PART0
);
886 while ((part
= disk_part_iter_next(&piter
))) {
887 bool is_part0
= part
== &disk
->part0
;
889 printk("%s%s %10llu %s %s", is_part0
? "" : " ",
890 bdevt_str(part_devt(part
), devt_buf
),
891 (unsigned long long)part_nr_sects_read(part
) >> 1
892 , disk_name(disk
, part
->partno
, name_buf
),
893 part
->info
? part
->info
->uuid
: "");
895 if (dev
->parent
&& dev
->parent
->driver
)
896 printk(" driver: %s\n",
897 dev
->parent
->driver
->name
);
899 printk(" (driver?)\n");
903 disk_part_iter_exit(&piter
);
905 class_dev_iter_exit(&iter
);
908 #ifdef CONFIG_PROC_FS
910 static void *disk_seqf_start(struct seq_file
*seqf
, loff_t
*pos
)
913 struct class_dev_iter
*iter
;
916 iter
= kmalloc(sizeof(*iter
), GFP_KERNEL
);
918 return ERR_PTR(-ENOMEM
);
920 seqf
->private = iter
;
921 class_dev_iter_init(iter
, &block_class
, NULL
, &disk_type
);
923 dev
= class_dev_iter_next(iter
);
928 return dev_to_disk(dev
);
931 static void *disk_seqf_next(struct seq_file
*seqf
, void *v
, loff_t
*pos
)
936 dev
= class_dev_iter_next(seqf
->private);
938 return dev_to_disk(dev
);
943 static void disk_seqf_stop(struct seq_file
*seqf
, void *v
)
945 struct class_dev_iter
*iter
= seqf
->private;
947 /* stop is called even after start failed :-( */
949 class_dev_iter_exit(iter
);
951 seqf
->private = NULL
;
955 static void *show_partition_start(struct seq_file
*seqf
, loff_t
*pos
)
959 p
= disk_seqf_start(seqf
, pos
);
960 if (!IS_ERR_OR_NULL(p
) && !*pos
)
961 seq_puts(seqf
, "major minor #blocks name\n\n");
965 static int show_partition(struct seq_file
*seqf
, void *v
)
967 struct gendisk
*sgp
= v
;
968 struct disk_part_iter piter
;
969 struct hd_struct
*part
;
970 char buf
[BDEVNAME_SIZE
];
972 /* Don't show non-partitionable removeable devices or empty devices */
973 if (!get_capacity(sgp
) || (!disk_max_parts(sgp
) &&
974 (sgp
->flags
& GENHD_FL_REMOVABLE
)))
976 if (sgp
->flags
& GENHD_FL_SUPPRESS_PARTITION_INFO
)
979 /* show the full disk and all non-0 size partitions of it */
980 disk_part_iter_init(&piter
, sgp
, DISK_PITER_INCL_PART0
);
981 while ((part
= disk_part_iter_next(&piter
)))
982 seq_printf(seqf
, "%4d %7d %10llu %s\n",
983 MAJOR(part_devt(part
)), MINOR(part_devt(part
)),
984 (unsigned long long)part_nr_sects_read(part
) >> 1,
985 disk_name(sgp
, part
->partno
, buf
));
986 disk_part_iter_exit(&piter
);
991 static const struct seq_operations partitions_op
= {
992 .start
= show_partition_start
,
993 .next
= disk_seqf_next
,
994 .stop
= disk_seqf_stop
,
995 .show
= show_partition
998 static int partitions_open(struct inode
*inode
, struct file
*file
)
1000 return seq_open(file
, &partitions_op
);
1003 static const struct file_operations proc_partitions_operations
= {
1004 .open
= partitions_open
,
1006 .llseek
= seq_lseek
,
1007 .release
= seq_release
,
1012 static struct kobject
*base_probe(dev_t devt
, int *partno
, void *data
)
1014 if (request_module("block-major-%d-%d", MAJOR(devt
), MINOR(devt
)) > 0)
1015 /* Make old-style 2.4 aliases work */
1016 request_module("block-major-%d", MAJOR(devt
));
1020 static int __init
genhd_device_init(void)
1024 block_class
.dev_kobj
= sysfs_dev_block_kobj
;
1025 error
= class_register(&block_class
);
1026 if (unlikely(error
))
1028 bdev_map
= kobj_map_init(base_probe
, &block_class_lock
);
1031 register_blkdev(BLOCK_EXT_MAJOR
, "blkext");
1033 /* create top-level block dir */
1034 if (!sysfs_deprecated
)
1035 block_depr
= kobject_create_and_add("block", NULL
);
1039 subsys_initcall(genhd_device_init
);
1041 static ssize_t
disk_range_show(struct device
*dev
,
1042 struct device_attribute
*attr
, char *buf
)
1044 struct gendisk
*disk
= dev_to_disk(dev
);
1046 return sprintf(buf
, "%d\n", disk
->minors
);
1049 static ssize_t
disk_ext_range_show(struct device
*dev
,
1050 struct device_attribute
*attr
, char *buf
)
1052 struct gendisk
*disk
= dev_to_disk(dev
);
1054 return sprintf(buf
, "%d\n", disk_max_parts(disk
));
1057 static ssize_t
disk_removable_show(struct device
*dev
,
1058 struct device_attribute
*attr
, char *buf
)
1060 struct gendisk
*disk
= dev_to_disk(dev
);
1062 return sprintf(buf
, "%d\n",
1063 (disk
->flags
& GENHD_FL_REMOVABLE
? 1 : 0));
1066 static ssize_t
disk_hidden_show(struct device
*dev
,
1067 struct device_attribute
*attr
, char *buf
)
1069 struct gendisk
*disk
= dev_to_disk(dev
);
1071 return sprintf(buf
, "%d\n",
1072 (disk
->flags
& GENHD_FL_HIDDEN
? 1 : 0));
1075 static ssize_t
disk_ro_show(struct device
*dev
,
1076 struct device_attribute
*attr
, char *buf
)
1078 struct gendisk
*disk
= dev_to_disk(dev
);
1080 return sprintf(buf
, "%d\n", get_disk_ro(disk
) ? 1 : 0);
1083 static ssize_t
disk_capability_show(struct device
*dev
,
1084 struct device_attribute
*attr
, char *buf
)
1086 struct gendisk
*disk
= dev_to_disk(dev
);
1088 return sprintf(buf
, "%x\n", disk
->flags
);
1091 static ssize_t
disk_alignment_offset_show(struct device
*dev
,
1092 struct device_attribute
*attr
,
1095 struct gendisk
*disk
= dev_to_disk(dev
);
1097 return sprintf(buf
, "%d\n", queue_alignment_offset(disk
->queue
));
1100 static ssize_t
disk_discard_alignment_show(struct device
*dev
,
1101 struct device_attribute
*attr
,
1104 struct gendisk
*disk
= dev_to_disk(dev
);
1106 return sprintf(buf
, "%d\n", queue_discard_alignment(disk
->queue
));
1109 static DEVICE_ATTR(range
, S_IRUGO
, disk_range_show
, NULL
);
1110 static DEVICE_ATTR(ext_range
, S_IRUGO
, disk_ext_range_show
, NULL
);
1111 static DEVICE_ATTR(removable
, S_IRUGO
, disk_removable_show
, NULL
);
1112 static DEVICE_ATTR(hidden
, S_IRUGO
, disk_hidden_show
, NULL
);
1113 static DEVICE_ATTR(ro
, S_IRUGO
, disk_ro_show
, NULL
);
1114 static DEVICE_ATTR(size
, S_IRUGO
, part_size_show
, NULL
);
1115 static DEVICE_ATTR(alignment_offset
, S_IRUGO
, disk_alignment_offset_show
, NULL
);
1116 static DEVICE_ATTR(discard_alignment
, S_IRUGO
, disk_discard_alignment_show
,
1118 static DEVICE_ATTR(capability
, S_IRUGO
, disk_capability_show
, NULL
);
1119 static DEVICE_ATTR(stat
, S_IRUGO
, part_stat_show
, NULL
);
1120 static DEVICE_ATTR(inflight
, S_IRUGO
, part_inflight_show
, NULL
);
1121 static DEVICE_ATTR(badblocks
, S_IRUGO
| S_IWUSR
, disk_badblocks_show
,
1122 disk_badblocks_store
);
1123 #ifdef CONFIG_FAIL_MAKE_REQUEST
1124 static struct device_attribute dev_attr_fail
=
1125 __ATTR(make
-it
-fail
, S_IRUGO
|S_IWUSR
, part_fail_show
, part_fail_store
);
1127 #ifdef CONFIG_FAIL_IO_TIMEOUT
1128 static struct device_attribute dev_attr_fail_timeout
=
1129 __ATTR(io
-timeout
-fail
, S_IRUGO
|S_IWUSR
, part_timeout_show
,
1130 part_timeout_store
);
1133 static struct attribute
*disk_attrs
[] = {
1134 &dev_attr_range
.attr
,
1135 &dev_attr_ext_range
.attr
,
1136 &dev_attr_removable
.attr
,
1137 &dev_attr_hidden
.attr
,
1139 &dev_attr_size
.attr
,
1140 &dev_attr_alignment_offset
.attr
,
1141 &dev_attr_discard_alignment
.attr
,
1142 &dev_attr_capability
.attr
,
1143 &dev_attr_stat
.attr
,
1144 &dev_attr_inflight
.attr
,
1145 &dev_attr_badblocks
.attr
,
1146 #ifdef CONFIG_FAIL_MAKE_REQUEST
1147 &dev_attr_fail
.attr
,
1149 #ifdef CONFIG_FAIL_IO_TIMEOUT
1150 &dev_attr_fail_timeout
.attr
,
1155 static umode_t
disk_visible(struct kobject
*kobj
, struct attribute
*a
, int n
)
1157 struct device
*dev
= container_of(kobj
, typeof(*dev
), kobj
);
1158 struct gendisk
*disk
= dev_to_disk(dev
);
1160 if (a
== &dev_attr_badblocks
.attr
&& !disk
->bb
)
1165 static struct attribute_group disk_attr_group
= {
1166 .attrs
= disk_attrs
,
1167 .is_visible
= disk_visible
,
1170 static const struct attribute_group
*disk_attr_groups
[] = {
1176 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
1177 * @disk: disk to replace part_tbl for
1178 * @new_ptbl: new part_tbl to install
1180 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1181 * original ptbl is freed using RCU callback.
1184 * Matching bd_mutex locked or the caller is the only user of @disk.
1186 static void disk_replace_part_tbl(struct gendisk
*disk
,
1187 struct disk_part_tbl
*new_ptbl
)
1189 struct disk_part_tbl
*old_ptbl
=
1190 rcu_dereference_protected(disk
->part_tbl
, 1);
1192 rcu_assign_pointer(disk
->part_tbl
, new_ptbl
);
1195 rcu_assign_pointer(old_ptbl
->last_lookup
, NULL
);
1196 kfree_rcu(old_ptbl
, rcu_head
);
1201 * disk_expand_part_tbl - expand disk->part_tbl
1202 * @disk: disk to expand part_tbl for
1203 * @partno: expand such that this partno can fit in
1205 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
1206 * uses RCU to allow unlocked dereferencing for stats and other stuff.
1209 * Matching bd_mutex locked or the caller is the only user of @disk.
1213 * 0 on success, -errno on failure.
1215 int disk_expand_part_tbl(struct gendisk
*disk
, int partno
)
1217 struct disk_part_tbl
*old_ptbl
=
1218 rcu_dereference_protected(disk
->part_tbl
, 1);
1219 struct disk_part_tbl
*new_ptbl
;
1220 int len
= old_ptbl
? old_ptbl
->len
: 0;
1225 * check for int overflow, since we can get here from blkpg_ioctl()
1226 * with a user passed 'partno'.
1228 target
= partno
+ 1;
1232 /* disk_max_parts() is zero during initialization, ignore if so */
1233 if (disk_max_parts(disk
) && target
> disk_max_parts(disk
))
1239 size
= sizeof(*new_ptbl
) + target
* sizeof(new_ptbl
->part
[0]);
1240 new_ptbl
= kzalloc_node(size
, GFP_KERNEL
, disk
->node_id
);
1244 new_ptbl
->len
= target
;
1246 for (i
= 0; i
< len
; i
++)
1247 rcu_assign_pointer(new_ptbl
->part
[i
], old_ptbl
->part
[i
]);
1249 disk_replace_part_tbl(disk
, new_ptbl
);
1253 static void disk_release(struct device
*dev
)
1255 struct gendisk
*disk
= dev_to_disk(dev
);
1257 blk_free_devt(dev
->devt
);
1258 disk_release_events(disk
);
1259 kfree(disk
->random
);
1260 disk_replace_part_tbl(disk
, NULL
);
1261 hd_free_part(&disk
->part0
);
1263 blk_put_queue(disk
->queue
);
1266 struct class block_class
= {
1270 static char *block_devnode(struct device
*dev
, umode_t
*mode
,
1271 kuid_t
*uid
, kgid_t
*gid
)
1273 struct gendisk
*disk
= dev_to_disk(dev
);
1276 return disk
->devnode(disk
, mode
);
1280 static const struct device_type disk_type
= {
1282 .groups
= disk_attr_groups
,
1283 .release
= disk_release
,
1284 .devnode
= block_devnode
,
1287 #ifdef CONFIG_PROC_FS
1289 * aggregate disk stat collector. Uses the same stats that the sysfs
1290 * entries do, above, but makes them available through one seq_file.
1292 * The output looks suspiciously like /proc/partitions with a bunch of
1295 static int diskstats_show(struct seq_file
*seqf
, void *v
)
1297 struct gendisk
*gp
= v
;
1298 struct disk_part_iter piter
;
1299 struct hd_struct
*hd
;
1300 char buf
[BDEVNAME_SIZE
];
1301 unsigned int inflight
[2];
1305 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
1306 seq_puts(seqf, "major minor name"
1307 " rio rmerge rsect ruse wio wmerge "
1308 "wsect wuse running use aveq"
1312 disk_part_iter_init(&piter
, gp
, DISK_PITER_INCL_EMPTY_PART0
);
1313 while ((hd
= disk_part_iter_next(&piter
))) {
1314 cpu
= part_stat_lock();
1315 part_round_stats(gp
->queue
, cpu
, hd
);
1317 part_in_flight(gp
->queue
, hd
, inflight
);
1318 seq_printf(seqf
, "%4d %7d %s %lu %lu %lu "
1319 "%u %lu %lu %lu %u %u %u %u\n",
1320 MAJOR(part_devt(hd
)), MINOR(part_devt(hd
)),
1321 disk_name(gp
, hd
->partno
, buf
),
1322 part_stat_read(hd
, ios
[READ
]),
1323 part_stat_read(hd
, merges
[READ
]),
1324 part_stat_read(hd
, sectors
[READ
]),
1325 jiffies_to_msecs(part_stat_read(hd
, ticks
[READ
])),
1326 part_stat_read(hd
, ios
[WRITE
]),
1327 part_stat_read(hd
, merges
[WRITE
]),
1328 part_stat_read(hd
, sectors
[WRITE
]),
1329 jiffies_to_msecs(part_stat_read(hd
, ticks
[WRITE
])),
1331 jiffies_to_msecs(part_stat_read(hd
, io_ticks
)),
1332 jiffies_to_msecs(part_stat_read(hd
, time_in_queue
))
1335 disk_part_iter_exit(&piter
);
1340 static const struct seq_operations diskstats_op
= {
1341 .start
= disk_seqf_start
,
1342 .next
= disk_seqf_next
,
1343 .stop
= disk_seqf_stop
,
1344 .show
= diskstats_show
1347 static int diskstats_open(struct inode
*inode
, struct file
*file
)
1349 return seq_open(file
, &diskstats_op
);
1352 static const struct file_operations proc_diskstats_operations
= {
1353 .open
= diskstats_open
,
1355 .llseek
= seq_lseek
,
1356 .release
= seq_release
,
1359 static int __init
proc_genhd_init(void)
1361 proc_create("diskstats", 0, NULL
, &proc_diskstats_operations
);
1362 proc_create("partitions", 0, NULL
, &proc_partitions_operations
);
1365 module_init(proc_genhd_init
);
1366 #endif /* CONFIG_PROC_FS */
1368 dev_t
blk_lookup_devt(const char *name
, int partno
)
1370 dev_t devt
= MKDEV(0, 0);
1371 struct class_dev_iter iter
;
1374 class_dev_iter_init(&iter
, &block_class
, NULL
, &disk_type
);
1375 while ((dev
= class_dev_iter_next(&iter
))) {
1376 struct gendisk
*disk
= dev_to_disk(dev
);
1377 struct hd_struct
*part
;
1379 if (strcmp(dev_name(dev
), name
))
1382 if (partno
< disk
->minors
) {
1383 /* We need to return the right devno, even
1384 * if the partition doesn't exist yet.
1386 devt
= MKDEV(MAJOR(dev
->devt
),
1387 MINOR(dev
->devt
) + partno
);
1390 part
= disk_get_part(disk
, partno
);
1392 devt
= part_devt(part
);
1393 disk_put_part(part
);
1396 disk_put_part(part
);
1398 class_dev_iter_exit(&iter
);
1401 EXPORT_SYMBOL(blk_lookup_devt
);
1403 struct gendisk
*__alloc_disk_node(int minors
, int node_id
)
1405 struct gendisk
*disk
;
1406 struct disk_part_tbl
*ptbl
;
1408 if (minors
> DISK_MAX_PARTS
) {
1410 "block: can't allocate more than %d partitions\n",
1412 minors
= DISK_MAX_PARTS
;
1415 disk
= kzalloc_node(sizeof(struct gendisk
), GFP_KERNEL
, node_id
);
1417 if (!init_part_stats(&disk
->part0
)) {
1421 disk
->node_id
= node_id
;
1422 if (disk_expand_part_tbl(disk
, 0)) {
1423 free_part_stats(&disk
->part0
);
1427 ptbl
= rcu_dereference_protected(disk
->part_tbl
, 1);
1428 rcu_assign_pointer(ptbl
->part
[0], &disk
->part0
);
1431 * set_capacity() and get_capacity() currently don't use
1432 * seqcounter to read/update the part0->nr_sects. Still init
1433 * the counter as we can read the sectors in IO submission
1434 * patch using seqence counters.
1436 * TODO: Ideally set_capacity() and get_capacity() should be
1437 * converted to make use of bd_mutex and sequence counters.
1439 seqcount_init(&disk
->part0
.nr_sects_seq
);
1440 if (hd_ref_init(&disk
->part0
)) {
1441 hd_free_part(&disk
->part0
);
1446 disk
->minors
= minors
;
1447 rand_initialize_disk(disk
);
1448 disk_to_dev(disk
)->class = &block_class
;
1449 disk_to_dev(disk
)->type
= &disk_type
;
1450 device_initialize(disk_to_dev(disk
));
1454 EXPORT_SYMBOL(__alloc_disk_node
);
1456 struct kobject
*get_disk(struct gendisk
*disk
)
1458 struct module
*owner
;
1459 struct kobject
*kobj
;
1463 owner
= disk
->fops
->owner
;
1464 if (owner
&& !try_module_get(owner
))
1466 kobj
= kobject_get_unless_zero(&disk_to_dev(disk
)->kobj
);
1475 EXPORT_SYMBOL(get_disk
);
1477 void put_disk(struct gendisk
*disk
)
1480 kobject_put(&disk_to_dev(disk
)->kobj
);
1483 EXPORT_SYMBOL(put_disk
);
1485 static void set_disk_ro_uevent(struct gendisk
*gd
, int ro
)
1487 char event
[] = "DISK_RO=1";
1488 char *envp
[] = { event
, NULL
};
1492 kobject_uevent_env(&disk_to_dev(gd
)->kobj
, KOBJ_CHANGE
, envp
);
1495 void set_device_ro(struct block_device
*bdev
, int flag
)
1497 bdev
->bd_part
->policy
= flag
;
1500 EXPORT_SYMBOL(set_device_ro
);
1502 void set_disk_ro(struct gendisk
*disk
, int flag
)
1504 struct disk_part_iter piter
;
1505 struct hd_struct
*part
;
1507 if (disk
->part0
.policy
!= flag
) {
1508 set_disk_ro_uevent(disk
, flag
);
1509 disk
->part0
.policy
= flag
;
1512 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_EMPTY
);
1513 while ((part
= disk_part_iter_next(&piter
)))
1514 part
->policy
= flag
;
1515 disk_part_iter_exit(&piter
);
1518 EXPORT_SYMBOL(set_disk_ro
);
1520 int bdev_read_only(struct block_device
*bdev
)
1524 return bdev
->bd_part
->policy
;
1527 EXPORT_SYMBOL(bdev_read_only
);
1529 int invalidate_partition(struct gendisk
*disk
, int partno
)
1532 struct block_device
*bdev
= bdget_disk(disk
, partno
);
1535 res
= __invalidate_device(bdev
, true);
1541 EXPORT_SYMBOL(invalidate_partition
);
1544 * Disk events - monitor disk events like media change and eject request.
1546 struct disk_events
{
1547 struct list_head node
; /* all disk_event's */
1548 struct gendisk
*disk
; /* the associated disk */
1551 struct mutex block_mutex
; /* protects blocking */
1552 int block
; /* event blocking depth */
1553 unsigned int pending
; /* events already sent out */
1554 unsigned int clearing
; /* events being cleared */
1556 long poll_msecs
; /* interval, -1 for default */
1557 struct delayed_work dwork
;
1560 static const char *disk_events_strs
[] = {
1561 [ilog2(DISK_EVENT_MEDIA_CHANGE
)] = "media_change",
1562 [ilog2(DISK_EVENT_EJECT_REQUEST
)] = "eject_request",
1565 static char *disk_uevents
[] = {
1566 [ilog2(DISK_EVENT_MEDIA_CHANGE
)] = "DISK_MEDIA_CHANGE=1",
1567 [ilog2(DISK_EVENT_EJECT_REQUEST
)] = "DISK_EJECT_REQUEST=1",
1570 /* list of all disk_events */
1571 static DEFINE_MUTEX(disk_events_mutex
);
1572 static LIST_HEAD(disk_events
);
1574 /* disable in-kernel polling by default */
1575 static unsigned long disk_events_dfl_poll_msecs
;
1577 static unsigned long disk_events_poll_jiffies(struct gendisk
*disk
)
1579 struct disk_events
*ev
= disk
->ev
;
1580 long intv_msecs
= 0;
1583 * If device-specific poll interval is set, always use it. If
1584 * the default is being used, poll iff there are events which
1585 * can't be monitored asynchronously.
1587 if (ev
->poll_msecs
>= 0)
1588 intv_msecs
= ev
->poll_msecs
;
1589 else if (disk
->events
& ~disk
->async_events
)
1590 intv_msecs
= disk_events_dfl_poll_msecs
;
1592 return msecs_to_jiffies(intv_msecs
);
1596 * disk_block_events - block and flush disk event checking
1597 * @disk: disk to block events for
1599 * On return from this function, it is guaranteed that event checking
1600 * isn't in progress and won't happen until unblocked by
1601 * disk_unblock_events(). Events blocking is counted and the actual
1602 * unblocking happens after the matching number of unblocks are done.
1604 * Note that this intentionally does not block event checking from
1605 * disk_clear_events().
1610 void disk_block_events(struct gendisk
*disk
)
1612 struct disk_events
*ev
= disk
->ev
;
1613 unsigned long flags
;
1620 * Outer mutex ensures that the first blocker completes canceling
1621 * the event work before further blockers are allowed to finish.
1623 mutex_lock(&ev
->block_mutex
);
1625 spin_lock_irqsave(&ev
->lock
, flags
);
1626 cancel
= !ev
->block
++;
1627 spin_unlock_irqrestore(&ev
->lock
, flags
);
1630 cancel_delayed_work_sync(&disk
->ev
->dwork
);
1632 mutex_unlock(&ev
->block_mutex
);
1635 static void __disk_unblock_events(struct gendisk
*disk
, bool check_now
)
1637 struct disk_events
*ev
= disk
->ev
;
1639 unsigned long flags
;
1641 spin_lock_irqsave(&ev
->lock
, flags
);
1643 if (WARN_ON_ONCE(ev
->block
<= 0))
1649 intv
= disk_events_poll_jiffies(disk
);
1651 queue_delayed_work(system_freezable_power_efficient_wq
,
1654 queue_delayed_work(system_freezable_power_efficient_wq
,
1657 spin_unlock_irqrestore(&ev
->lock
, flags
);
1661 * disk_unblock_events - unblock disk event checking
1662 * @disk: disk to unblock events for
1664 * Undo disk_block_events(). When the block count reaches zero, it
1665 * starts events polling if configured.
1668 * Don't care. Safe to call from irq context.
1670 void disk_unblock_events(struct gendisk
*disk
)
1673 __disk_unblock_events(disk
, false);
1677 * disk_flush_events - schedule immediate event checking and flushing
1678 * @disk: disk to check and flush events for
1679 * @mask: events to flush
1681 * Schedule immediate event checking on @disk if not blocked. Events in
1682 * @mask are scheduled to be cleared from the driver. Note that this
1683 * doesn't clear the events from @disk->ev.
1686 * If @mask is non-zero must be called with bdev->bd_mutex held.
1688 void disk_flush_events(struct gendisk
*disk
, unsigned int mask
)
1690 struct disk_events
*ev
= disk
->ev
;
1695 spin_lock_irq(&ev
->lock
);
1696 ev
->clearing
|= mask
;
1698 mod_delayed_work(system_freezable_power_efficient_wq
,
1700 spin_unlock_irq(&ev
->lock
);
1704 * disk_clear_events - synchronously check, clear and return pending events
1705 * @disk: disk to fetch and clear events from
1706 * @mask: mask of events to be fetched and cleared
1708 * Disk events are synchronously checked and pending events in @mask
1709 * are cleared and returned. This ignores the block count.
1714 unsigned int disk_clear_events(struct gendisk
*disk
, unsigned int mask
)
1716 const struct block_device_operations
*bdops
= disk
->fops
;
1717 struct disk_events
*ev
= disk
->ev
;
1718 unsigned int pending
;
1719 unsigned int clearing
= mask
;
1722 /* for drivers still using the old ->media_changed method */
1723 if ((mask
& DISK_EVENT_MEDIA_CHANGE
) &&
1724 bdops
->media_changed
&& bdops
->media_changed(disk
))
1725 return DISK_EVENT_MEDIA_CHANGE
;
1729 disk_block_events(disk
);
1732 * store the union of mask and ev->clearing on the stack so that the
1733 * race with disk_flush_events does not cause ambiguity (ev->clearing
1734 * can still be modified even if events are blocked).
1736 spin_lock_irq(&ev
->lock
);
1737 clearing
|= ev
->clearing
;
1739 spin_unlock_irq(&ev
->lock
);
1741 disk_check_events(ev
, &clearing
);
1743 * if ev->clearing is not 0, the disk_flush_events got called in the
1744 * middle of this function, so we want to run the workfn without delay.
1746 __disk_unblock_events(disk
, ev
->clearing
? true : false);
1748 /* then, fetch and clear pending events */
1749 spin_lock_irq(&ev
->lock
);
1750 pending
= ev
->pending
& mask
;
1751 ev
->pending
&= ~mask
;
1752 spin_unlock_irq(&ev
->lock
);
1753 WARN_ON_ONCE(clearing
& mask
);
1759 * Separate this part out so that a different pointer for clearing_ptr can be
1760 * passed in for disk_clear_events.
1762 static void disk_events_workfn(struct work_struct
*work
)
1764 struct delayed_work
*dwork
= to_delayed_work(work
);
1765 struct disk_events
*ev
= container_of(dwork
, struct disk_events
, dwork
);
1767 disk_check_events(ev
, &ev
->clearing
);
1770 static void disk_check_events(struct disk_events
*ev
,
1771 unsigned int *clearing_ptr
)
1773 struct gendisk
*disk
= ev
->disk
;
1774 char *envp
[ARRAY_SIZE(disk_uevents
) + 1] = { };
1775 unsigned int clearing
= *clearing_ptr
;
1776 unsigned int events
;
1778 int nr_events
= 0, i
;
1781 events
= disk
->fops
->check_events(disk
, clearing
);
1783 /* accumulate pending events and schedule next poll if necessary */
1784 spin_lock_irq(&ev
->lock
);
1786 events
&= ~ev
->pending
;
1787 ev
->pending
|= events
;
1788 *clearing_ptr
&= ~clearing
;
1790 intv
= disk_events_poll_jiffies(disk
);
1791 if (!ev
->block
&& intv
)
1792 queue_delayed_work(system_freezable_power_efficient_wq
,
1795 spin_unlock_irq(&ev
->lock
);
1798 * Tell userland about new events. Only the events listed in
1799 * @disk->events are reported. Unlisted events are processed the
1800 * same internally but never get reported to userland.
1802 for (i
= 0; i
< ARRAY_SIZE(disk_uevents
); i
++)
1803 if (events
& disk
->events
& (1 << i
))
1804 envp
[nr_events
++] = disk_uevents
[i
];
1807 kobject_uevent_env(&disk_to_dev(disk
)->kobj
, KOBJ_CHANGE
, envp
);
1811 * A disk events enabled device has the following sysfs nodes under
1812 * its /sys/block/X/ directory.
1814 * events : list of all supported events
1815 * events_async : list of events which can be detected w/o polling
1816 * events_poll_msecs : polling interval, 0: disable, -1: system default
1818 static ssize_t
__disk_events_show(unsigned int events
, char *buf
)
1820 const char *delim
= "";
1824 for (i
= 0; i
< ARRAY_SIZE(disk_events_strs
); i
++)
1825 if (events
& (1 << i
)) {
1826 pos
+= sprintf(buf
+ pos
, "%s%s",
1827 delim
, disk_events_strs
[i
]);
1831 pos
+= sprintf(buf
+ pos
, "\n");
1835 static ssize_t
disk_events_show(struct device
*dev
,
1836 struct device_attribute
*attr
, char *buf
)
1838 struct gendisk
*disk
= dev_to_disk(dev
);
1840 return __disk_events_show(disk
->events
, buf
);
1843 static ssize_t
disk_events_async_show(struct device
*dev
,
1844 struct device_attribute
*attr
, char *buf
)
1846 struct gendisk
*disk
= dev_to_disk(dev
);
1848 return __disk_events_show(disk
->async_events
, buf
);
1851 static ssize_t
disk_events_poll_msecs_show(struct device
*dev
,
1852 struct device_attribute
*attr
,
1855 struct gendisk
*disk
= dev_to_disk(dev
);
1857 return sprintf(buf
, "%ld\n", disk
->ev
->poll_msecs
);
1860 static ssize_t
disk_events_poll_msecs_store(struct device
*dev
,
1861 struct device_attribute
*attr
,
1862 const char *buf
, size_t count
)
1864 struct gendisk
*disk
= dev_to_disk(dev
);
1867 if (!count
|| !sscanf(buf
, "%ld", &intv
))
1870 if (intv
< 0 && intv
!= -1)
1873 disk_block_events(disk
);
1874 disk
->ev
->poll_msecs
= intv
;
1875 __disk_unblock_events(disk
, true);
1880 static const DEVICE_ATTR(events
, S_IRUGO
, disk_events_show
, NULL
);
1881 static const DEVICE_ATTR(events_async
, S_IRUGO
, disk_events_async_show
, NULL
);
1882 static const DEVICE_ATTR(events_poll_msecs
, S_IRUGO
|S_IWUSR
,
1883 disk_events_poll_msecs_show
,
1884 disk_events_poll_msecs_store
);
1886 static const struct attribute
*disk_events_attrs
[] = {
1887 &dev_attr_events
.attr
,
1888 &dev_attr_events_async
.attr
,
1889 &dev_attr_events_poll_msecs
.attr
,
1894 * The default polling interval can be specified by the kernel
1895 * parameter block.events_dfl_poll_msecs which defaults to 0
1896 * (disable). This can also be modified runtime by writing to
1897 * /sys/module/block/events_dfl_poll_msecs.
1899 static int disk_events_set_dfl_poll_msecs(const char *val
,
1900 const struct kernel_param
*kp
)
1902 struct disk_events
*ev
;
1905 ret
= param_set_ulong(val
, kp
);
1909 mutex_lock(&disk_events_mutex
);
1911 list_for_each_entry(ev
, &disk_events
, node
)
1912 disk_flush_events(ev
->disk
, 0);
1914 mutex_unlock(&disk_events_mutex
);
1919 static const struct kernel_param_ops disk_events_dfl_poll_msecs_param_ops
= {
1920 .set
= disk_events_set_dfl_poll_msecs
,
1921 .get
= param_get_ulong
,
1924 #undef MODULE_PARAM_PREFIX
1925 #define MODULE_PARAM_PREFIX "block."
1927 module_param_cb(events_dfl_poll_msecs
, &disk_events_dfl_poll_msecs_param_ops
,
1928 &disk_events_dfl_poll_msecs
, 0644);
1931 * disk_{alloc|add|del|release}_events - initialize and destroy disk_events.
1933 static void disk_alloc_events(struct gendisk
*disk
)
1935 struct disk_events
*ev
;
1937 if (!disk
->fops
->check_events
)
1940 ev
= kzalloc(sizeof(*ev
), GFP_KERNEL
);
1942 pr_warn("%s: failed to initialize events\n", disk
->disk_name
);
1946 INIT_LIST_HEAD(&ev
->node
);
1948 spin_lock_init(&ev
->lock
);
1949 mutex_init(&ev
->block_mutex
);
1951 ev
->poll_msecs
= -1;
1952 INIT_DELAYED_WORK(&ev
->dwork
, disk_events_workfn
);
1957 static void disk_add_events(struct gendisk
*disk
)
1962 /* FIXME: error handling */
1963 if (sysfs_create_files(&disk_to_dev(disk
)->kobj
, disk_events_attrs
) < 0)
1964 pr_warn("%s: failed to create sysfs files for events\n",
1967 mutex_lock(&disk_events_mutex
);
1968 list_add_tail(&disk
->ev
->node
, &disk_events
);
1969 mutex_unlock(&disk_events_mutex
);
1972 * Block count is initialized to 1 and the following initial
1973 * unblock kicks it into action.
1975 __disk_unblock_events(disk
, true);
1978 static void disk_del_events(struct gendisk
*disk
)
1983 disk_block_events(disk
);
1985 mutex_lock(&disk_events_mutex
);
1986 list_del_init(&disk
->ev
->node
);
1987 mutex_unlock(&disk_events_mutex
);
1989 sysfs_remove_files(&disk_to_dev(disk
)->kobj
, disk_events_attrs
);
1992 static void disk_release_events(struct gendisk
*disk
)
1994 /* the block count should be 1 from disk_del_events() */
1995 WARN_ON_ONCE(disk
->ev
&& disk
->ev
->block
!= 1);