Home
last modified time | relevance | path

Searched refs:pp_mem_addr (Results 1 – 2 of 2) sorted by relevance

/src/sys/contrib/openzfs/module/os/linux/zfs/
H A Dqat.c50 qat_mem_alloc_contig(void **pp_mem_addr, Cpa32U size_bytes) in qat_mem_alloc_contig() argument
52 *pp_mem_addr = kmalloc(size_bytes, GFP_KERNEL); in qat_mem_alloc_contig()
53 if (*pp_mem_addr == NULL) in qat_mem_alloc_contig()
59 qat_mem_free_contig(void **pp_mem_addr) in qat_mem_free_contig() argument
61 if (*pp_mem_addr != NULL) { in qat_mem_free_contig()
62 kfree(*pp_mem_addr); in qat_mem_free_contig()
63 *pp_mem_addr = NULL; in qat_mem_free_contig()
/src/sys/contrib/openzfs/include/sys/
H A Dqat.h160 CpaStatus qat_mem_alloc_contig(void **pp_mem_addr, Cpa32U size_bytes);
161 void qat_mem_free_contig(void **pp_mem_addr);
162 #define QAT_PHYS_CONTIG_ALLOC(pp_mem_addr, size_bytes) \ argument
163 qat_mem_alloc_contig((void *)(pp_mem_addr), (size_bytes))