From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751759AbaB1LLU (ORCPT ); Fri, 28 Feb 2014 06:11:20 -0500 Received: from merlin.infradead.org ([205.233.59.134]:52723 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751157AbaB1LLS (ORCPT ); Fri, 28 Feb 2014 06:11:18 -0500 Date: Fri, 28 Feb 2014 12:11:11 +0100 From: Peter Zijlstra To: Steven Rostedt Cc: Vince Weaver , "H. Peter Anvin" , Linux Kernel , Ingo Molnar Subject: Re: perf_fuzzer compiled for x32 causes reboot Message-ID: <20140228111111.GI27965@twins.programming.kicks-ass.net> References: <20140225094352.73e0e28c@gandalf.local.home> <20140227173150.4e5ed747@gandalf.local.home> <530FC1C6.5040209@zytor.com> <20140227215726.7018c861@gandalf.local.home> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140227215726.7018c861@gandalf.local.home> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Feb 27, 2014 at 09:57:26PM -0500, Steven Rostedt wrote: > @@ -512,8 +508,21 @@ static inline void nmi_nesting_postprocess(void) > dotraplinkage notrace __kprobes void > do_nmi(struct pt_regs *regs, long error_code) > { > + unsigned long cr2; > + > nmi_nesting_preprocess(regs); > > + /* > + * Save off the CR2 register. If we take a page fault in the NMI then > + * it could corrupt the CR2 value. If the NMI preempts a page fault > + * handler before it was able to read the CR2 register, and then the > + * NMI itself takes a page fault, the page fault that was preempted > + * will read the information from the NMI page fault and not the > + * origin fault. Save it off and restore it if it changes. > + * Use the r12 callee-saved register. You might want to make that line go away :-) > + */ > + cr2 = read_cr2(); > + > nmi_enter(); > > inc_irq_stat(__nmi_count); > @@ -523,6 +532,10 @@ do_nmi(struct pt_regs *regs, long error_code) > > nmi_exit(); > > + /* Reads are cheaper than writes */ > + if (unlikely(cr2 != read_cr2())) > + write_cr2(cr2); > + > /* On i386, may loop back to preprocess */ > nmi_nesting_postprocess(); > }