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 X-Spam-Level: X-Spam-Status: No, score=-15.1 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 12CFEC433E6 for ; Wed, 24 Feb 2021 16:24:57 +0000 (UTC) Received: from lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 13BBD614A5 for ; Wed, 24 Feb 2021 16:24:56 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 13BBD614A5 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4Dm1Ty3C2jz3bcv for ; Thu, 25 Feb 2021 03:24:54 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=XOtvB//P; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=none (no SPF record) smtp.mailfrom=infradead.org (client-ip=2001:8b0:10b:1231::1; helo=merlin.infradead.org; envelope-from=rdunlap@infradead.org; receiver=) Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4Dm1TM30V9z30Ny for ; Thu, 25 Feb 2021 03:24:21 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:Content-Type: In-Reply-To:MIME-Version:Date:Message-ID:From:References:To:Subject:Sender: Reply-To:Cc:Content-ID:Content-Description; bh=XDaX4omTjZoiDYDyauuQ0b/yWEWf9Flu16sKDshulWc=; b=XOtvB//PMhdv4BX9kKtzYr8ZxI 91yBE42T7mJIqmn0dY6NROQBdGmyEI/Cb0E3mkt6JEtamNbXtdHvt3lWXAD+6+Uzlj7CYTAN+swuB duLQlU6n+UXbRK+92Y7kFN/oYNdtfgWbBUw9TTumKrtZnu4/cAehhuvlYbIHJyvNVPsj34GXF225w 2zqOxQAR4Mj41zVxbCq/uZ5uJAtey3Jua16A1Cw1MnFbOylJkwR45VnJ36D6qlRB426TmlUuhNwI1 acDi7D6/2KWm3MiKrfUhsKvqbQ1IBFlEAhIOLzk9EUZ4yypSRvBvOypN9Rto9GSW5LRDFCOmA16dC +PKxB7QA==; Received: from [2601:1c0:6280:3f0::d05b] by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1lEwxS-0002rR-MM; Wed, 24 Feb 2021 16:24:15 +0000 Subject: Re: [PATCH] arch: powerpc: kernel: Change droping to dropping in the file traps.c To: Bhaskar Chowdhury , mpe@ellerman.id.au, benh@kernel.crashing.org, paulus@samba.org, christophe.leroy@csgroup.eu, npiggin@gmail.com, jniethe5@gmail.com, alistair@popple.id.au, mikey@neuling.org, linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org References: <20210224075547.763063-1-unixbhaskar@gmail.com> From: Randy Dunlap Message-ID: <7b810bb2-4704-4882-79ce-3e41efc9ea55@infradead.org> Date: Wed, 24 Feb 2021 08:24:09 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.0 MIME-Version: 1.0 In-Reply-To: <20210224075547.763063-1-unixbhaskar@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" On 2/23/21 11:55 PM, Bhaskar Chowdhury wrote: > > s/droping/dropping/ > > Signed-off-by: Bhaskar Chowdhury Acked-by: Randy Dunlap > --- > arch/powerpc/kernel/traps.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c > index 1583fd1c6010..83a53b67412a 100644 > --- a/arch/powerpc/kernel/traps.c > +++ b/arch/powerpc/kernel/traps.c > @@ -405,7 +405,7 @@ void hv_nmi_check_nonrecoverable(struct pt_regs *regs) > * Now test if the interrupt has hit a range that may be using > * HSPRG1 without having RI=0 (i.e., an HSRR interrupt). The > * problem ranges all run un-relocated. Test real and virt modes > - * at the same time by droping the high bit of the nip (virt mode > + * at the same time by dropping the high bit of the nip (virt mode > * entry points still have the +0x4000 offset). > */ > nip &= ~0xc000000000000000ULL; > -- > 2.30.1 > -- ~Randy