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 18 lines 356 B view raw
1/* 2 * SPDX-License-Identifier: MIT 3 * 4 * Copyright © 2018 Intel Corporation 5 */ 6 7#ifndef __I915_SELFTESTS_IGT_RESET_H__ 8#define __I915_SELFTESTS_IGT_RESET_H__ 9 10#include <linux/types.h> 11 12struct intel_gt; 13 14void igt_global_reset_lock(struct intel_gt *gt); 15void igt_global_reset_unlock(struct intel_gt *gt); 16bool igt_force_reset(struct intel_gt *gt); 17 18#endif