diff for duplicates of <20200324182048.GF5998@linux.intel.com> diff --git a/a/1.txt b/N1/1.txt index 8da97be..d5e5f09 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -10,7 +10,7 @@ On Tue, Mar 24, 2020 at 10:43:07AM +0100, Christian Borntraeger wrote: > vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR); > vm_vcpu_add(vm, VCPU_ID); > /* Fails with ENOSPC because the MMU can't create pages (no slots). */ -> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) = -1 && errno = ENOSPC, +> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) == -1 && errno == ENOSPC, > "Unexpected error code = %d", errno); > kvm_vm_free(vm); > @@ -36,3 +36,7 @@ return an error if there isn't at least one usable memslot. But, it'd be a little weird/kludgy on x86/VMX due to the existence of "private" memslots, i.e. the check should really fire on "no public memslots". At that point, I'm not sure whether the well defined errno would be worth the extra code. +_______________________________________________ +kvmarm mailing list +kvmarm@lists.cs.columbia.edu +https://lists.cs.columbia.edu/mailman/listinfo/kvmarm diff --git a/a/content_digest b/N1/content_digest index 7e0b54c..7c024ca 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -5,29 +5,25 @@ "ref\078b21097-52e4-b851-fc78-da3442fd0904@de.ibm.com\0" "From\0Sean Christopherson <sean.j.christopherson@intel.com>\0" "Subject\0Re: [PATCH v4 19/19] KVM: selftests: Add test for KVM_SET_USER_MEMORY_REGION\0" - "Date\0Tue, 24 Mar 2020 18:20:48 +0000\0" + "Date\0Tue, 24 Mar 2020 11:20:48 -0700\0" "To\0Christian Borntraeger <borntraeger@de.ibm.com>\0" - "Cc\0James Hogan <jhogan@kernel.org>" + "Cc\0Wanpeng Li <wanpengli@tencent.com>" + kvm@vger.kernel.org + David Hildenbrand <david@redhat.com> + James Hogan <jhogan@kernel.org> + linux-mips@vger.kernel.org Paul Mackerras <paulus@ozlabs.org> + kvmarm@lists.cs.columbia.edu Janosch Frank <frankja@linux.ibm.com> - Paolo Bonzini <pbonzini@redhat.com> Marc Zyngier <maz@kernel.org> - David Hildenbrand <david@redhat.com> - Cornelia Huck <cohuck@redhat.com> - Vitaly Kuznetsov <vkuznets@redhat.com> - Wanpeng Li <wanpengli@tencent.com> - Jim Mattson <jmattson@google.com> Joerg Roedel <joro@8bytes.org> - James Morse <james.morse@arm.com> - Julien Thierry <julien.thierry.kdev@gmail.com> - Suzuki K Poulose <suzuki.poulose@arm.com> - linux-mips@vger.kernel.org kvm-ppc@vger.kernel.org - kvm@vger.kernel.org linux-arm-kernel@lists.infradead.org - kvmarm@lists.cs.columbia.edu + Jim Mattson <jmattson@google.com> + Cornelia Huck <cohuck@redhat.com> linux-kernel@vger.kernel.org - Christoffer Dall <christoffer.dall@arm.com> + Paolo Bonzini <pbonzini@redhat.com> + Vitaly Kuznetsov <vkuznets@redhat.com> " Philippe Mathieu-Daud\303\251 <f4bug@amsat.org>\0" "\00:1\0" "b\0" @@ -43,7 +39,7 @@ "> vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR);\n" "> vm_vcpu_add(vm, VCPU_ID);\n" "> /* Fails with ENOSPC because the MMU can't create pages (no slots). */\n" - "> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) = -1 && errno = ENOSPC,\n" + "> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) == -1 && errno == ENOSPC,\n" "> \"Unexpected error code = %d\", errno);\n" "> kvm_vm_free(vm);\n" "> \n" @@ -68,6 +64,10 @@ "return an error if there isn't at least one usable memslot. But, it'd be a\n" "little weird/kludgy on x86/VMX due to the existence of \"private\" memslots,\n" "i.e. the check should really fire on \"no public memslots\". At that point,\n" - I'm not sure whether the well defined errno would be worth the extra code. + "I'm not sure whether the well defined errno would be worth the extra code.\n" + "_______________________________________________\n" + "kvmarm mailing list\n" + "kvmarm@lists.cs.columbia.edu\n" + https://lists.cs.columbia.edu/mailman/listinfo/kvmarm -477aa1832a8b8311a1beb4f53c20bdd5e86c122ad4c9114497f6f0ef2829b3db +b5111e24537ca721e0b992d4cac3bef2bc8fdc3ed65861ecab34635c0c3b2618
diff --git a/a/1.txt b/N2/1.txt index 8da97be..310d70c 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -10,7 +10,7 @@ On Tue, Mar 24, 2020 at 10:43:07AM +0100, Christian Borntraeger wrote: > vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR); > vm_vcpu_add(vm, VCPU_ID); > /* Fails with ENOSPC because the MMU can't create pages (no slots). */ -> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) = -1 && errno = ENOSPC, +> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) == -1 && errno == ENOSPC, > "Unexpected error code = %d", errno); > kvm_vm_free(vm); > diff --git a/a/content_digest b/N2/content_digest index 7e0b54c..4954559 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -5,7 +5,7 @@ "ref\078b21097-52e4-b851-fc78-da3442fd0904@de.ibm.com\0" "From\0Sean Christopherson <sean.j.christopherson@intel.com>\0" "Subject\0Re: [PATCH v4 19/19] KVM: selftests: Add test for KVM_SET_USER_MEMORY_REGION\0" - "Date\0Tue, 24 Mar 2020 18:20:48 +0000\0" + "Date\0Tue, 24 Mar 2020 11:20:48 -0700\0" "To\0Christian Borntraeger <borntraeger@de.ibm.com>\0" "Cc\0James Hogan <jhogan@kernel.org>" Paul Mackerras <paulus@ozlabs.org> @@ -43,7 +43,7 @@ "> vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR);\n" "> vm_vcpu_add(vm, VCPU_ID);\n" "> /* Fails with ENOSPC because the MMU can't create pages (no slots). */\n" - "> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) = -1 && errno = ENOSPC,\n" + "> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) == -1 && errno == ENOSPC,\n" "> \"Unexpected error code = %d\", errno);\n" "> kvm_vm_free(vm);\n" "> \n" @@ -70,4 +70,4 @@ "i.e. the check should really fire on \"no public memslots\". At that point,\n" I'm not sure whether the well defined errno would be worth the extra code. -477aa1832a8b8311a1beb4f53c20bdd5e86c122ad4c9114497f6f0ef2829b3db +e82b1b0e5445708c7a44a581eed6e6b6b7f7b5f6dba422c538e5c42a28b7305e
diff --git a/a/1.txt b/N3/1.txt index 8da97be..0b47108 100644 --- a/a/1.txt +++ b/N3/1.txt @@ -10,7 +10,7 @@ On Tue, Mar 24, 2020 at 10:43:07AM +0100, Christian Borntraeger wrote: > vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR); > vm_vcpu_add(vm, VCPU_ID); > /* Fails with ENOSPC because the MMU can't create pages (no slots). */ -> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) = -1 && errno = ENOSPC, +> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) == -1 && errno == ENOSPC, > "Unexpected error code = %d", errno); > kvm_vm_free(vm); > @@ -36,3 +36,8 @@ return an error if there isn't at least one usable memslot. But, it'd be a little weird/kludgy on x86/VMX due to the existence of "private" memslots, i.e. the check should really fire on "no public memslots". At that point, I'm not sure whether the well defined errno would be worth the extra code. + +_______________________________________________ +linux-arm-kernel mailing list +linux-arm-kernel@lists.infradead.org +http://lists.infradead.org/mailman/listinfo/linux-arm-kernel diff --git a/a/content_digest b/N3/content_digest index 7e0b54c..e2634cb 100644 --- a/a/content_digest +++ b/N3/content_digest @@ -5,29 +5,29 @@ "ref\078b21097-52e4-b851-fc78-da3442fd0904@de.ibm.com\0" "From\0Sean Christopherson <sean.j.christopherson@intel.com>\0" "Subject\0Re: [PATCH v4 19/19] KVM: selftests: Add test for KVM_SET_USER_MEMORY_REGION\0" - "Date\0Tue, 24 Mar 2020 18:20:48 +0000\0" + "Date\0Tue, 24 Mar 2020 11:20:48 -0700\0" "To\0Christian Borntraeger <borntraeger@de.ibm.com>\0" - "Cc\0James Hogan <jhogan@kernel.org>" + "Cc\0Wanpeng Li <wanpengli@tencent.com>" + kvm@vger.kernel.org + David Hildenbrand <david@redhat.com> + James Hogan <jhogan@kernel.org> + linux-mips@vger.kernel.org Paul Mackerras <paulus@ozlabs.org> + kvmarm@lists.cs.columbia.edu Janosch Frank <frankja@linux.ibm.com> - Paolo Bonzini <pbonzini@redhat.com> Marc Zyngier <maz@kernel.org> - David Hildenbrand <david@redhat.com> - Cornelia Huck <cohuck@redhat.com> - Vitaly Kuznetsov <vkuznets@redhat.com> - Wanpeng Li <wanpengli@tencent.com> - Jim Mattson <jmattson@google.com> Joerg Roedel <joro@8bytes.org> - James Morse <james.morse@arm.com> Julien Thierry <julien.thierry.kdev@gmail.com> Suzuki K Poulose <suzuki.poulose@arm.com> - linux-mips@vger.kernel.org kvm-ppc@vger.kernel.org - kvm@vger.kernel.org linux-arm-kernel@lists.infradead.org - kvmarm@lists.cs.columbia.edu - linux-kernel@vger.kernel.org + Jim Mattson <jmattson@google.com> + Cornelia Huck <cohuck@redhat.com> Christoffer Dall <christoffer.dall@arm.com> + linux-kernel@vger.kernel.org + James Morse <james.morse@arm.com> + Paolo Bonzini <pbonzini@redhat.com> + Vitaly Kuznetsov <vkuznets@redhat.com> " Philippe Mathieu-Daud\303\251 <f4bug@amsat.org>\0" "\00:1\0" "b\0" @@ -43,7 +43,7 @@ "> vm = vm_create(VM_MODE_DEFAULT, 0, O_RDWR);\n" "> vm_vcpu_add(vm, VCPU_ID);\n" "> /* Fails with ENOSPC because the MMU can't create pages (no slots). */\n" - "> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) = -1 && errno = ENOSPC,\n" + "> TEST_ASSERT(_vcpu_run(vm, VCPU_ID) == -1 && errno == ENOSPC,\n" "> \"Unexpected error code = %d\", errno);\n" "> kvm_vm_free(vm);\n" "> \n" @@ -68,6 +68,11 @@ "return an error if there isn't at least one usable memslot. But, it'd be a\n" "little weird/kludgy on x86/VMX due to the existence of \"private\" memslots,\n" "i.e. the check should really fire on \"no public memslots\". At that point,\n" - I'm not sure whether the well defined errno would be worth the extra code. + "I'm not sure whether the well defined errno would be worth the extra code.\n" + "\n" + "_______________________________________________\n" + "linux-arm-kernel mailing list\n" + "linux-arm-kernel@lists.infradead.org\n" + http://lists.infradead.org/mailman/listinfo/linux-arm-kernel -477aa1832a8b8311a1beb4f53c20bdd5e86c122ad4c9114497f6f0ef2829b3db +af11dbea2bec7c9140b33b107233ad8fea7552ccb3981ada704b6522d560089a
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.