Lines Matching refs:new_ccb
4536 union ccb *new_ccb; in xpt_alloc_ccb() local
4538 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_WAITOK); in xpt_alloc_ccb()
4539 return (new_ccb); in xpt_alloc_ccb()
4545 union ccb *new_ccb; in xpt_alloc_ccb_nowait() local
4547 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_NOWAIT); in xpt_alloc_ccb_nowait()
4548 return (new_ccb); in xpt_alloc_ccb_nowait()
4577 union ccb *new_ccb; in xpt_get_ccb_nowait() local
4582 new_ccb = uma_zalloc(periph->ccb_zone, M_ZERO|M_NOWAIT); in xpt_get_ccb_nowait()
4585 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_NOWAIT); in xpt_get_ccb_nowait()
4587 if (new_ccb == NULL) in xpt_get_ccb_nowait()
4589 new_ccb->ccb_h.alloc_flags = alloc_flags; in xpt_get_ccb_nowait()
4592 return (new_ccb); in xpt_get_ccb_nowait()
4598 union ccb *new_ccb; in xpt_get_ccb() local
4604 new_ccb = uma_zalloc(periph->ccb_zone, M_ZERO|M_WAITOK); in xpt_get_ccb()
4607 new_ccb = malloc(sizeof(*new_ccb), M_CAMCCB, M_ZERO|M_WAITOK); in xpt_get_ccb()
4609 new_ccb->ccb_h.alloc_flags = alloc_flags; in xpt_get_ccb()
4613 return (new_ccb); in xpt_get_ccb()