From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B940DC761A6 for ; Thu, 6 Apr 2023 16:24:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239389AbjDFQYM (ORCPT ); Thu, 6 Apr 2023 12:24:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38658 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239399AbjDFQYG (ORCPT ); Thu, 6 Apr 2023 12:24:06 -0400 Received: from out-34.mta0.migadu.com (out-34.mta0.migadu.com [91.218.175.34]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A6C0E55A3 for ; Thu, 6 Apr 2023 09:24:03 -0700 (PDT) Date: Thu, 6 Apr 2023 16:23:56 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1680798240; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=zWTa+WmjvRizEenNCYTpznSZcah8zt6cqf7cKCxX7a0=; b=YpT2Fq4n3IHoq0NhqGWEGK0xXZgdwSqB4fNw/EmbCwH+l+E/MrrjoaME/5opFFWMdi+c+R ZE4p8Y5lVIJD1YkvcVRijUkT7UmIcs5v809lkhdseoQq1syH+eK2vgk7gXhKeHpyl6Zl0Z QMSkBoDf4Wai6xmXfI6vbezrnWtEGTE= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Oliver Upton To: Colin Ian King Cc: Marc Zyngier , James Morse , Suzuki K Poulose , Zenghui Yu , Paolo Bonzini , Shuah Khan , linux-arm-kernel@lists.infradead.org, kvmarm@lists.linux.dev, kvm@vger.kernel.org, linux-kselftest@vger.kernel.org, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH][next] KVM: selftests: Fix spelling mistake "KVM_HYPERCAL_EXIT_SMC" -> "KVM_HYPERCALL_EXIT_SMC" Message-ID: References: <20230406080226.122955-1-colin.i.king@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230406080226.122955-1-colin.i.king@gmail.com> X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 Reviewed-by: Oliver Upton > --- > 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