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.14-rc2 21 lines 490 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2021 Intel Corporation 4 */ 5 6#ifndef _XE_EXECLIST_H_ 7#define _XE_EXECLIST_H_ 8 9#include "xe_execlist_types.h" 10 11struct xe_device; 12struct xe_gt; 13 14#define xe_execlist_port_assert_held(port) lockdep_assert_held(&(port)->lock) 15 16int xe_execlist_init(struct xe_gt *gt); 17struct xe_execlist_port *xe_execlist_port_create(struct xe_device *xe, 18 struct xe_hw_engine *hwe); 19void xe_execlist_port_destroy(struct xe_execlist_port *port); 20 21#endif