| To: | Eric Sandeen <sandeen@xxxxxxxxxxx> |
|---|---|
| Subject: | Re: [PATCH 5/8] xfs: Protect xfs_file_aio_write() & xfs_setattr_size() with sb_start_write - sb_end_write |
| From: | Dave Chinner <david@xxxxxxxxxxxxx> |
| Date: | Mon, 6 Feb 2012 10:11:27 +1100 |
| Cc: | Jan Kara <jack@xxxxxxx>, Alex Elder <elder@xxxxxxxxxx>, Surbhi Palande <csurbhi@xxxxxxxxx>, Kamal Mostafa <kamal@xxxxxxxxxxxxx>, LKML <linux-kernel@xxxxxxxxxxxxxxx>, xfs@xxxxxxxxxxx, Christoph Hellwig <hch@xxxxxxxxxxxxx>, Ben Myers <bpm@xxxxxxx>, Dave Chinner <dchinner@xxxxxxxxxx>, linux-fsdevel@xxxxxxxxxxxxxxx, linux-ext4@xxxxxxxxxxxxxxx |
| In-reply-to: | <4F2CB44D.4060006@xxxxxxxxxxx> |
| References: | <1327091686-23177-1-git-send-email-jack@xxxxxxx> <1327091686-23177-6-git-send-email-jack@xxxxxxx> <4F2CB44D.4060006@xxxxxxxxxxx> |
| User-agent: | Mutt/1.5.21 (2010-09-15) |
On Fri, Feb 03, 2012 at 10:30:05PM -0600, Eric Sandeen wrote: > On 1/20/12 2:34 PM, Jan Kara wrote: > > Replace racy xfs_wait_for_freeze() check in xfs_file_aio_write() with > > a reliable sb_start_write() - sb_end_write() locking. > > Here's what I'm running with now. With this and my modified > patch6, I can pass xfstests 068 on xfs. Just a quick question this raises - is .splice_write() protected? Cheers, Dave. > > -Eric > > > > diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c > index 7e5bc87..f1cacdc 100644 > --- a/fs/xfs/xfs_file.c > +++ b/fs/xfs/xfs_file.c > @@ -874,11 +874,11 @@ xfs_file_aio_write( > if (ocount == 0) > return 0; > > - xfs_wait_for_freeze(ip->i_mount, SB_FREEZE_WRITE); > - > if (XFS_FORCED_SHUTDOWN(ip->i_mount)) > return -EIO; > > + sb_start_write(inode->i_sb, SB_FREEZE_WRITE); > + This check really should go before the shutdown check - if the filesystem shuts down while we are freezing or attempting to freeze, we want to abort the write after we are woken.... Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: Performance problem - reads slower than writes, Dave Chinner |
|---|---|
| Next by Date: | Re: [PATCH] xfstests: fsstress - make sync a write op, Dave Chinner |
| Previous by Thread: | Re: [PATCH 5/8] xfs: Protect xfs_file_aio_write() & xfs_setattr_size() with sb_start_write - sb_end_write, Eric Sandeen |
| Next by Thread: | [PATCH] xfstests: fsstress - make sync a write op, Eric Sandeen |
| Indexes: | [Date] [Thread] [Top] [All Lists] |