Message ID | 20210401144152.1031282-2-mlevitsk@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | gdbstub: implement support for blocking interrupts on single stepping | expand |
Maxim Levitsky <mlevitsk@redhat.com> writes: > Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com> Generally it's a good idea to reference where these are coming from, is it a current kernel patch in flight or from an release we haven't synced up to yet? Usually linux header updates are done with semi-regular runs on ./scripts/update-linux-headers.sh but obviously it's OK to include standalone patches during the review process. > --- > linux-headers/asm-x86/kvm.h | 2 ++ > linux-headers/linux/kvm.h | 1 + > 2 files changed, 3 insertions(+) > > diff --git a/linux-headers/asm-x86/kvm.h b/linux-headers/asm-x86/kvm.h > index 8e76d3701d..33878cdc34 100644 > --- a/linux-headers/asm-x86/kvm.h > +++ b/linux-headers/asm-x86/kvm.h > @@ -281,6 +281,8 @@ struct kvm_debug_exit_arch { > #define KVM_GUESTDBG_USE_HW_BP 0x00020000 > #define KVM_GUESTDBG_INJECT_DB 0x00040000 > #define KVM_GUESTDBG_INJECT_BP 0x00080000 > +#define KVM_GUESTDBG_BLOCKIRQ 0x00100000 > + > > /* for KVM_SET_GUEST_DEBUG */ > struct kvm_guest_debug_arch { > diff --git a/linux-headers/linux/kvm.h b/linux-headers/linux/kvm.h > index 020b62a619..2ded7a0630 100644 > --- a/linux-headers/linux/kvm.h > +++ b/linux-headers/linux/kvm.h > @@ -1056,6 +1056,7 @@ struct kvm_ppc_resize_hpt { > #define KVM_CAP_ENFORCE_PV_FEATURE_CPUID 190 > #define KVM_CAP_SYS_HYPERV_CPUID 191 > #define KVM_CAP_DIRTY_LOG_RING 192 > +#define KVM_CAP_SET_GUEST_DEBUG2 195 > > #ifdef KVM_CAP_IRQ_ROUTING
On Mon, 2021-04-19 at 17:22 +0100, Alex Bennée wrote: > Maxim Levitsky <mlevitsk@redhat.com> writes: > > > Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com> > > Generally it's a good idea to reference where these are coming from, is > it a current kernel patch in flight or from an release we haven't synced > up to yet? Hi! As Paolo explained to me, qemu syncs the kernel headers every once in a while thus when I submit a feature to qemu which uses a new KVM feature, while I should submit a patch to add it to the kernel headers, the patch is only for the reference. In this particular case, I first updated the qemu's kernel headers to match the kvm/queue branch, then added my feature to the kernel, and updated the qemu kernel headers again. This patch is the diff between 1st and second update to make it more readable. Best regards, Maxim Levitsky > > Usually linux header updates are done with semi-regular runs on > ./scripts/update-linux-headers.sh but obviously it's OK to include > standalone patches during the review process. > > > --- > > linux-headers/asm-x86/kvm.h | 2 ++ > > linux-headers/linux/kvm.h | 1 + > > 2 files changed, 3 insertions(+) > > > > diff --git a/linux-headers/asm-x86/kvm.h b/linux-headers/asm-x86/kvm.h > > index 8e76d3701d..33878cdc34 100644 > > --- a/linux-headers/asm-x86/kvm.h > > +++ b/linux-headers/asm-x86/kvm.h > > @@ -281,6 +281,8 @@ struct kvm_debug_exit_arch { > > #define KVM_GUESTDBG_USE_HW_BP 0x00020000 > > #define KVM_GUESTDBG_INJECT_DB 0x00040000 > > #define KVM_GUESTDBG_INJECT_BP 0x00080000 > > +#define KVM_GUESTDBG_BLOCKIRQ 0x00100000 > > + > > > > /* for KVM_SET_GUEST_DEBUG */ > > struct kvm_guest_debug_arch { > > diff --git a/linux-headers/linux/kvm.h b/linux-headers/linux/kvm.h > > index 020b62a619..2ded7a0630 100644 > > --- a/linux-headers/linux/kvm.h > > +++ b/linux-headers/linux/kvm.h > > @@ -1056,6 +1056,7 @@ struct kvm_ppc_resize_hpt { > > #define KVM_CAP_ENFORCE_PV_FEATURE_CPUID 190 > > #define KVM_CAP_SYS_HYPERV_CPUID 191 > > #define KVM_CAP_DIRTY_LOG_RING 192 > > +#define KVM_CAP_SET_GUEST_DEBUG2 195 > > > > #ifdef KVM_CAP_IRQ_ROUTING > >
diff --git a/linux-headers/asm-x86/kvm.h b/linux-headers/asm-x86/kvm.h index 8e76d3701d..33878cdc34 100644 --- a/linux-headers/asm-x86/kvm.h +++ b/linux-headers/asm-x86/kvm.h @@ -281,6 +281,8 @@ struct kvm_debug_exit_arch { #define KVM_GUESTDBG_USE_HW_BP 0x00020000 #define KVM_GUESTDBG_INJECT_DB 0x00040000 #define KVM_GUESTDBG_INJECT_BP 0x00080000 +#define KVM_GUESTDBG_BLOCKIRQ 0x00100000 + /* for KVM_SET_GUEST_DEBUG */ struct kvm_guest_debug_arch { diff --git a/linux-headers/linux/kvm.h b/linux-headers/linux/kvm.h index 020b62a619..2ded7a0630 100644 --- a/linux-headers/linux/kvm.h +++ b/linux-headers/linux/kvm.h @@ -1056,6 +1056,7 @@ struct kvm_ppc_resize_hpt { #define KVM_CAP_ENFORCE_PV_FEATURE_CPUID 190 #define KVM_CAP_SYS_HYPERV_CPUID 191 #define KVM_CAP_DIRTY_LOG_RING 192 +#define KVM_CAP_SET_GUEST_DEBUG2 195 #ifdef KVM_CAP_IRQ_ROUTING
Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com> --- linux-headers/asm-x86/kvm.h | 2 ++ linux-headers/linux/kvm.h | 1 + 2 files changed, 3 insertions(+)