Home
last modified time | relevance | path

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

/freebsd/sys/cam/
H A Dcam_periph.c1873 union ccb *orig_ccb, *scan_ccb; in cam_periph_error() local
2081 scan_ccb = xpt_alloc_ccb_nowait(); in cam_periph_error()
2082 if (scan_ccb != NULL) { in cam_periph_error()
2083 scan_ccb->ccb_h.path = newpath; in cam_periph_error()
2084 scan_ccb->ccb_h.func_code = XPT_SCAN_TGT; in cam_periph_error()
2085 scan_ccb->crcn.flags = 0; in cam_periph_error()
2086 xpt_rescan(scan_ccb); in cam_periph_error()
H A Dcam_xpt.c3961 union ccb *scan_ccb; in xpt_bus_register() local
3964 scan_ccb = xpt_alloc_ccb_nowait(); in xpt_bus_register()
3965 if (scan_ccb != NULL) { in xpt_bus_register()
3966 scan_ccb->ccb_h.path = path; in xpt_bus_register()
3967 scan_ccb->ccb_h.func_code = XPT_SCAN_BUS; in xpt_bus_register()
3968 scan_ccb->crcn.flags = 0; in xpt_bus_register()
3969 xpt_rescan(scan_ccb); in xpt_bus_register()
/freebsd/sys/dev/tws/
H A Dtws.h263 union ccb *scan_ccb; /* pointer to a ccb */ member
H A Dtws.c414 xpt_free_ccb(sc->scan_ccb); in tws_detach()
598 sc->scan_ccb = xpt_alloc_ccb(); in tws_init()