Home
last modified time | relevance | path

Searched refs:scan_ccb (Results 1 – 4 of 4) sorted by relevance

/freebsd-14-stable/sys/cam/
HDcam_periph.c1888 union ccb *orig_ccb, *scan_ccb; in cam_periph_error() local
2096 scan_ccb = xpt_alloc_ccb_nowait(); in cam_periph_error()
2097 if (scan_ccb != NULL) { in cam_periph_error()
2098 scan_ccb->ccb_h.path = newpath; in cam_periph_error()
2099 scan_ccb->ccb_h.func_code = XPT_SCAN_TGT; in cam_periph_error()
2100 scan_ccb->crcn.flags = 0; in cam_periph_error()
2101 xpt_rescan(scan_ccb); in cam_periph_error()
HDcam_xpt.c3964 union ccb *scan_ccb; in xpt_bus_register() local
3967 scan_ccb = xpt_alloc_ccb_nowait(); in xpt_bus_register()
3968 if (scan_ccb != NULL) { in xpt_bus_register()
3969 scan_ccb->ccb_h.path = path; in xpt_bus_register()
3970 scan_ccb->ccb_h.func_code = XPT_SCAN_BUS; in xpt_bus_register()
3971 scan_ccb->crcn.flags = 0; in xpt_bus_register()
3972 xpt_rescan(scan_ccb); in xpt_bus_register()
/freebsd-14-stable/sys/dev/tws/
HDtws.h263 union ccb *scan_ccb; /* pointer to a ccb */ member
HDtws.c414 xpt_free_ccb(sc->scan_ccb); in tws_detach()
598 sc->scan_ccb = xpt_alloc_ccb(); in tws_init()