Home | History | Annotate | Download | only in ic

Lines Matching defs:next_scb

5640 		struct scb *next_scb;
5647 next_scb = LIST_NEXT(scb, collision_links);
5648 if (next_scb != NULL) {
5650 next_scb, links.tqe);
5744 struct scb *next_scb;
5898 next_scb = malloc(sizeof(*next_scb), M_DEVBUF, M_WAITOK);
5899 if (next_scb == NULL)
5904 free(next_scb, M_DEVBUF);
5907 next_scb->platform_data = pdata;
5908 next_scb->hscb_map = hscb_map;
5909 next_scb->sg_map = sg_map;
5910 next_scb->sense_map = sense_map;
5911 next_scb->sg_list = segs;
5912 next_scb->sense_data = sense_data;
5913 next_scb->sense_busaddr = sense_busaddr;
5915 next_scb->hscb = hscb;
5924 next_scb->sg_list_busaddr = sg_busaddr;
5926 next_scb->sg_list_busaddr
5929 next_scb->sg_list_busaddr += sizeof(struct ahd_dma_seg);
5930 next_scb->ahd_softc = ahd;
5931 next_scb->flags = SCB_FLAG_NONE;
5938 &next_scb->dmamap);
5940 free(next_scb, M_DEVBUF);
5944 next_scb->hscb->tag = ahd_htole16(scb_data->numscbs);
5946 next_scb->col_scb = ahd_find_scb_by_tag(ahd, col_tag);
5947 if (next_scb->col_scb != NULL)
5948 next_scb->col_scb->col_scb = next_scb;
5949 ahd_free_scb(ahd, next_scb);