From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:18984 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728716AbfGAP3w (ORCPT ); Mon, 1 Jul 2019 11:29:52 -0400 Received: from pps.filterd (m0098399.ppops.net [127.0.0.1]) by mx0a-001b2d01.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x61FS1Jo122325 for ; Mon, 1 Jul 2019 11:29:51 -0400 Received: from e06smtp04.uk.ibm.com (e06smtp04.uk.ibm.com [195.75.94.100]) by mx0a-001b2d01.pphosted.com with ESMTP id 2tfkvbc77w-1 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=NOT) for ; Mon, 01 Jul 2019 11:29:51 -0400 Received: from localhost by e06smtp04.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 1 Jul 2019 16:29:49 +0100 Subject: Re: [GIT PULL 0/7] KVM: s390: add kselftests References: <20190701125848.276133-1-borntraeger@de.ibm.com> From: Christian Borntraeger Date: Mon, 1 Jul 2019 17:29:44 +0200 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Message-Id: Sender: linux-s390-owner@vger.kernel.org List-ID: To: Paolo Bonzini , =?UTF-8?B?UmFkaW0gS3LEjW3DocWZ?= Cc: KVM , Cornelia Huck , linux-s390 , Janosch Frank , David Hildenbrand On 01.07.19 16:07, Paolo Bonzini wrote: > On 01/07/19 14:58, Christian Borntraeger wrote: >> Paolo, Radim, >> >> kselftest for s390x. There is a small conflict with Linus tree due to >> 61cfcd545e42 ("kvm: tests: Sort tests in the Makefile alphabetically") >> which is part of kvm/master but not kvm/next. >> Other than that this looks good. > > Thanks! I'll delay this to after the first merge window pull request to > avoid the conflict. I do not have to do anything, correct? As an alternative I could rebase on top of rc6. > > Paolo > >> >> The following changes since commit f2c7c76c5d0a443053e94adb9f0918fa2fb85c3a: >> >> Linux 5.2-rc3 (2019-06-02 13:55:33 -0700) >> >> are available in the Git repository at: >> >> git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git tags/kvm-s390-next-5.3-1 >> >> for you to fetch changes up to 8343ba2d4820b1738bbb7cb40ec18ea0a3b0b331: >> >> KVM: selftests: enable pgste option for the linker on s390 (2019-06-04 14:05:38 +0200) >> >> ---------------------------------------------------------------- >> KVM: s390: add kselftests >> >> This is the initial implementation for KVM selftests on s390. >> >> ---------------------------------------------------------------- >> Christian Borntraeger (1): >> KVM: selftests: enable pgste option for the linker on s390 >> >> Thomas Huth (6): >> KVM: selftests: Guard struct kvm_vcpu_events with __KVM_HAVE_VCPU_EVENTS >> KVM: selftests: Introduce a VM_MODE_DEFAULT macro for the default bits >> KVM: selftests: Align memory region addresses to 1M on s390x >> KVM: selftests: Add processor code for s390x >> KVM: selftests: Add the sync_regs test for s390x >> KVM: selftests: Move kvm_create_max_vcpus test to generic code >> >> MAINTAINERS | 2 + >> tools/testing/selftests/kvm/Makefile | 14 +- >> tools/testing/selftests/kvm/include/kvm_util.h | 8 + >> .../selftests/kvm/include/s390x/processor.h | 22 ++ >> .../kvm/{x86_64 => }/kvm_create_max_vcpus.c | 3 +- >> .../testing/selftests/kvm/lib/aarch64/processor.c | 2 +- >> tools/testing/selftests/kvm/lib/kvm_util.c | 23 +- >> tools/testing/selftests/kvm/lib/s390x/processor.c | 286 +++++++++++++++++++++ >> tools/testing/selftests/kvm/lib/x86_64/processor.c | 2 +- >> tools/testing/selftests/kvm/s390x/sync_regs_test.c | 151 +++++++++++ >> 10 files changed, 503 insertions(+), 10 deletions(-) >> create mode 100644 tools/testing/selftests/kvm/include/s390x/processor.h >> rename tools/testing/selftests/kvm/{x86_64 => }/kvm_create_max_vcpus.c (93%) >> create mode 100644 tools/testing/selftests/kvm/lib/s390x/processor.c >> create mode 100644 tools/testing/selftests/kvm/s390x/sync_regs_test.c >> >