From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751057AbeC1Es2 (ORCPT ); Wed, 28 Mar 2018 00:48:28 -0400 Received: from zeniv.linux.org.uk ([195.92.253.2]:47366 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750753AbeC1Es1 (ORCPT ); Wed, 28 Mar 2018 00:48:27 -0400 Date: Wed, 28 Mar 2018 05:48:23 +0100 From: Al Viro To: Alexey Dobriyan Cc: Andrew Morton , linux-kernel@vger.kernel.org Subject: Re: [PATCH] proc: register filesystem last Message-ID: <20180328044823.GT30522@ZenIV.linux.org.uk> References: <20180309222709.GA3843@avx2> <20180309144938.d308e0bf98fb6b5bbcb82189@linux-foundation.org> <20180310000634.GA12443@avx2> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180310000634.GA12443@avx2> User-Agent: Mutt/1.9.1 (2017-09-22) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Mar 10, 2018 at 03:06:34AM +0300, Alexey Dobriyan wrote: > On Fri, Mar 09, 2018 at 02:49:38PM -0800, Andrew Morton wrote: > > On Sat, 10 Mar 2018 01:27:09 +0300 Alexey Dobriyan wrote: > > > > > As soon as register_filesystem() exits, filesystem can be mounted. > > > It is better to present fully operational /proc. > > > > > > Of course it doesn't matter because /proc is not modular > > > but do it anyway. > > > > > > Drop error check, it should be handled by panicking. > > > > So... shouldn't we add a call to panic()? > > via FS_PANIC flag, yes. I have a patch somewhere. > There are 104 filesystems ATM, some internal, some not. > Some modular, some not. You do realize that the only case when register_filesystem() fails is "another driver has already registered filesystem type with the same name"? Is there *ever* a case when * you could expect that to happen and * panic would be a sane response?