From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932613AbdJaPKr (ORCPT ); Tue, 31 Oct 2017 11:10:47 -0400 Received: from merlin.infradead.org ([205.233.59.134]:49212 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932510AbdJaPKp (ORCPT ); Tue, 31 Oct 2017 11:10:45 -0400 Date: Tue, 31 Oct 2017 16:10:24 +0100 From: Peter Zijlstra To: Michal Hocko Cc: Dmitry Vyukov , Byungchul Park , syzbot , Andrew Morton , Dan Williams , Johannes Weiner , Jan Kara , jglisse@redhat.com, LKML , linux-mm@kvack.org, shli@fb.com, syzkaller-bugs@googlegroups.com, Thomas Gleixner , Vlastimil Babka , ying.huang@intel.com, kernel-team@lge.com Subject: Re: possible deadlock in lru_add_drain_all Message-ID: <20171031151024.uhbaynabzq6k7fbc@hirez.programming.kicks-ass.net> References: <20171027134234.7dyx4oshjwd44vqx@dhcp22.suse.cz> <20171030082203.4xvq2af25shfci2z@dhcp22.suse.cz> <20171030100921.GA18085@X58A-UD3R> <20171030151009.ip4k7nwan7muouca@hirez.programming.kicks-ass.net> <20171031131333.pr2ophwd2bsvxc3l@dhcp22.suse.cz> <20171031135104.rnlytzawi2xzuih3@hirez.programming.kicks-ass.net> <20171031145247.5kjbanjqged34lbp@hirez.programming.kicks-ass.net> <20171031145804.ulrpk245ih6t7q7h@dhcp22.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171031145804.ulrpk245ih6t7q7h@dhcp22.suse.cz> User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Oct 31, 2017 at 03:58:04PM +0100, Michal Hocko wrote: > On Tue 31-10-17 15:52:47, Peter Zijlstra wrote: > [...] > > If we want to save those stacks; we have to save a stacktrace on _every_ > > lock acquire, simply because we never know ahead of time if there will > > be a new link. Doing this is _expensive_. > > > > Furthermore, the space into which we store stacktraces is limited; > > since memory allocators use locks we can't very well use dynamic memory > > for lockdep -- that would give recursive and robustness issues. > > Wouldn't stackdepot help here? Sure the first stack unwind will be > costly but then you amortize that over time. It is quite likely that > locks are held from same addresses. I'm not familiar with that; but looking at it, no. It uses alloc_pages() which has locks in and it has a lock itself. Also, it seems to index the stack based on the entire stacktrace; which means you actually have to have the stacktrace first. And doing stacktraces on every single acquire is horrendously expensive. The idea just saves on storage, it doesn't help with having to do a gazillion of unwinds in the first place.