On Thu, Aug 10, 2017 at 02:53:27PM +0200, Andrew Jones wrote: > Remove nonexistent files, allow less awkward expressions when > extracting arch-specific information, and only return relevant > information when using arch-specific expressions. The arch- > specific expressions are now: > > /KVM/ -- All KVM > /\(KVM\)|\(KVM\/x86\)/ -- X86 > /\(KVM\)|\(KVM\/x86\)|\(KVM\/amd\)/ -- X86 plus AMD > /\(KVM\)|\(KVM\/arm\)/ -- ARM > /\(KVM\)|\(KVM\/arm\)|\(KVM\/arm64\)/ -- ARM plus ARM64 > /\(KVM\)|\(KVM\/powerpc\)/ -- POWERPC > /\(KVM\)|\(KVM\/s390\)/ -- S390 > /\(KVM\)|\(KVM\/mips\)/ -- MIPS Hmm, maybe this should have been an RFC, as I have a request for comment on whether or not we're concerned with breaking current scripts that depend on the old format. Any script using an expression like /\(KVM\) FOR POWERPC/ will now fail, as I've moved/modified "(KVM)". Thanks, drew > > Signed-off-by: Andrew Jones <drjones@xxxxxxxxxx> > --- > MAINTAINERS | 31 ++++++++++++++++++++----------- > 1 file changed, 20 insertions(+), 11 deletions(-) > > diff --git a/MAINTAINERS b/MAINTAINERS > index 84d6a8277cbd..1e84c21bcb9f 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -7387,18 +7387,28 @@ L: kvm@xxxxxxxxxxxxxxx > W: http://www.linux-kvm.org > T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git > S: Supported > -F: Documentation/*/kvm*.txt > F: Documentation/virtual/kvm/ > -F: arch/*/kvm/ > -F: arch/x86/kernel/kvm.c > -F: arch/x86/kernel/kvmclock.c > -F: arch/*/include/asm/kvm* > -F: include/linux/kvm* > +F: include/uapi/asm-generic/kvm* > F: include/uapi/linux/kvm* > -F: virt/kvm/ > +F: include/asm-generic/kvm* > +F: include/linux/kvm* > +F: include/kvm/iodev.h > +F: virt/kvm/* > F: tools/kvm/ > > -KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V > +KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86) > +M: Paolo Bonzini <pbonzini@xxxxxxxxxx> > +M: Radim Krčmář <rkrcmar@xxxxxxxxxx> > +L: kvm@xxxxxxxxxxxxxxx > +W: http://www.linux-kvm.org > +T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git > +S: Supported > +F: arch/x86/kvm/ > +F: arch/x86/include/asm/kvm* > +F: arch/x86/kernel/kvm.c > +F: arch/x86/kernel/kvmclock.c > + > +KERNEL VIRTUAL MACHINE FOR AMD-V (KVM/amd) > M: Joerg Roedel <joro@xxxxxxxxxx> > L: kvm@xxxxxxxxxxxxxxx > W: http://www.linux-kvm.org/ > @@ -7406,7 +7416,7 @@ S: Maintained > F: arch/x86/include/asm/svm.h > F: arch/x86/kvm/svm.c > > -KERNEL VIRTUAL MACHINE (KVM) FOR ARM > +KERNEL VIRTUAL MACHINE FOR ARM (KVM/arm) > M: Christoffer Dall <christoffer.dall@xxxxxxxxxx> > M: Marc Zyngier <marc.zyngier@xxxxxxx> > L: linux-arm-kernel@xxxxxxxxxxxxxxxxxxx (moderated for non-subscribers) > @@ -7420,7 +7430,7 @@ F: arch/arm/kvm/ > F: virt/kvm/arm/ > F: include/kvm/arm_* > > -KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC > +KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc) > M: Alexander Graf <agraf@xxxxxxxx> > L: kvm-ppc@xxxxxxxxxxxxxxx > W: http://www.linux-kvm.org/ > @@ -7454,7 +7464,6 @@ L: linux-s390@xxxxxxxxxxxxxxx > W: http://www.ibm.com/developerworks/linux/linux390/ > T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git > S: Supported > -F: Documentation/s390/kvm.txt > F: arch/s390/include/asm/kvm* > F: arch/s390/kvm/ > F: arch/s390/mm/gmap.c > -- > 2.13.4 >