KVM: Standardize on "int" return types instead of "long" in kvm_main.c
authorThomas Huth <thuth@redhat.com>
Wed, 8 Feb 2023 14:01:04 +0000 (15:01 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 16 Mar 2023 14:18:07 +0000 (10:18 -0400)
commitf15ba52bfabc3bc130053bd73d414d859162de91
tree23813da81f8f634e84ceb5100f926b1b791788c9
parent2def950c63e3f976af87a2606dabe0c9e21c605b
KVM: Standardize on "int" return types instead of "long" in kvm_main.c

KVM functions use "long" return values for functions that are wired up
to "struct file_operations", but otherwise use "int" return values for
functions that can return 0/-errno in order to avoid unintentional
divergences between 32-bit and 64-bit kernels.
Some code still uses "long" in unnecessary spots, though, which can
cause a little bit of confusion and unnecessary size casts. Let's
change these spots to use "int" types, too.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20230208140105.655814-6-thuth@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
virt/kvm/kvm_main.c