Lines Matching refs:dlist

106 static	int	h_remove_ses_nodes(struct dlist *);
108 static int h_display_logical_nodes(struct dlist *);
109 static void h_print_logical_nodes(struct dlist *);
110 static int h_remove_nodes(struct dlist *);
336 struct dlist *dlist; in h_chk_dev_busy() local
347 for (dlist = hotplug_dev->dlhead; in h_chk_dev_busy()
348 dlist != NULL; dlist = dlist->next) { in h_chk_dev_busy()
349 (void) g_online_drive(dlist->multipath, in h_chk_dev_busy()
1532 struct dlist *dl; in h_pre_hotplug_sena()
1736 struct dlist *dl, *dl1; in h_post_hotplug_sena()
2529 h_remove_nodes(struct dlist *dl) in h_remove_nodes()
2535 struct dlist *dlist; in h_remove_nodes() local
2565 for (dlist = dl; dlist != NULL; dlist = dlist->next) { in h_remove_nodes()
2566 (void) strcpy(path, dlist->dev_path); in h_remove_nodes()
2596 h_remove_ses_nodes(struct dlist *dlist) in h_remove_ses_nodes() argument
2601 struct dlist *dl; in h_remove_ses_nodes()
2630 for (dl = dlist; dl != NULL; dl = dl->next) { in h_remove_ses_nodes()
2641 (void) g_free_multipath(dlist); in h_remove_ses_nodes()
2655 h_print_logical_nodes(struct dlist *disk_list) in h_print_logical_nodes()
2658 struct dlist *dlist; in h_print_logical_nodes() local
2665 for (dlist = disk_list; dlist != NULL; dlist = dlist->next) { in h_print_logical_nodes()
2666 lpath = dlist->logical_path; in h_print_logical_nodes()
2685 for (dlist = disk_list; dlist != NULL; dlist = dlist->next) { in h_print_logical_nodes()
2686 lpath = dlist->logical_path; in h_print_logical_nodes()
2718 h_display_logical_nodes(struct dlist *dlist) in h_display_logical_nodes() argument
2724 struct dlist *dl; in h_display_logical_nodes()
2745 for (dl = dlist; dl; dl = dl->next) { in h_display_logical_nodes()
2779 struct dlist *dl_ses, *dl_multi; in h_print_list_warn()