From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Hellwig Subject: Re: [PATCH 12/18] fs: Protect inode->i_state with the inode->i_lock Date: Wed, 13 Oct 2010 09:27:37 -0400 Message-ID: <20101013132737.GB5263@infradead.org> References: <1286928961-15157-1-git-send-email-david@fromorbit.com> <1286928961-15157-13-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 To: Dave Chinner Return-path: Content-Disposition: inline In-Reply-To: <1286928961-15157-13-git-send-email-david@fromorbit.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Wed, Oct 13, 2010 at 11:15:55AM +1100, Dave Chinner wrote: > From: Dave Chinner > > We currently protect the per-inode state flags with the inode_lock. > Using a global lock to protect per-object state is overkill when we > coul duse a per-inode lock to protect the state. Use the > inode->i_lock for this, and wrap all the state changes and checks > with the inode->i_lock. > > Based on work originally written by Nick Piggin. Looks good, Reviewed-by: Christoph Hellwig