From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na3sys010amx125.postini.com [74.125.245.125]) by kanga.kvack.org (Postfix) with SMTP id 7AFAB6B0031 for ; Thu, 25 Jul 2013 17:50:44 -0400 (EDT) Date: Thu, 25 Jul 2013 17:50:33 -0400 From: Johannes Weiner Subject: Re: [patch 3/5] x86: finish fault error path with fatal signal Message-ID: <20130725215033.GP715@cmpxchg.org> References: <20130714015112.FFCB7AF7@pobox.sk> <20130715154119.GA32435@dhcp22.suse.cz> <20130715160006.GB32435@dhcp22.suse.cz> <20130716153544.GX17812@cmpxchg.org> <20130716160905.GA20018@dhcp22.suse.cz> <20130716164830.GZ17812@cmpxchg.org> <20130719042124.GC17812@cmpxchg.org> <20130719042502.GF17812@cmpxchg.org> <20130724203205.GL715@cmpxchg.org> <51F18A99.7000306@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51F18A99.7000306@gmail.com> Sender: owner-linux-mm@kvack.org List-ID: To: KOSAKI Motohiro Cc: Michal Hocko , azurIt , linux-kernel@vger.kernel.org, linux-mm@kvack.org, cgroups mailinglist , KAMEZAWA Hiroyuki , righi.andrea@gmail.com On Thu, Jul 25, 2013 at 04:29:13PM -0400, KOSAKI Motohiro wrote: > (7/24/13 4:32 PM), Johannes Weiner wrote: > >@@ -1189,9 +1174,17 @@ good_area: > > */ > > fault = handle_mm_fault(mm, vma, address, flags); > > > >- if (unlikely(fault & (VM_FAULT_RETRY|VM_FAULT_ERROR))) { > >- if (mm_fault_error(regs, error_code, address, fault)) > >- return; > >+ /* > >+ * If we need to retry but a fatal signal is pending, handle the > >+ * signal first. We do not need to release the mmap_sem because it > >+ * would already be released in __lock_page_or_retry in mm/filemap.c. > >+ */ > >+ if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) > >+ return; > >+ > >+ if (unlikely(fault & VM_FAULT_ERROR)) { > >+ mm_fault_error(regs, error_code, address, fault); > >+ return; > > } > > When I made the patch you removed code, Ingo suggested we need put all rare case code > into if(unlikely()) block. Yes, this is purely micro optimization. But it is not costly > to maintain. Fair enough, thanks for the heads up! -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org