mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-13 17:24:28 +08:00
21 lines
398 B
C
21 lines
398 B
C
|
/*
|
||
|
* Kernel-based Virtual Machine driver for Linux
|
||
|
*
|
||
|
* Copyright 2016 Red Hat, Inc. and/or its affiliates.
|
||
|
*
|
||
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
||
|
* the COPYING file in the top-level directory.
|
||
|
*
|
||
|
*/
|
||
|
#include <linux/kvm_host.h>
|
||
|
|
||
|
bool kvm_arch_has_vcpu_debugfs(void)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|