Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: MIT */
2/*
3 * Copyright © 2023-2024 Intel Corporation
4 */
5
6#ifndef _XE_SRIOV_VF_H_
7#define _XE_SRIOV_VF_H_
8
9#include <linux/types.h>
10
11struct dentry;
12struct xe_device;
13
14void xe_sriov_vf_init_early(struct xe_device *xe);
15int xe_sriov_vf_init_late(struct xe_device *xe);
16bool xe_sriov_vf_migration_supported(struct xe_device *xe);
17void xe_sriov_vf_migration_disable(struct xe_device *xe, const char *fmt, ...);
18void xe_sriov_vf_debugfs_register(struct xe_device *xe, struct dentry *root);
19
20#endif