Home
last modified time | relevance | path

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

/dragonfly/sys/bus/cam/scsi/
HDscsi_target.c295 struct ccb_debug *cdbg; in targioctl() local
302 cdbg = &xpt_alloc_ccb()->cdbg; in targioctl()
304 cdbg->flags = CAM_DEBUG_PERIPH; in targioctl()
306 cdbg->flags = CAM_DEBUG_NONE; in targioctl()
308 xpt_setup_ccb(&cdbg->ccb_h, softc->path, /*priority*/0); in targioctl()
309 cdbg->ccb_h.func_code = XPT_DEBUG; in targioctl()
310 cdbg->ccb_h.cbfcnp = targdone; in targioctl()
312 xpt_action((union ccb *)cdbg); in targioctl()
314 status = cdbg->ccb_h.status & CAM_STATUS_MASK; in targioctl()
315 xpt_free_ccb(&cdbg->ccb_h); in targioctl()
/dragonfly/sbin/camcontrol/
HDcamcontrol.c2104 ccb.cdbg.flags |= CAM_DEBUG_INFO; in camdebug()
2108 ccb.cdbg.flags |= CAM_DEBUG_PERIPH; in camdebug()
2112 ccb.cdbg.flags |= CAM_DEBUG_SUBTRACE; in camdebug()
2116 ccb.cdbg.flags |= CAM_DEBUG_TRACE; in camdebug()
2120 ccb.cdbg.flags |= CAM_DEBUG_XPT; in camdebug()
2124 ccb.cdbg.flags |= CAM_DEBUG_CDB; in camdebug()
2152 ccb.cdbg.flags = CAM_DEBUG_NONE; in camdebug()
2203 if (ccb.cdbg.flags == CAM_DEBUG_NONE) { in camdebug()
/dragonfly/sys/bus/cam/
HDcam_ccb.h910 struct ccb_debug cdbg; member
HDcam_xpt.c3496 cam_dflags = start_ccb->cdbg.flags; in xpt_action()