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.12 15 lines 340 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6#ifndef _XE_DMA_BUF_H_ 7#define _XE_DMA_BUF_H_ 8 9#include <drm/drm_gem.h> 10 11struct dma_buf *xe_gem_prime_export(struct drm_gem_object *obj, int flags); 12struct drm_gem_object *xe_gem_prime_import(struct drm_device *dev, 13 struct dma_buf *dma_buf); 14 15#endif