Lines Matching refs:devices
59 static void __init dm_setup_cleanup(struct list_head *devices)
64 list_for_each_entry_safe(dev, tmp, devices, list) {
228 * @devices: list of struct dm_device to store the parsed information.
232 static int __init dm_parse_devices(struct list_head *devices, char *str)
243 list_add_tail(&dev->list, devices);
246 DMERR("too many devices %lu > %d",
267 LIST_HEAD(devices);
282 r = dm_parse_devices(&devices, str);
286 DMINFO("waiting for all devices to be available before creating mapped devices");
289 list_for_each_entry(dev, &devices, list) {
296 dm_setup_cleanup(&devices);