mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 02:36:21 +00:00
kvm: Add support for arch compat vm ioctls
commit ed51862f2f57cbce6fed2d4278cfe70a490899fd upstream. We will introduce the first architecture specific compat vm ioctl in the next patch. Add all necessary boilerplate to allow architectures to override compat vm ioctls when necessary. Signed-off-by: Alexander Graf <graf@amazon.com> Message-Id: <20221017184541.2658-2-graf@amazon.com> Cc: stable@vger.kernel.org Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c828fab903
commit
6b7ebdcae2
@ -1391,6 +1391,8 @@ int kvm_vm_ioctl_enable_cap(struct kvm *kvm,
|
|||||||
struct kvm_enable_cap *cap);
|
struct kvm_enable_cap *cap);
|
||||||
long kvm_arch_vm_ioctl(struct file *filp,
|
long kvm_arch_vm_ioctl(struct file *filp,
|
||||||
unsigned int ioctl, unsigned long arg);
|
unsigned int ioctl, unsigned long arg);
|
||||||
|
long kvm_arch_vm_compat_ioctl(struct file *filp, unsigned int ioctl,
|
||||||
|
unsigned long arg);
|
||||||
|
|
||||||
int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
|
int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
|
||||||
int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
|
int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu);
|
||||||
|
@ -4834,6 +4834,12 @@ struct compat_kvm_clear_dirty_log {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
long __weak kvm_arch_vm_compat_ioctl(struct file *filp, unsigned int ioctl,
|
||||||
|
unsigned long arg)
|
||||||
|
{
|
||||||
|
return -ENOTTY;
|
||||||
|
}
|
||||||
|
|
||||||
static long kvm_vm_compat_ioctl(struct file *filp,
|
static long kvm_vm_compat_ioctl(struct file *filp,
|
||||||
unsigned int ioctl, unsigned long arg)
|
unsigned int ioctl, unsigned long arg)
|
||||||
{
|
{
|
||||||
@ -4842,6 +4848,11 @@ static long kvm_vm_compat_ioctl(struct file *filp,
|
|||||||
|
|
||||||
if (kvm->mm != current->mm || kvm->vm_dead)
|
if (kvm->mm != current->mm || kvm->vm_dead)
|
||||||
return -EIO;
|
return -EIO;
|
||||||
|
|
||||||
|
r = kvm_arch_vm_compat_ioctl(filp, ioctl, arg);
|
||||||
|
if (r != -ENOTTY)
|
||||||
|
return r;
|
||||||
|
|
||||||
switch (ioctl) {
|
switch (ioctl) {
|
||||||
#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
|
#ifdef CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT
|
||||||
case KVM_CLEAR_DIRTY_LOG: {
|
case KVM_CLEAR_DIRTY_LOG: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user