* [PATCH][next] KVM: selftests: Fix spelling mistake "KVM_HYPERCAL_EXIT_SMC" -> "KVM_HYPERCALL_EXIT_SMC"
@ 2023-04-06 8:02 Colin Ian King
2023-04-06 16:23 ` Oliver Upton
2023-04-08 14:43 ` Marc Zyngier
0 siblings, 2 replies; 3+ messages in thread
From: Colin Ian King @ 2023-04-06 8:02 UTC (permalink / raw)
To: Marc Zyngier, Oliver Upton, James Morse, Suzuki K Poulose,
Zenghui Yu, Paolo Bonzini, Shuah Khan, linux-arm-kernel, kvmarm,
kvm, linux-kselftest
Cc: kernel-janitors, linux-kernel
There is a spelling mistake in a test assert message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
tools/testing/selftests/kvm/aarch64/smccc_filter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/selftests/kvm/aarch64/smccc_filter.c b/tools/testing/selftests/kvm/aarch64/smccc_filter.c
index 0f9db0641847..82650313451a 100644
--- a/tools/testing/selftests/kvm/aarch64/smccc_filter.c
+++ b/tools/testing/selftests/kvm/aarch64/smccc_filter.c
@@ -211,7 +211,7 @@ static void expect_call_fwd_to_user(struct kvm_vcpu *vcpu, uint32_t func_id,
"KVM_HYPERCALL_EXIT_SMC is not set");
else
TEST_ASSERT(!(run->hypercall.flags & KVM_HYPERCALL_EXIT_SMC),
- "KVM_HYPERCAL_EXIT_SMC is set");
+ "KVM_HYPERCALL_EXIT_SMC is set");
}
/* SMCCC calls forwarded to userspace cause KVM_EXIT_HYPERCALL exits */
--
2.30.2
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH][next] KVM: selftests: Fix spelling mistake "KVM_HYPERCAL_EXIT_SMC" -> "KVM_HYPERCALL_EXIT_SMC"
2023-04-06 8:02 [PATCH][next] KVM: selftests: Fix spelling mistake "KVM_HYPERCAL_EXIT_SMC" -> "KVM_HYPERCALL_EXIT_SMC" Colin Ian King
@ 2023-04-06 16:23 ` Oliver Upton
2023-04-08 14:43 ` Marc Zyngier
1 sibling, 0 replies; 3+ messages in thread
From: Oliver Upton @ 2023-04-06 16:23 UTC (permalink / raw)
To: Colin Ian King
Cc: Marc Zyngier, James Morse, Suzuki K Poulose, Zenghui Yu,
Paolo Bonzini, Shuah Khan, linux-arm-kernel, kvmarm, kvm,
linux-kselftest, kernel-janitors, linux-kernel
On Thu, Apr 06, 2023 at 09:02:26AM +0100, Colin Ian King wrote:
> There is a spelling mistake in a test assert message. Fix it.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Oliver Upton <oliver.upton@linux.dev>
> ---
> tools/testing/selftests/kvm/aarch64/smccc_filter.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/testing/selftests/kvm/aarch64/smccc_filter.c b/tools/testing/selftests/kvm/aarch64/smccc_filter.c
> index 0f9db0641847..82650313451a 100644
> --- a/tools/testing/selftests/kvm/aarch64/smccc_filter.c
> +++ b/tools/testing/selftests/kvm/aarch64/smccc_filter.c
> @@ -211,7 +211,7 @@ static void expect_call_fwd_to_user(struct kvm_vcpu *vcpu, uint32_t func_id,
> "KVM_HYPERCALL_EXIT_SMC is not set");
> else
> TEST_ASSERT(!(run->hypercall.flags & KVM_HYPERCALL_EXIT_SMC),
> - "KVM_HYPERCAL_EXIT_SMC is set");
> + "KVM_HYPERCALL_EXIT_SMC is set");
> }
>
> /* SMCCC calls forwarded to userspace cause KVM_EXIT_HYPERCALL exits */
> --
> 2.30.2
>
--
Thanks,
Oliver
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH][next] KVM: selftests: Fix spelling mistake "KVM_HYPERCAL_EXIT_SMC" -> "KVM_HYPERCALL_EXIT_SMC"
2023-04-06 8:02 [PATCH][next] KVM: selftests: Fix spelling mistake "KVM_HYPERCAL_EXIT_SMC" -> "KVM_HYPERCALL_EXIT_SMC" Colin Ian King
2023-04-06 16:23 ` Oliver Upton
@ 2023-04-08 14:43 ` Marc Zyngier
1 sibling, 0 replies; 3+ messages in thread
From: Marc Zyngier @ 2023-04-08 14:43 UTC (permalink / raw)
To: James Morse, kvm, Zenghui Yu, linux-arm-kernel, kvmarm,
Shuah Khan, Oliver Upton, Colin Ian King, Suzuki K Poulose,
Paolo Bonzini, linux-kselftest
Cc: linux-kernel, kernel-janitors
On Thu, 6 Apr 2023 09:02:26 +0100, Colin Ian King wrote:
> There is a spelling mistake in a test assert message. Fix it.
Applied to next, thanks!
[1/1] KVM: selftests: Fix spelling mistake "KVM_HYPERCAL_EXIT_SMC" -> "KVM_HYPERCALL_EXIT_SMC"
commit: c5284f6d8ce2b9cf96643da441862434233a4ea3
Cheers,
M.
--
Without deviation from the norm, progress is not possible.
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-04-08 14:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-06 8:02 [PATCH][next] KVM: selftests: Fix spelling mistake "KVM_HYPERCAL_EXIT_SMC" -> "KVM_HYPERCALL_EXIT_SMC" Colin Ian King
2023-04-06 16:23 ` Oliver Upton
2023-04-08 14:43 ` Marc Zyngier
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).