From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752823AbdLEJTc (ORCPT ); Tue, 5 Dec 2017 04:19:32 -0500 Received: from mail-pg0-f48.google.com ([74.125.83.48]:46853 "EHLO mail-pg0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751840AbdLEJT2 (ORCPT ); Tue, 5 Dec 2017 04:19:28 -0500 X-Google-Smtp-Source: AGs4zMbbMthYOkbD/j2+2S99/GVno05b/vu8B6Z4V2wntJFV7dMZ2dh/bY4YyRzkE66C2fhCPgEadp4xM8rLNGnrdVk= MIME-Version: 1.0 In-Reply-To: <80ba65b6-d0c2-2d3a-779b-a134af8a9054@lge.com> References: <94eb2c0d010a4e7897055f70535b@google.com> <20171204083339.GF8365@quack2.suse.cz> <80ba65b6-d0c2-2d3a-779b-a134af8a9054@lge.com> From: Dmitry Vyukov Date: Tue, 5 Dec 2017 10:19:07 +0100 Message-ID: Subject: Re: possible deadlock in generic_file_write_iter (2) To: Byungchul Park Cc: Jan Kara , syzbot , Andrew Morton , Johannes Weiner , jlayton@redhat.com, LKML , Linux-MM , Mel Gorman , npiggin@gmail.com, rgoldwyn@suse.com, syzkaller-bugs@googlegroups.com, Peter Zijlstra , kernel-team@lge.com 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 Tue, Dec 5, 2017 at 5:58 AM, Byungchul Park wrote: > On 12/4/2017 5:33 PM, Jan Kara wrote: >> >> Hello, >> >> adding Peter and Byungchul to CC since the lockdep report just looks >> strange and cross-release seems to be involved. Guys, how did #5 get into >> the lock chain and what does put_ucounts() have to do with sb_writers >> there? Thanks! > > > Hello Jan, > > In order to get full stack of #5, we have to pass a boot param, > "crossrelease_fullstack", to the kernel. Now that it only informs > put_ucounts() in the call trace, it's hard to find out what exactly > happened at that time, but I can tell #5 shows: > > When acquire(sb_writers) in put_ucounts(), it was on the way to > complete((completion)&req.done) of wait_for_completion() in > devtmpfs_create_node(). > > If acquire(sb_writers) in put_ucounts() is stuck, then > wait_for_completion() in devtmpfs_create_node() would be also > stuck, since complete() being in the context of acquire(sb_writers) > cannot be called. > > This is why cross-release added the lock chain. Hi, What is cross-release? Is it something new? Should we always enable crossrelease_fullstack during testing? Thanks