diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2021-05-24 18:22:28 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-05-24 13:10:27 -0400 |
| commit | 28a4aa1160d71187a44414dac40b57d1fd9fcd77 (patch) | |
| tree | 10379ca40c04de4154302b4e074b67a5bd14433b /arch/x86/kvm/svm/avic.c | |
| parent | 377872b3355b9a7f04f25388e2c9399845259c05 (diff) | |
| download | cachepc-linux-28a4aa1160d71187a44414dac40b57d1fd9fcd77.tar.gz cachepc-linux-28a4aa1160d71187a44414dac40b57d1fd9fcd77.zip | |
KVM: SVM: make the avic parameter a bool
Make it consistent with kvm_intel.enable_apicv.
Suggested-by: Sean Christopherson <seanjc@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/svm/avic.c')
| -rw-r--r-- | arch/x86/kvm/svm/avic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kvm/svm/avic.c b/arch/x86/kvm/svm/avic.c index 1c1bf911e02b..0e62e6a2438c 100644 --- a/arch/x86/kvm/svm/avic.c +++ b/arch/x86/kvm/svm/avic.c @@ -28,8 +28,8 @@ #include "svm.h" /* enable / disable AVIC */ -int avic; -module_param(avic, int, S_IRUGO); +bool avic; +module_param(avic, bool, S_IRUGO); #define SVM_AVIC_DOORBELL 0xc001011b |
