Lines Matching defs:pbl
144 siw_dbg_mem(mem, "free mem, pbl: %s\n", mem->is_pbl ? "y" : "n");
150 kfree(mem->pbl);
325 dma_addr_t siw_pbl_get_buffer(struct siw_pbl *pbl, u64 off, int *len, int *idx)
329 while (i < pbl->num_buf) {
330 struct siw_pble *pble = &pbl->pbe[i];
351 struct siw_pbl *pbl;
356 pbl = kzalloc(struct_size(pbl, pbe, num_buf), GFP_KERNEL);
357 if (!pbl)
360 pbl->max_buf = num_buf;
362 return pbl;