Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dqat.c49 qat_mem_alloc_contig(void **pp_mem_addr, Cpa32U size_bytes) in qat_mem_alloc_contig() argument
51 *pp_mem_addr = kmalloc(size_bytes, GFP_KERNEL); in qat_mem_alloc_contig()
52 if (*pp_mem_addr == NULL) in qat_mem_alloc_contig()
58 qat_mem_free_contig(void **pp_mem_addr) in qat_mem_free_contig() argument
60 if (*pp_mem_addr != NULL) { in qat_mem_free_contig()
61 kfree(*pp_mem_addr); in qat_mem_free_contig()
62 *pp_mem_addr = NULL; in qat_mem_free_contig()
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dqat.h159 CpaStatus qat_mem_alloc_contig(void **pp_mem_addr, Cpa32U size_bytes);
160 void qat_mem_free_contig(void **pp_mem_addr);
161 #define QAT_PHYS_CONTIG_ALLOC(pp_mem_addr, size_bytes) \ argument
162 qat_mem_alloc_contig((void *)(pp_mem_addr), (size_bytes))