Home
last modified time | relevance | path

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

/freebsd-9-stable/sys/cam/
Dcam_periph.c1601 union ccb *orig_ccb, *scan_ccb; in cam_periph_error() local
1784 scan_ccb = xpt_alloc_ccb_nowait(); in cam_periph_error()
1785 if (scan_ccb != NULL) { in cam_periph_error()
1786 scan_ccb->ccb_h.path = newpath; in cam_periph_error()
1787 scan_ccb->ccb_h.func_code = XPT_SCAN_TGT; in cam_periph_error()
1788 scan_ccb->crcn.flags = 0; in cam_periph_error()
1789 xpt_rescan(scan_ccb); in cam_periph_error()
Dcam_xpt.c3985 union ccb *scan_ccb; in xpt_bus_register() local
3988 scan_ccb = xpt_alloc_ccb_nowait(); in xpt_bus_register()
3989 if (scan_ccb != NULL) { in xpt_bus_register()
3990 scan_ccb->ccb_h.path = path; in xpt_bus_register()
3991 scan_ccb->ccb_h.func_code = XPT_SCAN_BUS; in xpt_bus_register()
3992 scan_ccb->crcn.flags = 0; in xpt_bus_register()
3993 xpt_rescan(scan_ccb); in xpt_bus_register()
/freebsd-9-stable/sys/dev/tws/
Dtws.h268 union ccb *scan_ccb; /* pointer to a ccb */ member
Dtws.c400 free(sc->scan_ccb, M_TWS); in tws_detach()
596 sc->scan_ccb = malloc(sizeof(union ccb), M_TWS, M_WAITOK | M_ZERO); in tws_init()
597 if ( sc->scan_ccb == NULL ) { in tws_init()