diff options
author | Thomas Huth <thuth@redhat.com> | 2023-02-08 15:01:05 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-03-16 10:18:07 -0400 |
commit | d8708b80fa0e6e21bc0c9e7276ad0bccef73b6e7 (patch) | |
tree | 996f7424da1fa03c5ef963f59954ebb2a6d44399 /arch/mips/kvm | |
parent | f15ba52bfabc3bc130053bd73d414d859162de91 (diff) | |
download | linux-d8708b80fa0e6e21bc0c9e7276ad0bccef73b6e7.tar.gz linux-d8708b80fa0e6e21bc0c9e7276ad0bccef73b6e7.tar.bz2 linux-d8708b80fa0e6e21bc0c9e7276ad0bccef73b6e7.zip |
KVM: Change return type of kvm_arch_vm_ioctl() to "int"
All kvm_arch_vm_ioctl() implementations now only deal with "int"
types as return values, so we can change the return type of these
functions to use "int" instead of "long".
Signed-off-by: Thomas Huth <thuth@redhat.com>
Acked-by: Anup Patel <anup@brainfault.org>
Message-Id: <20230208140105.655814-7-thuth@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/mips/kvm')
-rw-r--r-- | arch/mips/kvm/mips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kvm/mips.c b/arch/mips/kvm/mips.c index 36c8991b5d39..884be4ef99dc 100644 --- a/arch/mips/kvm/mips.c +++ b/arch/mips/kvm/mips.c @@ -993,9 +993,9 @@ void kvm_arch_flush_remote_tlbs_memslot(struct kvm *kvm, kvm_flush_remote_tlbs(kvm); } -long kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg) +int kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg) { - long r; + int r; switch (ioctl) { default: |