From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S977056AbdDXUgi (ORCPT ); Mon, 24 Apr 2017 16:36:38 -0400 Received: from mga01.intel.com ([192.55.52.88]:12372 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S972338AbdDXUgb (ORCPT ); Mon, 24 Apr 2017 16:36:31 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,246,1488873600"; d="scan'208";a="93623049" Date: Mon, 24 Apr 2017 13:36:30 -0700 From: "Luck, Tony" To: Arnaldo Carvalho de Melo , Andy Whitcroft , Joe Perches Cc: Ingo Molnar , linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo Subject: Re: [PATCH 20/22] tools arch: Sync arch/x86/lib/memcpy_64.S with the kernel Message-ID: <20170424203630.GA18000@intel.com> References: <20170424195439.29875-1-acme@kernel.org> <20170424195439.29875-21-acme@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170424195439.29875-21-acme@kernel.org> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Apr 24, 2017 at 04:54:37PM -0300, Arnaldo Carvalho de Melo wrote: > From: Arnaldo Carvalho de Melo > > Just a minor fix done in: > > Fixes: 26a37ab319a2 ("x86/mce: Fix copy/paste error in exception table entries") > > Cc: Tony Luck > Link: http://lkml.kernel.org/n/tip-ni9jzdd5yxlail6pq8cuexw2@git.kernel.org > Signed-off-by: Arnaldo Carvalho de Melo > --- > tools/arch/x86/lib/memcpy_64.S | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/arch/x86/lib/memcpy_64.S b/tools/arch/x86/lib/memcpy_64.S > index 49e6ebac7e73..98dcc112b363 100644 > --- a/tools/arch/x86/lib/memcpy_64.S > +++ b/tools/arch/x86/lib/memcpy_64.S > @@ -286,7 +286,7 @@ ENDPROC(memcpy_mcsafe_unrolled) > _ASM_EXTABLE_FAULT(.L_copy_leading_bytes, .L_memcpy_mcsafe_fail) > _ASM_EXTABLE_FAULT(.L_cache_w0, .L_memcpy_mcsafe_fail) > _ASM_EXTABLE_FAULT(.L_cache_w1, .L_memcpy_mcsafe_fail) > - _ASM_EXTABLE_FAULT(.L_cache_w3, .L_memcpy_mcsafe_fail) > + _ASM_EXTABLE_FAULT(.L_cache_w2, .L_memcpy_mcsafe_fail) > _ASM_EXTABLE_FAULT(.L_cache_w3, .L_memcpy_mcsafe_fail) > _ASM_EXTABLE_FAULT(.L_cache_w4, .L_memcpy_mcsafe_fail) > _ASM_EXTABLE_FAULT(.L_cache_w5, .L_memcpy_mcsafe_fail) If we are going to have all these copies of kernel files below "tools/...", perhaps checkpatch could warn people touching one that the other needs the same update? -Tony