From nobody Tue Apr 28 11:19:59 2026 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 4C8C4C433EF for ; Fri, 1 Jul 2022 06:56:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234735AbiGAG4h (ORCPT ); Fri, 1 Jul 2022 02:56:37 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54582 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229481AbiGAG4e (ORCPT ); Fri, 1 Jul 2022 02:56:34 -0400 Received: from mail.nfschina.com (unknown [IPv6:2400:dd01:100f:2:72e2:84ff:fe10:5f45]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 385C561D4D; Thu, 30 Jun 2022 23:56:34 -0700 (PDT) Received: from localhost (unknown [127.0.0.1]) by mail.nfschina.com (Postfix) with ESMTP id 7612B1E80D22; Fri, 1 Jul 2022 14:55:05 +0800 (CST) X-Virus-Scanned: amavisd-new at test.com Received: from mail.nfschina.com ([127.0.0.1]) by localhost (mail.nfschina.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05PgB2EeQt6V; Fri, 1 Jul 2022 14:55:02 +0800 (CST) Received: from localhost.localdomain (unknown [112.65.12.78]) (Authenticated sender: jiaming@nfschina.com) by mail.nfschina.com (Postfix) with ESMTPA id 1CD841E80D09; Fri, 1 Jul 2022 14:55:00 +0800 (CST) From: Zhang Jiaming To: pbonzini@redhat.com, seanjc@google.com, vkuznets@redhat.com, wanpengli@tencent.com, jmattson@google.com, joro@8bytes.org, tglx@linutronix.de, mingo@redhat.com, bp@alien8.de, dave.hansen@linux.intel.com, x86@kernel.org, hpa@zytor.com Cc: kvm@vger.kernel.org, linux-kernel@vger.kernel.org, liqiong@nfschina.com, renyu@nfschina.com, Zhang Jiaming Subject: [PATCH] KVM: LAPIC: Fix a spelling mistake in comments Date: Fri, 1 Jul 2022 14:55:58 +0800 Message-Id: <20220701065558.9073-1-jiaming@nfschina.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" There is a typo (writeable) in kvm_apic_match_physical_addr's comments. Fix it. Signed-off-by: Zhang Jiaming --- arch/x86/kvm/lapic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c index 0e68b4c937fc..ace161bf3744 100644 --- a/arch/x86/kvm/lapic.c +++ b/arch/x86/kvm/lapic.c @@ -808,7 +808,7 @@ static bool kvm_apic_match_physical_addr(struct kvm_lap= ic *apic, u32 mda) * Hotplug hack: Make LAPIC in xAPIC mode also accept interrupts as if * it were in x2APIC mode. Hotplugged VCPUs start in xAPIC mode and * this allows unique addressing of VCPUs with APIC ID over 0xff. - * The 0xff condition is needed because writeable xAPIC ID. + * The 0xff condition is needed because writable xAPIC ID. */ if (kvm_x2apic_id(apic) > 0xff && mda =3D=3D kvm_x2apic_id(apic)) return true; --=20 2.25.1