linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: add KVM x86 reviewers
@ 2019-08-09  7:34 Paolo Bonzini
  2019-08-09  7:41 ` Joerg Roedel
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Paolo Bonzini @ 2019-08-09  7:34 UTC (permalink / raw)
  To: linux-kernel, kvm
  Cc: Sean Christopherson, Vitaly Kuznetsov, Wanpeng Li, Jim Mattson,
	Joerg Roedel

This is probably overdone---KVM x86 has quite a few contributors that
usually review each other's patches, which is really helpful to me.
Formalize this by listing them as reviewers.  I am including people
with various expertise:

- Joerg for SVM (with designated reviewers, it makes more sense to have
him in the main KVM/x86 stanza)

- Sean for MMU and VMX

- Jim for VMX

- Vitaly for Hyper-V and possibly SVM

- Wanpeng for LAPIC and paravirtualization.

Please ack if you are okay with this arrangement, otherwise speak up.

In other news, Radim is going to leave Red Hat soon.  However, he has
not been very much involved in upstream KVM development for some time,
and in the immediate future he is still going to help maintain kvm/queue
while I am on vacation.  Since not much is going to change, I will let
him decide whether he wants to keep the maintainer role after he leaves.

Cc: Sean Christopherson <sean.j.christopherson@intel.com>
Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
Cc: Wanpeng Li <wanpengli@tencent.com>
Cc: Jim Mattson <jmattson@google.com>
Cc: Joerg Roedel <joro@8bytes.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 MAINTAINERS | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 6498ebaca2f6..c569bd194d2a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -8738,14 +8738,6 @@ F:	virt/kvm/*
 F:	tools/kvm/
 F:	tools/testing/selftests/kvm/
 
-KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
-M:	Joerg Roedel <joro@8bytes.org>
-L:	kvm@vger.kernel.org
-W:	http://www.linux-kvm.org/
-S:	Maintained
-F:	arch/x86/include/asm/svm.h
-F:	arch/x86/kvm/svm.c
-
 KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
 M:	Marc Zyngier <marc.zyngier@arm.com>
 R:	James Morse <james.morse@arm.com>
@@ -8803,6 +8795,11 @@ F:	tools/testing/selftests/kvm/*/s390x/
 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
 M:	Paolo Bonzini <pbonzini@redhat.com>
 M:	Radim Krčmář <rkrcmar@redhat.com>
+R:	Sean Christopherson <sean.j.christopherson@intel.com>
+R:	Vitaly Kuznetsov <vkuznets@redhat.com>
+R:	Wanpeng Li <wanpengli@tencent.com>
+R:	Jim Mattson <jmattson@google.com>
+R:	Joerg Roedel <joro@8bytes.org>
 L:	kvm@vger.kernel.org
 W:	http://www.linux-kvm.org
 T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
@@ -8810,8 +8807,12 @@ S:	Supported
 F:	arch/x86/kvm/
 F:	arch/x86/kvm/*/
 F:	arch/x86/include/uapi/asm/kvm*
+F:	arch/x86/include/uapi/asm/vmx.h
+F:	arch/x86/include/uapi/asm/svm.h
 F:	arch/x86/include/asm/kvm*
 F:	arch/x86/include/asm/pvclock-abi.h
+F:	arch/x86/include/asm/svm.h
+F:	arch/x86/include/asm/vmx.h
 F:	arch/x86/kernel/kvm.c
 F:	arch/x86/kernel/kvmclock.c
 
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] MAINTAINERS: add KVM x86 reviewers
  2019-08-09  7:34 [PATCH] MAINTAINERS: add KVM x86 reviewers Paolo Bonzini
@ 2019-08-09  7:41 ` Joerg Roedel
  2019-08-09  7:43 ` Wanpeng Li
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Joerg Roedel @ 2019-08-09  7:41 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: linux-kernel, kvm, Sean Christopherson, Vitaly Kuznetsov,
	Wanpeng Li, Jim Mattson

On Fri, Aug 09, 2019 at 09:34:11AM +0200, Paolo Bonzini wrote:
> This is probably overdone---KVM x86 has quite a few contributors that
> usually review each other's patches, which is really helpful to me.
> Formalize this by listing them as reviewers.  I am including people
> with various expertise:
> 
> - Joerg for SVM (with designated reviewers, it makes more sense to have
> him in the main KVM/x86 stanza)
> 
> - Sean for MMU and VMX
> 
> - Jim for VMX
> 
> - Vitaly for Hyper-V and possibly SVM
> 
> - Wanpeng for LAPIC and paravirtualization.
> 
> Please ack if you are okay with this arrangement, otherwise speak up.
> 
> In other news, Radim is going to leave Red Hat soon.  However, he has
> not been very much involved in upstream KVM development for some time,
> and in the immediate future he is still going to help maintain kvm/queue
> while I am on vacation.  Since not much is going to change, I will let
> him decide whether he wants to keep the maintainer role after he leaves.
> 
> Cc: Sean Christopherson <sean.j.christopherson@intel.com>
> Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
> Cc: Wanpeng Li <wanpengli@tencent.com>
> Cc: Jim Mattson <jmattson@google.com>
> Cc: Joerg Roedel <joro@8bytes.org>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  MAINTAINERS | 17 +++++++++--------
>  1 file changed, 9 insertions(+), 8 deletions(-)

Acked-by: Joerg Roedel <joro@8bytes.org>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] MAINTAINERS: add KVM x86 reviewers
  2019-08-09  7:34 [PATCH] MAINTAINERS: add KVM x86 reviewers Paolo Bonzini
  2019-08-09  7:41 ` Joerg Roedel
@ 2019-08-09  7:43 ` Wanpeng Li
  2019-08-09  7:48 ` Vitaly Kuznetsov
  2019-08-09 16:19 ` Sean Christopherson
  3 siblings, 0 replies; 6+ messages in thread
From: Wanpeng Li @ 2019-08-09  7:43 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: LKML, kvm, Sean Christopherson, Vitaly Kuznetsov, Wanpeng Li,
	Jim Mattson, Joerg Roedel

On Fri, 9 Aug 2019 at 15:36, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> This is probably overdone---KVM x86 has quite a few contributors that
> usually review each other's patches, which is really helpful to me.
> Formalize this by listing them as reviewers.  I am including people
> with various expertise:
>
> - Joerg for SVM (with designated reviewers, it makes more sense to have
> him in the main KVM/x86 stanza)
>
> - Sean for MMU and VMX
>
> - Jim for VMX
>
> - Vitaly for Hyper-V and possibly SVM
>
> - Wanpeng for LAPIC and paravirtualization.
>
> Please ack if you are okay with this arrangement, otherwise speak up.
>
> In other news, Radim is going to leave Red Hat soon.  However, he has
> not been very much involved in upstream KVM development for some time,
> and in the immediate future he is still going to help maintain kvm/queue
> while I am on vacation.  Since not much is going to change, I will let
> him decide whether he wants to keep the maintainer role after he leaves.
>
> Cc: Sean Christopherson <sean.j.christopherson@intel.com>
> Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
> Cc: Wanpeng Li <wanpengli@tencent.com>
> Cc: Jim Mattson <jmattson@google.com>
> Cc: Joerg Roedel <joro@8bytes.org>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  MAINTAINERS | 17 +++++++++--------
>  1 file changed, 9 insertions(+), 8 deletions(-)

Acked-by: Wanpeng Li <wanpengli@tencent.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] MAINTAINERS: add KVM x86 reviewers
  2019-08-09  7:34 [PATCH] MAINTAINERS: add KVM x86 reviewers Paolo Bonzini
  2019-08-09  7:41 ` Joerg Roedel
  2019-08-09  7:43 ` Wanpeng Li
@ 2019-08-09  7:48 ` Vitaly Kuznetsov
  2019-08-09 16:19 ` Sean Christopherson
  3 siblings, 0 replies; 6+ messages in thread
From: Vitaly Kuznetsov @ 2019-08-09  7:48 UTC (permalink / raw)
  To: Paolo Bonzini, linux-kernel, kvm
  Cc: Sean Christopherson, Wanpeng Li, Jim Mattson, Joerg Roedel

Paolo Bonzini <pbonzini@redhat.com> writes:

> This is probably overdone---KVM x86 has quite a few contributors that
> usually review each other's patches, which is really helpful to me.
> Formalize this by listing them as reviewers.  I am including people
> with various expertise:
>
> - Joerg for SVM (with designated reviewers, it makes more sense to have
> him in the main KVM/x86 stanza)
>
> - Sean for MMU and VMX
>

Sean is known to be a great SVM reviewer too!

> - Jim for VMX
>
> - Vitaly for Hyper-V and possibly SVM
>
> - Wanpeng for LAPIC and paravirtualization.
>
> Please ack if you are okay with this arrangement, otherwise speak up.
>
> In other news, Radim is going to leave Red Hat soon.  However, he has
> not been very much involved in upstream KVM development for some time,
> and in the immediate future he is still going to help maintain kvm/queue
> while I am on vacation.  Since not much is going to change, I will let
> him decide whether he wants to keep the maintainer role after he leaves.
>
> Cc: Sean Christopherson <sean.j.christopherson@intel.com>
> Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
> Cc: Wanpeng Li <wanpengli@tencent.com>
> Cc: Jim Mattson <jmattson@google.com>
> Cc: Joerg Roedel <joro@8bytes.org>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  MAINTAINERS | 17 +++++++++--------
>  1 file changed, 9 insertions(+), 8 deletions(-)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 6498ebaca2f6..c569bd194d2a 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -8738,14 +8738,6 @@ F:	virt/kvm/*
>  F:	tools/kvm/
>  F:	tools/testing/selftests/kvm/
>  
> -KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd)
> -M:	Joerg Roedel <joro@8bytes.org>
> -L:	kvm@vger.kernel.org
> -W:	http://www.linux-kvm.org/
> -S:	Maintained
> -F:	arch/x86/include/asm/svm.h
> -F:	arch/x86/kvm/svm.c
> -
>  KERNEL VIRTUAL MACHINE FOR ARM/ARM64 (KVM/arm, KVM/arm64)
>  M:	Marc Zyngier <marc.zyngier@arm.com>
>  R:	James Morse <james.morse@arm.com>
> @@ -8803,6 +8795,11 @@ F:	tools/testing/selftests/kvm/*/s390x/
>  KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
>  M:	Paolo Bonzini <pbonzini@redhat.com>
>  M:	Radim Krčmář <rkrcmar@redhat.com>
> +R:	Sean Christopherson <sean.j.christopherson@intel.com>
> +R:	Vitaly Kuznetsov <vkuznets@redhat.com>

Acked-by: Vitaly Kuznetsov <vkuznets@redhat.com>

> +R:	Wanpeng Li <wanpengli@tencent.com>
> +R:	Jim Mattson <jmattson@google.com>
> +R:	Joerg Roedel <joro@8bytes.org>
>  L:	kvm@vger.kernel.org
>  W:	http://www.linux-kvm.org
>  T:	git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
> @@ -8810,8 +8807,12 @@ S:	Supported
>  F:	arch/x86/kvm/
>  F:	arch/x86/kvm/*/
>  F:	arch/x86/include/uapi/asm/kvm*
> +F:	arch/x86/include/uapi/asm/vmx.h
> +F:	arch/x86/include/uapi/asm/svm.h
>  F:	arch/x86/include/asm/kvm*
>  F:	arch/x86/include/asm/pvclock-abi.h
> +F:	arch/x86/include/asm/svm.h
> +F:	arch/x86/include/asm/vmx.h
>  F:	arch/x86/kernel/kvm.c
>  F:	arch/x86/kernel/kvmclock.c

-- 
Vitaly

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] MAINTAINERS: add KVM x86 reviewers
  2019-08-09  7:34 [PATCH] MAINTAINERS: add KVM x86 reviewers Paolo Bonzini
                   ` (2 preceding siblings ...)
  2019-08-09  7:48 ` Vitaly Kuznetsov
@ 2019-08-09 16:19 ` Sean Christopherson
  2019-08-09 16:39   ` Jim Mattson
  3 siblings, 1 reply; 6+ messages in thread
From: Sean Christopherson @ 2019-08-09 16:19 UTC (permalink / raw)
  To: Paolo Bonzini
  Cc: linux-kernel, kvm, Vitaly Kuznetsov, Wanpeng Li, Jim Mattson,
	Joerg Roedel

On Fri, Aug 09, 2019 at 09:34:11AM +0200, Paolo Bonzini wrote:
> This is probably overdone---KVM x86 has quite a few contributors that
> usually review each other's patches, which is really helpful to me.
> Formalize this by listing them as reviewers.  I am including people
> with various expertise:
> 
> - Joerg for SVM (with designated reviewers, it makes more sense to have
> him in the main KVM/x86 stanza)
> 
> - Sean for MMU and VMX
> 
> - Jim for VMX
> 
> - Vitaly for Hyper-V and possibly SVM
> 
> - Wanpeng for LAPIC and paravirtualization.
> 
> Please ack if you are okay with this arrangement, otherwise speak up.
> 
> In other news, Radim is going to leave Red Hat soon.  However, he has
> not been very much involved in upstream KVM development for some time,
> and in the immediate future he is still going to help maintain kvm/queue
> while I am on vacation.  Since not much is going to change, I will let
> him decide whether he wants to keep the maintainer role after he leaves.
> 
> Cc: Sean Christopherson <sean.j.christopherson@intel.com>
> Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
> Cc: Wanpeng Li <wanpengli@tencent.com>
> Cc: Jim Mattson <jmattson@google.com>
> Cc: Joerg Roedel <joro@8bytes.org>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---

Acked-by: Sean Christopherson <sean.j.christopherson@intel.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] MAINTAINERS: add KVM x86 reviewers
  2019-08-09 16:19 ` Sean Christopherson
@ 2019-08-09 16:39   ` Jim Mattson
  0 siblings, 0 replies; 6+ messages in thread
From: Jim Mattson @ 2019-08-09 16:39 UTC (permalink / raw)
  To: Sean Christopherson
  Cc: Paolo Bonzini, LKML, kvm list, Vitaly Kuznetsov, Wanpeng Li,
	Joerg Roedel

On Fri, Aug 9, 2019 at 9:19 AM Sean Christopherson
<sean.j.christopherson@intel.com> wrote:
>
> On Fri, Aug 09, 2019 at 09:34:11AM +0200, Paolo Bonzini wrote:
> > This is probably overdone---KVM x86 has quite a few contributors that
> > usually review each other's patches, which is really helpful to me.
> > Formalize this by listing them as reviewers.  I am including people
> > with various expertise:
> >
> > - Joerg for SVM (with designated reviewers, it makes more sense to have
> > him in the main KVM/x86 stanza)
> >
> > - Sean for MMU and VMX
> >
> > - Jim for VMX
> >
> > - Vitaly for Hyper-V and possibly SVM
> >
> > - Wanpeng for LAPIC and paravirtualization.
> >
> > Please ack if you are okay with this arrangement, otherwise speak up.
> >
> > In other news, Radim is going to leave Red Hat soon.  However, he has
> > not been very much involved in upstream KVM development for some time,
> > and in the immediate future he is still going to help maintain kvm/queue
> > while I am on vacation.  Since not much is going to change, I will let
> > him decide whether he wants to keep the maintainer role after he leaves.
> >
> > Cc: Sean Christopherson <sean.j.christopherson@intel.com>
> > Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
> > Cc: Wanpeng Li <wanpengli@tencent.com>
> > Cc: Jim Mattson <jmattson@google.com>
> > Cc: Joerg Roedel <joro@8bytes.org>
> > Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> > ---
Acked-by: Jim Mattson <jmattson@google.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-08-09 16:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-09  7:34 [PATCH] MAINTAINERS: add KVM x86 reviewers Paolo Bonzini
2019-08-09  7:41 ` Joerg Roedel
2019-08-09  7:43 ` Wanpeng Li
2019-08-09  7:48 ` Vitaly Kuznetsov
2019-08-09 16:19 ` Sean Christopherson
2019-08-09 16:39   ` Jim Mattson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).