Searched refs:work_ccb (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.2-release/sys/cam/ata/
H A Data_xpt.c1316 union ccb *work_ccb, *reset_ccb; local
1326 work_ccb = xpt_alloc_ccb_nowait();
1327 if (work_ccb == NULL) {
1332 xpt_setup_ccb(&work_ccb->ccb_h, request_ccb->ccb_h.path,
1334 work_ccb->ccb_h.func_code = XPT_PATH_INQ;
1335 xpt_action(work_ccb);
1336 if (work_ccb->ccb_h.status != CAM_REQ_CMP) {
1337 request_ccb->ccb_h.status = work_ccb->ccb_h.status;
1338 xpt_free_ccb(work_ccb);
1344 if ((work_ccb
[all...]
/freebsd-10.2-release/sys/cam/scsi/
H A Dscsi_xpt.c1909 union ccb *work_ccb, *reset_ccb; local
1916 work_ccb = xpt_alloc_ccb_nowait();
1917 if (work_ccb == NULL) {
1922 xpt_setup_ccb(&work_ccb->ccb_h, request_ccb->ccb_h.path,
1924 work_ccb->ccb_h.func_code = XPT_PATH_INQ;
1925 xpt_action(work_ccb);
1926 if (work_ccb->ccb_h.status != CAM_REQ_CMP) {
1927 request_ccb->ccb_h.status = work_ccb->ccb_h.status;
1928 xpt_free_ccb(work_ccb);
1933 if ((work_ccb
[all...]
/freebsd-10.2-release/sys/cam/
H A Dcam_xpt.c257 static void xptaction(struct cam_sim *sim, union ccb *work_ccb);
3209 union ccb *work_ccb; local
3217 work_ccb = cam_ccbq_peek_ccb(&device->ccbq, CAMQ_HEAD);
3218 if (work_ccb == NULL) {
3223 if ((work_ccb->ccb_h.flags & CAM_HIGH_POWER) != 0) {
3248 cam_ccbq_remove_ccb(&device->ccbq, work_ccb);
3249 cam_ccbq_send_ccb(&device->ccbq, work_ccb);
3255 if ((work_ccb->ccb_h.flags & CAM_DEV_QFREEZE) != 0) {
3260 xpt_freeze_devq(work_ccb->ccb_h.path, 1);
3264 if (work_ccb
5090 xptaction(struct cam_sim *sim, union ccb *work_ccb) argument
[all...]

Completed in 106 milliseconds