From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752065AbcDCNzW (ORCPT ); Sun, 3 Apr 2016 09:55:22 -0400 Received: from mail-ob0-f174.google.com ([209.85.214.174]:36764 "EHLO mail-ob0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751153AbcDCNzV (ORCPT ); Sun, 3 Apr 2016 09:55:21 -0400 MIME-Version: 1.0 In-Reply-To: References: <20fc047d926150cb08cb9b9f2923519b07ec1a15.1459605520.git.luto@kernel.org> <20160402185227.GB2538@pd.tnic> <20160402205248.GD2538@pd.tnic> <20160403080737.GA19007@pd.tnic> From: Andy Lutomirski Date: Sun, 3 Apr 2016 06:55:00 -0700 Message-ID: Subject: Re: [PATCH v5 4/9] x86/traps: Enable all exception handler callbacks early To: Linus Torvalds Cc: Borislav Petkov , "H. Peter Anvin" , Andy Lutomirski , X86 ML , Paolo Bonzini , Peter Zijlstra , KVM list , Arjan van de Ven , xen-devel , "linux-kernel@vger.kernel.org" , Andrew Morton 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 Sun, Apr 3, 2016 at 6:51 AM, Linus Torvalds wrote: > On Sun, Apr 3, 2016 at 3:07 AM, Borislav Petkov wrote: >> >> I'm wondering whether making it try to EFAULT correctly is the right >> thing to do... We're certainly more conservative if we panic and not >> allow some silently failed attempt at recovery which looks successful, >> to continue. > > No, please don't fail at early boot. > > Early boot is just about the *worst* situation to try to debug odd > failures, exactly since things like printk may not be reliable, and > things won't get logged etc. > > So particularly during early boot we should try as hard as possible > not to crash - even if it means not being able to log about a problem. > At least that way you have a hopefully working machine and can *maybe* > debug things. > In this regard, at least, my patch is the right approach. Calling the handler, whatever it is, is less likely to panic than refusing to call it. --Andy