Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752934AbbL0MUS (ORCPT ); Sun, 27 Dec 2015 07:20:18 -0500 Received: from mail-ob0-f172.google.com ([209.85.214.172]:34625 "EHLO mail-ob0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752376AbbL0MUP (ORCPT ); Sun, 27 Dec 2015 07:20:15 -0500 MIME-Version: 1.0 In-Reply-To: <20151227100919.GA19398@nazgul.tnic> References: <20151224214632.GF4128@pd.tnic> <20151225114937.GA862@pd.tnic> <5FBC1CF1-095B-466D-85D6-832FBFA98364@intel.com> <20151226103252.GA21988@pd.tnic> <20151227100919.GA19398@nazgul.tnic> From: Andy Lutomirski Date: Sun, 27 Dec 2015 04:19:54 -0800 Message-ID: Subject: Re: [PATCHV5 3/3] x86, ras: Add __mcsafe_copy() function to recover from machine checks To: Borislav Petkov Cc: Tony Luck , linux-nvdimm , X86 ML , "elliott@hpe.com" , "linux-mm@kvack.org" , Andrew Morton , "Williams, Dan J" , Ingo Molnar , "linux-kernel@vger.kernel.org" Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1328 Lines: 36 On Sun, Dec 27, 2015 at 2:09 AM, Borislav Petkov wrote: > On Sat, Dec 26, 2015 at 10:57:26PM -0800, Tony Luck wrote: >> ... will get the right value. Maybe this would still work out >> if the fixup is a 31-bit value plus a flag, but the external >> tool thinks it is a 32-bit value? I'd have to ponder that. > > I still fail to see why do we need to make it so complicated and can't > do something like: > > > fixup_exception: > ... > > #ifdef CONFIG_MCE_KERNEL_RECOVERY > if (regs->ip >= (unsigned long)__mcsafe_copy && > regs->ip <= (unsigned long)__mcsafe_copy_end) > run_special_handler(); > #endif > > and that special handler does all the stuff we want. And we pass > X86_TRAP* etc through fixup_exception along with whatever else we > need from the trap handler... > > Hmmm? You certainly can, but it doesn't scale well to multiple users of similar mechanisms. It also prevents you from using the same mechanism in anything that could be inlined, which is IMO kind of unfortunate. --Andy -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/