Lines Matching defs:buflist
94 struct buflist {
129 struct buflist **blp, dma_addr_t *sglbuf_dma, MPT_ADAPTER *ioc);
131 struct buflist *buflist, MPT_ADAPTER *ioc);
783 struct buflist *buflist;
784 struct buflist *bl;
858 &numfrags, &buflist, &sgl_dma, iocp)) == NULL)
889 bl = buflist;
955 kfree_sgl(sgl, sgl_dma, buflist, iocp);
984 kfree_sgl(sgl, sgl_dma, buflist, iocp);
998 * blp - point to the buflist pointer
1005 struct buflist **blp, dma_addr_t *sglbuf_dma, MPT_ADAPTER *ioc)
1009 struct buflist *buflist = NULL; /* kernel routine */
1032 buflist = kzalloc(i, GFP_USER);
1033 if (!buflist)
1063 buflist[buflist_ent].len = this_alloc;
1064 buflist[buflist_ent].kptr = dma_alloc_coherent(&ioc->pcidev->dev,
1067 if (buflist[buflist_ent].kptr == NULL) {
1083 buflist[buflist_ent].kptr,
1119 *blp = buflist;
1140 kptr = buflist[i].kptr;
1141 len = buflist[i].len;
1149 kfree(buflist);
1158 kfree_sgl(MptSge_t *sgl, dma_addr_t sgl_dma, struct buflist *buflist, MPT_ADAPTER *ioc)
1161 struct buflist *bl = buflist;
1210 kfree(buflist);
1736 struct buflist bufIn; /* data In buffer */
1737 struct buflist bufOut; /* data Out buffer */