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.19 20 lines 422 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2023-2024 Intel Corporation 4 */ 5 6#ifndef _XE_OBSERVATION_H_ 7#define _XE_OBSERVATION_H_ 8 9#include <linux/types.h> 10 11struct drm_device; 12struct drm_file; 13 14extern u32 xe_observation_paranoid; 15 16int xe_observation_ioctl(struct drm_device *dev, void *data, struct drm_file *file); 17int xe_observation_sysctl_register(void); 18void xe_observation_sysctl_unregister(void); 19 20#endif