Searched refs:new_ccb (Results 1 - 5 of 5) sorted by relevance

/freebsd-10-stable/sys/cam/ctl/
H A Dscsi_ctl.c486 union ccb *new_ccb; local
490 new_ccb = (union ccb *)malloc(sizeof(*new_ccb), M_CTLFE,
492 if (new_ccb == NULL) {
498 free(new_ccb, M_CTLFE);
506 free(new_ccb, M_CTLFE);
512 new_ccb->ccb_h.io_ptr = new_io;
513 LIST_INSERT_HEAD(&softc->atio_list, &new_ccb->ccb_h, periph_links.le);
515 xpt_setup_ccb(&new_ccb->ccb_h, periph->path, /*priority*/ 1);
516 new_ccb
543 union ccb *new_ccb; local
[all...]
/freebsd-10-stable/sys/cam/
H A Dcam_xpt.h68 void xpt_action(union ccb *new_ccb);
69 void xpt_action_default(union ccb *new_ccb);
H A Dcam_queue.h163 cam_ccbq_insert_ccb(struct cam_ccbq *ccbq, union ccb *new_ccb);
195 cam_ccbq_insert_ccb(struct cam_ccbq *ccbq, union ccb *new_ccb) argument
213 camq_insert(queue, &new_ccb->ccb_h.pinfo);
H A Dcam_xpt.c4525 union ccb *new_ccb; local
4527 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_WAITOK);
4528 return (new_ccb);
4534 union ccb *new_ccb; local
4536 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_NOWAIT);
4537 return (new_ccb);
4558 union ccb *new_ccb; local
4560 new_ccb
4571 union ccb *new_ccb; local
[all...]
/freebsd-10-stable/sys/dev/asr/
H A Dasr.c711 union asr_ccb *new_ccb; local
713 if ((new_ccb = (union asr_ccb *)malloc(sizeof(*new_ccb),
715 new_ccb->ccb_h.pinfo.priority = 1;
716 new_ccb->ccb_h.pinfo.index = CAM_UNQUEUED_INDEX;
717 new_ccb->ccb_h.spriv_ptr0 = sc;
719 return (new_ccb);

Completed in 91 milliseconds