| To: | Christoph Hellwig <hch@xxxxxxxxxxxxx> |
|---|---|
| Subject: | Re: [PATCH 1/6] [XFS] Split inode data writeback from inode sync. |
| From: | Dave Chinner <david@xxxxxxxxxxxxx> |
| Date: | Mon, 16 Mar 2009 21:47:12 +1100 |
| Cc: | xfs@xxxxxxxxxxx |
| In-reply-to: | <20090316101008.GA2874@xxxxxxxxxxxxx> |
| Mail-followup-to: | Christoph Hellwig <hch@xxxxxxxxxxxxx>, xfs@xxxxxxxxxxx |
| References: | <1237117603-26071-1-git-send-email-david@xxxxxxxxxxxxx> <1237117603-26071-2-git-send-email-david@xxxxxxxxxxxxx> <20090316101008.GA2874@xxxxxxxxxxxxx> |
| User-agent: | Mutt/1.5.18 (2008-05-17) |
On Mon, Mar 16, 2009 at 06:10:08AM -0400, Christoph Hellwig wrote:
> > +static int
> > +xfs_sync_inode_data(
> > + struct xfs_inode *ip,
> > + int flags)
> > +{
> > + struct inode *inode = VFS_I(ip);
> > + int error = 0;
> > +
> > + if (VN_DIRTY(inode)) {
> > + int locked = 0;
> > + if (flags & SYNC_TRYLOCK) {
> > + if (xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED))
> > + locked = 1;
> > + } else {
> > + xfs_ilock(ip, XFS_IOLOCK_SHARED);
> > + locked = 1;
> > + }
> > + if (locked) {
> > + error = xfs_flush_pages(ip, 0, -1,
> > + (flags & SYNC_WAIT) ? 0 : XFS_B_ASYNC,
> > + FI_NONE);
> > + xfs_iunlock(ip, XFS_IOLOCK_SHARED);
> > + }
> > + }
> > +
> > + if (flags & SYNC_IOWAIT)
> > + xfs_ioend_wait(ip);
> > +
> > + return error;
> > +}
>
> In the end this should look more like:
>
>
>
> static int
> xfs_sync_inode_data(
> struct xfs_inode *ip,
> int flags)
> {
> struct inode *inode = VFS_I(ip);
> struct address_space *mapping = inode->i_mapping;
> int error = 0;
>
> if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
> if (!xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED)) {
> if (flags & SYNC_TRYLOCK)
> goto out;
> xfs_ilock(ip, XFS_IOLOCK_SHARED);
> }
>
> if (flags & SYNC_WAIT) {
> error = filemap_write_and_wait(mapping);
> else
> error = filemap_fdatawrite(mapping);
>
> xfs_iflags_clear(ip, XFS_ITRUNCATED);
> xfs_iunlock(ip, XFS_IOLOCK_SHARED);
> }
>
> out:
> if (flags & SYNC_IOWAIT)
> xfs_ioend_wait(ip);
> return -error;
> }
Seems sane. I'll rework it around this.
Cheers,
Dave.
--
Dave Chinner
david@xxxxxxxxxxxxx
|
| Previous by Date: | Re: [PATCH 2/5] [XFS] Make inode flush at ENOSPC synchronous, Dave Chinner |
|---|---|
| Next by Date: | Re: [PATCH 1/2] [XFS] Validate log feature fields correctly, Dave Chinner |
| Previous by Thread: | Re: [PATCH 1/6] [XFS] Split inode data writeback from inode sync., Christoph Hellwig |
| Next by Thread: | [PATCH 2/6] [XFS] Use xfs_inode_flush() in xfs_sync_inodes_ag(), Dave Chinner |
| Indexes: | [Date] [Thread] [Top] [All Lists] |