From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Hellwig Subject: Re: [PATCH 1/5] fsfreeze: Prevent emergency thaw from looping infinitely Date: Mon, 14 Jun 2010 11:18:15 -0400 Message-ID: <20100614151815.GA32354@infradead.org> References: <1276154395-24766-1-git-send-email-david@fromorbit.com> <1276154395-24766-2-git-send-email-david@fromorbit.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, viro@ZenIV.linux.org.uk, josef@redhat.com, jeffmerkey@gmail.com To: Dave Chinner Return-path: Content-Disposition: inline In-Reply-To: <1276154395-24766-2-git-send-email-david@fromorbit.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Thu, Jun 10, 2010 at 05:19:50PM +1000, Dave Chinner wrote: > Return -EINVAL when the filesystem is already unfrozen to avoid this > problem. This includes some additional changes in addition to the description, and at least one of them seems incorrect. > - error = 0; > - if (--bdev->bd_fsfreeze_count > 0) > + if (!sb) > goto out; > > - if (!sb) > + error = 0; > + if (--bdev->bd_fsfreeze_count > 0) > goto out; Here you reorder the sb check to be before the counter decrement. But we do support calling freeze_bdev on a device without a superblock, and you would leak bd_fsfreeze_count for that case and wrongly return -EINVAL on unthaw for these now. > error = thaw_super(sb); > - if (error) { > + if (error) > bdev->bd_fsfreeze_count++; > - mutex_unlock(&bdev->bd_fsfreeze_mutex); > - return error; > - } Ok, useful cleanup. > out: > mutex_unlock(&bdev->bd_fsfreeze_mutex); > - return 0; > + return error; And this is the actual fix of course, also looks good.