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);
787 struct buflist *buflist;
788 struct buflist *bl;
862 &numfrags, &buflist, &sgl_dma, iocp)) == NULL)
893 bl = buflist;
959 kfree_sgl(sgl, sgl_dma, buflist, iocp);
988 kfree_sgl(sgl, sgl_dma, buflist, iocp);
1002 * blp - point to the buflist pointer
1009 struct buflist **blp, dma_addr_t *sglbuf_dma, MPT_ADAPTER *ioc)
1013 struct buflist *buflist = NULL; /* kernel routine */
1036 buflist = kzalloc(i, GFP_USER);
1037 if (!buflist)
1066 buflist[buflist_ent].len = this_alloc;
1067 buflist[buflist_ent].kptr = pci_alloc_consistent(ioc->pcidev,
1070 if (buflist[buflist_ent].kptr == NULL) {
1086 buflist[buflist_ent].kptr, this_alloc, dir);
1121 *blp = buflist;
1142 kptr = buflist[i].kptr;
1143 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;
1208 kfree(buflist);
1740 struct buflist bufIn; /* data In buffer */
1741 struct buflist bufOut; /* data Out buffer */