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

/freebsd-13-stable/sys/contrib/openzfs/module/os/linux/zfs/
H A Dqat.c49 qat_mem_alloc_contig(void **pp_mem_addr, Cpa32U size_bytes) argument
51 *pp_mem_addr = kmalloc(size_bytes, GFP_KERNEL);
52 if (*pp_mem_addr == NULL)
58 qat_mem_free_contig(void **pp_mem_addr) argument
60 if (*pp_mem_addr != NULL) {
61 kfree(*pp_mem_addr);
62 *pp_mem_addr = NULL;
/freebsd-13-stable/sys/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) \
162 qat_mem_alloc_contig((void *)(pp_mem_addr), (size_bytes))

Completed in 67 milliseconds