Lines Matching refs:cdai
3338 struct ccb_dev_advinfo cdai; in mprsas_async() local
3387 bzero(&cdai, sizeof(cdai)); in mprsas_async()
3388 xpt_setup_ccb(&cdai.ccb_h, path, CAM_PRIORITY_NORMAL); in mprsas_async()
3389 cdai.ccb_h.func_code = XPT_DEV_ADVINFO; in mprsas_async()
3390 cdai.ccb_h.flags = CAM_DIR_IN; in mprsas_async()
3391 cdai.buftype = CDAI_TYPE_RCAPLONG; in mprsas_async()
3392 cdai.flags = CDAI_FLAG_NONE; in mprsas_async()
3393 cdai.bufsiz = sizeof(rcap_buf); in mprsas_async()
3394 cdai.buf = (uint8_t *)&rcap_buf; in mprsas_async()
3395 xpt_action((union ccb *)&cdai); in mprsas_async()
3396 if ((cdai.ccb_h.status & CAM_DEV_QFRZN) != 0) in mprsas_async()
3397 cam_release_devq(cdai.ccb_h.path, 0, 0, 0, FALSE); in mprsas_async()
3399 if ((mprsas_get_ccbstatus((union ccb *)&cdai) == CAM_REQ_CMP) in mprsas_async()