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

/freebsd-10.2-release/sys/cam/ctl/
H A Dscsi_ctl.c532 union ccb *new_ccb; local
535 new_ccb = (union ccb *)malloc(sizeof(*new_ccb), M_CTLFE,
537 if (new_ccb == NULL) {
543 free(new_ccb, M_CTLFE);
548 new_ccb->ccb_h.io_ptr = new_io;
550 xpt_setup_ccb(&new_ccb->ccb_h, periph->path, /*priority*/ 1);
551 new_ccb->ccb_h.func_code = XPT_ACCEPT_TARGET_IO;
552 new_ccb->ccb_h.cbfcnp = ctlfedone;
553 new_ccb
577 union ccb *new_ccb; local
[all...]
/freebsd-10.2-release/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.c4489 union ccb *new_ccb; local
4491 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_WAITOK);
4492 return (new_ccb);
4498 union ccb *new_ccb; local
4500 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_NOWAIT);
4501 return (new_ccb);
4522 union ccb *new_ccb; local
4524 new_ccb
4535 union ccb *new_ccb; local
[all...]
/freebsd-10.2-release/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 469 milliseconds