From b48ceca4712fcbfe1ef5d5c2d831d14d347c8522 Mon Sep 17 00:00:00 2001 From: Mingwang Li Date: Tue, 11 Mar 2025 07:08:50 +0000 Subject: [PATCH] linux-headers/linux: update KVM_EXIT_RISCV_SBI value The KVM_EXIT_RISCV_SBI value in the upstream open source community is 35. Thereforce, the macro variable value needs to be updated. Signed-off-by: Mingwang Li --- linux-headers/linux/kvm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-headers/linux/kvm.h b/linux-headers/linux/kvm.h index ddeedcf3df..a409bf7ede 100644 --- a/linux-headers/linux/kvm.h +++ b/linux-headers/linux/kvm.h @@ -250,7 +250,7 @@ struct kvm_hyperv_exit { #define KVM_EXIT_ARM_NISV 28 #define KVM_EXIT_X86_RDMSR 29 #define KVM_EXIT_X86_WRMSR 30 -#define KVM_EXIT_RISCV_SBI 31 +#define KVM_EXIT_RISCV_SBI 35 /* For KVM_EXIT_INTERNAL_ERROR */ /* Emulate instruction failed. */ -- Gitee