Lines Matching refs:devices
30 * Block devices to wait for to become available before setting up tables:
64 static void __init dm_setup_cleanup(struct list_head *devices)
69 list_for_each_entry_safe(dev, tmp, devices, list) {
233 * @devices: list of struct dm_device to store the parsed information.
237 static int __init dm_parse_devices(struct list_head *devices, char *str)
248 list_add_tail(&dev->list, devices);
251 DMERR("too many devices %lu > %d",
272 LIST_HEAD(devices);
287 r = dm_parse_devices(&devices, str);
291 DMINFO("waiting for all devices to be available before creating mapped devices");
305 DMINFO("all devices available");
307 list_for_each_entry(dev, &devices, list) {
314 dm_setup_cleanup(&devices);