From mboxrd@z Thu Jan 1 00:00:00 1970 From: Al Viro Subject: Re: [PATCH 7/9] vfs: protect remounting superblock read-only Date: Fri, 22 Oct 2010 07:46:27 +0100 Message-ID: <20101022064627.GA21607@ZenIV.linux.org.uk> References: <20101005103108.288743609@szeredi.hu> <20101005103144.051231469@szeredi.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dave@linux.vnet.ibm.com, akpm@linux-foundation.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org To: Miklos Szeredi Return-path: Content-Disposition: inline In-Reply-To: <20101005103144.051231469@szeredi.hu> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Tue, Oct 05, 2010 at 12:31:15PM +0200, Miklos Szeredi wrote: > From: Miklos Szeredi > > Currently remouting superblock read-only is racy in a major way. > > With the per mount read-only infrastructure it is now possible to > prevent most races, which this patch attempts. > > Before starting the remount read-only, set MNT_WRITE_HOLD on all > mounts so that writes are held off until the remount either succeeds > or fails. Umm... What'll happen if your remount will say mnt_want_write() on e.g. internal vfsmount over that sb? Or, more subtle, tries to update atime on some opened struct file on that sb.