From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762259AbcALAal (ORCPT ); Mon, 11 Jan 2016 19:30:41 -0500 Received: from mail-oi0-f41.google.com ([209.85.218.41]:35588 "EHLO mail-oi0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760014AbcALAaj (ORCPT ); Mon, 11 Jan 2016 19:30:39 -0500 MIME-Version: 1.0 In-Reply-To: <20160112002645.GA10179@agluck-desk.sc.intel.com> References: <19f6403f2b04d3448ed2ac958e656645d8b6e70c.1452297867.git.tony.luck@intel.com> <20160112002645.GA10179@agluck-desk.sc.intel.com> From: Andy Lutomirski Date: Mon, 11 Jan 2016 16:30:19 -0800 Message-ID: Subject: Re: [PATCH v8 3/3] x86, mce: Add __mcsafe_copy() To: "Luck, Tony" Cc: linux-nvdimm , Dan Williams , Borislav Petkov , "linux-kernel@vger.kernel.org" , Andrew Morton , Robert , Ingo Molnar , "linux-mm@kvack.org" , X86 ML Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jan 11, 2016 at 4:26 PM, Luck, Tony wrote: > On Fri, Jan 08, 2016 at 05:49:30PM -0800, Andy Lutomirski wrote: >> Also, what's the sfence for? You don't seem to be using any >> non-temporal operations. > > So I deleted the "sfence" and now I just have a comment > at the 100: label. > > 37: > shl $6,%ecx > lea -48(%ecx,%edx),%edx > jmp 100f > 38: > shl $6,%ecx > lea -56(%ecx,%edx),%edx > jmp 100f > 39: > lea (%rdx,%rcx,8),%rdx > jmp 100f > 40: > mov %ecx,%edx > 100: > /* %rax set the fault number in fixup_exception() */ > ret > > Should I just change all the "jmp 100f" into "ret"? There > aren't any tools that will be confused that the function > has 10 returns, are there? > Given that gcc does that too, it should be fine. --Andy\