Searched refs:p_drv (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/cam/ |
H A D | cam_periph.c | 64 static u_int camperiphnextunit(struct periph_driver *p_drv, 68 static u_int camperiphunit(struct periph_driver *p_drv, 201 struct periph_driver **p_drv; in cam_periph_alloc() local 264 for (p_drv = periph_drivers; *p_drv != NULL; p_drv++) { in cam_periph_alloc() 265 if (strcmp((*p_drv)->driver_name, name) == 0) in cam_periph_alloc() 268 if (*p_drv == NULL) { in cam_periph_alloc() 275 periph->unit_number = camperiphunit(*p_drv, path_id, target_id, lun_id, in cam_periph_alloc() 277 cur_periph = TAILQ_FIRST(&(*p_drv)->units); in cam_periph_alloc() 286 TAILQ_INSERT_TAIL(&(*p_drv)->units, periph, unit_links); in cam_periph_alloc() 287 (*p_drv)->generation++; in cam_periph_alloc() [all …]
|
H A D | cam_xpt.c | 595 struct periph_driver **p_drv; in xptdoioctl() local 622 for (p_drv = periph_drivers; *p_drv != NULL; p_drv++) in xptdoioctl() 623 if (strcmp((*p_drv)->driver_name, name) == 0) in xptdoioctl() 626 if (*p_drv == NULL) { in xptdoioctl() 643 for (periph = TAILQ_FIRST(&(*p_drv)->units); periph != NULL; in xptdoioctl()
|