Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752253AbdGFOtB (ORCPT ); Thu, 6 Jul 2017 10:49:01 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:57489 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751853AbdGFOtA (ORCPT ); Thu, 6 Jul 2017 10:49:00 -0400 Date: Thu, 6 Jul 2017 16:48:52 +0200 From: Peter Zijlstra To: Laurent Dufour Cc: paulmck@linux.vnet.ibm.com, akpm@linux-foundation.org, kirill@shutemov.name, ak@linux.intel.com, mhocko@kernel.org, dave@stgolabs.net, jack@suse.cz, Matthew Wilcox , linux-kernel@vger.kernel.org, linux-mm@kvack.org, haren@linux.vnet.ibm.com, khandual@linux.vnet.ibm.com, npiggin@gmail.com, bsingharora@gmail.com, Tim Chen Subject: Re: [RFC v5 09/11] mm: Try spin lock in speculative path Message-ID: <20170706144852.fwtuygj4ikcjmqat@hirez.programming.kicks-ass.net> References: <1497635555-25679-1-git-send-email-ldufour@linux.vnet.ibm.com> <1497635555-25679-10-git-send-email-ldufour@linux.vnet.ibm.com> <20170705185023.xlqko7wgepwsny5g@hirez.programming.kicks-ass.net> <3af22f3b-03ab-1d37-b2b1-b616adde7eb6@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3af22f3b-03ab-1d37-b2b1-b616adde7eb6@linux.vnet.ibm.com> User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1471 Lines: 38 On Thu, Jul 06, 2017 at 03:46:59PM +0200, Laurent Dufour wrote: > On 05/07/2017 20:50, Peter Zijlstra wrote: > > On Fri, Jun 16, 2017 at 07:52:33PM +0200, Laurent Dufour wrote: > >> @@ -2294,8 +2295,19 @@ static bool pte_map_lock(struct vm_fault *vmf) > >> if (vma_has_changed(vmf->vma, vmf->sequence)) > >> goto out; > >> > >> - pte = pte_offset_map_lock(vmf->vma->vm_mm, vmf->pmd, > >> - vmf->address, &ptl); > >> + ptl = pte_lockptr(vmf->vma->vm_mm, vmf->pmd); > >> + pte = pte_offset_map(vmf->pmd, vmf->address); > >> + if (unlikely(!spin_trylock(ptl))) { > >> + pte_unmap(pte); > >> + goto out; > >> + } > >> + > >> if (vma_has_changed(vmf->vma, vmf->sequence)) { > >> pte_unmap_unlock(pte, ptl); > >> goto out; > > > > Right, so if you look at my earlier patches you'll see I did something > > quite disgusting here. > > > > Not sure that wants repeating, but I cannot remember why I thought this > > deadlock didn't exist anymore. > > Regarding the deadlock I did face it on my Power victim node, so I guess it > is still there, and the stack traces are quiet explicit. > Am I missing something here ? No, you are right in that the deadlock is quite real. What I cannot remember is what made me think to remove the really 'wonderful' code I had to deal with it. That said, you might want to look at how often you terminate the speculation because of your trylock failing. If that shows up at all we might need to do something about it.