Received: by 2002:a25:ad19:0:0:0:0:0 with SMTP id y25csp11175572ybi; Thu, 25 Jul 2019 11:16:53 -0700 (PDT) X-Google-Smtp-Source: APXvYqxo1dVDOdEFFvXnNApW2rTe3uYtA/HfRQ77mL5ZKT3nLcRK2Tb47Jk8ZxSWiLNS4hnDcO2u X-Received: by 2002:a17:902:ba96:: with SMTP id k22mr94466954pls.44.1564078613689; Thu, 25 Jul 2019 11:16:53 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1564078613; cv=none; d=google.com; s=arc-20160816; b=ueltXSoIJEt4YEtVl9lBFNiYblkjqxHPEk2d/l6Mw3TKpv7y/vfFesBFvsWppDCSC6 R3BNPdh832bH1sP+4BMwnJACvseBO9gsyJ+t/yjbIjZAi1CuRQY6KpxtyVWwd4Vxr3Co HIVlWbEYekxhtwhym3ZBzfQmHFVo6B48Z9Rm/bqS4wl8LQXMGpKAOxhR92K5RK7fuHS3 ZRhZqlyE6zscvkREuY9LF5zeeXZmR61MZ23LvCmbdxEWf87CwWprWNbirLyxR5i8wnGR bT1Mky54m2xbjzxDSUzTUCB2hcsAyU+m4To0yLzaLwjBmlnUnYyY1M07skQEo42qREmg EObA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=1Xob8o3xjFSyWHaO058dIWQK02O29nJlWk1IuephS8Q=; b=PO7Uny7peYPmFO2NXMEmPtlC/Nd8WoYTeNKgzsFi+3CI3o24iWeiBspGOr/oGNibsz muCT0ddID1aTEiWE6KHZRZOTs31dvgQnqWPFFp2rDUXXdIACNYvj6TksPfTFiAsccgDc 07SBJJH7aXT2qvlKXfnzh4YGagR5UZBvp7UwBGFl0tdz2BjqJbXfJJxB0uErWx6BJBpK v3Ftlg8cUOTtWjn4NT0n+dMyGiuYmBXCZBN3Uic/p15p3S5XMd7n3JTItdkXZ2gSxJ/N TKnu7F6fOHJQwYBcdIIDznBzr0KN2FPBwgD/i42a6YgQhKJ+HfhByfmlNYmPGISkPv2r cQNQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id l64si15197634pjb.93.2019.07.25.11.16.38; Thu, 25 Jul 2019 11:16:53 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727777AbfGYSEk (ORCPT + 99 others); Thu, 25 Jul 2019 14:04:40 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:53492 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727032AbfGYSEj (ORCPT ); Thu, 25 Jul 2019 14:04:39 -0400 Received: from viro by ZenIV.linux.org.uk with local (Exim 4.92 #3 (Red Hat Linux)) id 1hqi6O-0005Zb-G4; Thu, 25 Jul 2019 18:04:28 +0000 Date: Thu, 25 Jul 2019 19:04:28 +0100 From: Al Viro To: Linus Torvalds Cc: Cyril Hrubis , kernel test robot , LKP , LKML , ltp@lists.linux.it Subject: Re: [LTP] 56cbb429d9: ltp.fs_fill.fail Message-ID: <20190725180428.GH1131@ZenIV.linux.org.uk> References: <20190725110944.GA22106@shao2-debian> <20190725132617.GA23135@rei.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.12.0 (2019-05-25) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jul 25, 2019 at 09:32:13AM -0700, Linus Torvalds wrote: > On Thu, Jul 25, 2019 at 6:26 AM Cyril Hrubis wrote: > > > > This looks like mkfs.vfat got EBUSY after the loop device was > > succesfully umounted. > > Hmm. Smells like the RCU-delaying got triggered again. > > We have that "synchronize_rcu_expedited()" in namespace_unlock(), > which is so that everything should be done by the time we return to > user space. > > Al, maybe that RCU synchronization should be after the mntput()s? There are several interesting issues in there, but synchronize_rcu() should be between zeroing ->mnt_ns and dropping the final refs. I'm digging through that crap right now; at least one bug is dealt with by #fixes, but there's more, unfortunately.