mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
block: make proc files seq_start use the class_find_device()
Use the proper class iterator function instead of mucking around in the internals of the class structures. Cc: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
a6e2ba8877
commit
68c4d4a787
@ -291,18 +291,25 @@ void __init printk_all_partitions(void)
|
||||
|
||||
#ifdef CONFIG_PROC_FS
|
||||
/* iterator */
|
||||
static int find_start(struct device *dev, void *data)
|
||||
{
|
||||
loff_t k = *(loff_t *)data;
|
||||
|
||||
if (dev->type != &disk_type)
|
||||
return 0;
|
||||
if (!k--)
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void *part_start(struct seq_file *part, loff_t *pos)
|
||||
{
|
||||
loff_t k = *pos;
|
||||
struct device *dev;
|
||||
|
||||
mutex_lock(&block_class_lock);
|
||||
list_for_each_entry(dev, &block_class.devices, node) {
|
||||
if (dev->type != &disk_type)
|
||||
continue;
|
||||
if (!k--)
|
||||
return dev_to_disk(dev);
|
||||
}
|
||||
dev = class_find_device(&block_class, NULL, (void *)pos, find_start);
|
||||
if (dev)
|
||||
return dev_to_disk(dev);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@ -555,16 +562,12 @@ static struct device_type disk_type = {
|
||||
|
||||
static void *diskstats_start(struct seq_file *part, loff_t *pos)
|
||||
{
|
||||
loff_t k = *pos;
|
||||
struct device *dev;
|
||||
|
||||
mutex_lock(&block_class_lock);
|
||||
list_for_each_entry(dev, &block_class.devices, node) {
|
||||
if (dev->type != &disk_type)
|
||||
continue;
|
||||
if (!k--)
|
||||
return dev_to_disk(dev);
|
||||
}
|
||||
dev = class_find_device(&block_class, NULL, (void *)pos, find_start);
|
||||
if (dev)
|
||||
return dev_to_disk(dev);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user