Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.16 18 lines 379 B view raw
1/* SPDX-License-Identifier: MIT 2 * 3 * Copyright © 2024 Intel Corporation 4 */ 5 6#ifndef _XE_HMM_H_ 7#define _XE_HMM_H_ 8 9#include <linux/types.h> 10 11struct xe_userptr_vma; 12 13int xe_hmm_userptr_populate_range(struct xe_userptr_vma *uvma, bool is_mm_mmap_locked); 14 15void xe_hmm_userptr_free_sg(struct xe_userptr_vma *uvma); 16 17void xe_hmm_userptr_unmap(struct xe_userptr_vma *uvma); 18#endif