Searched refs:newcbd (Results 1 – 1 of 1) sorted by relevance
| /mirbsd/src/sys/dev/ic/ |
| D | siop.c | 1710 struct siop_cbd *newcbd; local 1716 newcbd = malloc(sizeof(struct siop_cbd), M_DEVBUF, M_NOWAIT); 1717 if (newcbd == NULL) { 1722 bzero(newcbd, sizeof(struct siop_cbd)); 1725 newcbd->cmds = malloc(sizeof(struct siop_cmd) * SIOP_NCMDPB, 1727 if (newcbd->cmds == NULL) { 1732 bzero(newcbd->cmds, sizeof(struct siop_cmd) * SIOP_NCMDPB); 1741 (caddr_t *)&newcbd->xfers, BUS_DMA_NOWAIT|BUS_DMA_COHERENT); 1748 BUS_DMA_NOWAIT, &newcbd->xferdma); 1754 error = bus_dmamap_load(sc->sc_c.sc_dmat, newcbd->xferdma, newcbd->xfers, [all …]
|