Home
last modified time | relevance | path

Searched refs:s_devnodes (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/smartpqi/
H A Dsmartpqi.c303 pqi_device_list_head(list_t s_devnodes, uint8_t *addr, in pqi_device_list_head() argument
308 pqi_list_head(s_devnodes, addr, offsetof(struct pqi_state, s_devnodes), in pqi_device_list_head()
314 (uintptr_t)s_devnodes.list_head.list_next); in pqi_device_list_head()
391 pqi_display_devices(list_t s_devnodes, pqi_state_t *drvp, uint_t dev_verbose) in pqi_display_devices() argument
407 offsetof(struct pqi_state, s_devnodes)); in pqi_display_devices()
409 rval = pqi_device_list_head(s_devnodes, in pqi_display_devices()
421 d_drvrp = (pqi_device_t *)(s_devnodes.list_head.list_next); in pqi_display_devices()
649 pqi_display_devices(pqi_statep->s_devnodes, pqi_drvp, print_devices); in smartpqi()
/illumos-gate/usr/src/uts/common/io/scsi/adapters/smartpqi/
H A Dsmartpqi_main.c183 list_create(&s->s_devnodes, sizeof (struct pqi_device), in smartpqi_attach()
297 while ((devp = list_head(&s->s_devnodes)) != NULL) { in smartpqi_detach()
308 list_remove(&s->s_devnodes, devp); in smartpqi_detach()
311 list_destroy(&s->s_devnodes); in smartpqi_detach()
H A Dsmartpqi_hba.c309 for (d = list_head(&s->s_devnodes); d != NULL; in pqi_scsi_reset()
310 d = list_next(&s->s_devnodes, d)) { in pqi_scsi_reset()
775 for (d = list_head(&s->s_devnodes); d != NULL; in pqi_find_target_ua()
776 d = list_next(&s->s_devnodes, d)) { in pqi_find_target_ua()
797 for (d = list_head(&s->s_devnodes); d != NULL; in pqi_config_all()
798 d = list_next(&s->s_devnodes, d)) { in pqi_config_all()
807 for (d = list_head(&s->s_devnodes); d != NULL; in pqi_config_all()
808 d = list_next(&s->s_devnodes, d)) { in pqi_config_all()
896 for (d = list_head(&s->s_devnodes); d != NULL;
897 d = list_next(&s->s_devnodes, d)) {
H A Dsmartpqi_hw.c384 d = list_head(&s->s_devnodes); in count_oustanding_cmds()
387 d = list_next(&s->s_devnodes, d); in count_oustanding_cmds()
735 for (devp = list_head(&s->s_devnodes); devp != NULL; in fail_outstanding_cmds()
736 devp = list_next(&s->s_devnodes, devp)) { in fail_outstanding_cmds()
944 for (d = list_head(&s->s_devnodes); d != NULL; in take_ctlr_offline()
945 d = list_next(&s->s_devnodes, d)) { in take_ctlr_offline()
H A Dsmartpqi_init.c1003 for (dev = list_head(&s->s_devnodes); dev != NULL; in pqi_scan_scsi_devices()
1004 dev = list_next(&s->s_devnodes, dev)) { in pqi_scan_scsi_devices()
1025 list_insert_tail(&s->s_devnodes, dev); in pqi_scan_scsi_devices()
1041 for (dev = list_head(&s->s_devnodes); dev != NULL; in pqi_scan_scsi_devices()
1042 dev = list_next(&s->s_devnodes, dev)) { in pqi_scan_scsi_devices()
1946 for (dev = list_head(&s->s_devnodes); dev != NULL; in is_new_dev()
1947 dev = list_next(&s->s_devnodes, dev)) { in is_new_dev()
H A Dsmartpqi.h370 list_t s_devnodes; member