/usr/src/linux-headers-5.15.0-181/include/xen/arm
NameSizeModeActions
hypercall.h34620644editdlrm
hypervisor.h7740644editdlrm
interface.h25930644editdlrm
page-coherent.h6130644editdlrm
page.h31190644editdlrm
swiotlb-xen.h4310644editdlrm
Edit: /usr/src/linux-headers-5.15.0-181/include/xen/arm/page-coherent.h (613B)
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _XEN_ARM_PAGE_COHERENT_H #define _XEN_ARM_PAGE_COHERENT_H #include #include static inline void *xen_alloc_coherent_pages(struct device *hwdev, size_t size, dma_addr_t *dma_handle, gfp_t flags, unsigned long attrs) { return dma_direct_alloc(hwdev, size, dma_handle, flags, attrs); } static inline void xen_free_coherent_pages(struct device *hwdev, size_t size, void *cpu_addr, dma_addr_t dma_handle, unsigned long attrs) { dma_direct_free(hwdev, size, cpu_addr, dma_handle, attrs); } #endif /* _XEN_ARM_PAGE_COHERENT_H */