xfs: reimplement fdatasync support
authorChristoph Hellwig <hch@infradead.org>
Wed, 29 Feb 2012 09:53:55 +0000 (09:53 +0000)
committerBen Myers <bpm@sgi.com>
Tue, 13 Mar 2012 22:18:14 +0000 (17:18 -0500)
Add an in-memory only flag to say we logged timestamps only, and use it to
check if fdatasync can optimize away the log force.

Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
fs/xfs/xfs_file.c
fs/xfs/xfs_inode_item.c
fs/xfs/xfs_inode_item.h
fs/xfs/xfs_super.c

index 78d8b0299592d10bcc1222414956197340ce874c..54a67dd9ac0a5fbe5a7caf4271d14c67798fd872 100644 (file)
@@ -197,8 +197,11 @@ xfs_file_fsync(
         * to flush the log up to the latest LSN that touched the inode.
         */
        xfs_ilock(ip, XFS_ILOCK_SHARED);
-       if (xfs_ipincount(ip))
-               lsn = ip->i_itemp->ili_last_lsn;
+       if (xfs_ipincount(ip)) {
+               if (!datasync ||
+                   (ip->i_itemp->ili_fields & ~XFS_ILOG_TIMESTAMP))
+                       lsn = ip->i_itemp->ili_last_lsn;
+       }
        xfs_iunlock(ip, XFS_ILOCK_SHARED);
 
        if (lsn)
index 8becef4f9e6a943a152c42e153934a546cc2cf7c..05d924efceafb68940a5dd072a719b42133d152a 100644 (file)
@@ -438,7 +438,8 @@ out:
         * games in recovery easier, which isn't a big deal as just about any
         * transaction would dirty it anyway.
         */
-       iip->ili_format.ilf_fields = XFS_ILOG_CORE | iip->ili_fields;
+       iip->ili_format.ilf_fields = XFS_ILOG_CORE |
+               (iip->ili_fields & ~XFS_ILOG_TIMESTAMP);
        iip->ili_format.ilf_size = nvecs;
 }
 
index bc183d81ad32af1bdbbf0fbb0623c5c2354910bb..41d61c3b7a36e249028d34c505e941636f5c9e68 100644 (file)
@@ -86,6 +86,15 @@ typedef struct xfs_inode_log_format_64 {
 #define        XFS_ILOG_AEXT   0x080   /* log i_af.if_extents */
 #define        XFS_ILOG_ABROOT 0x100   /* log i_af.i_broot */
 
+
+/*
+ * The timestamps are dirty, but not necessarily anything else in the inode
+ * core.  Unlike the other fields above this one must never make it to disk
+ * in the ilf_fields of the inode_log_format, but is purely store in-memory in
+ * ili_fields in the inode_log_item.
+ */
+#define XFS_ILOG_TIMESTAMP     0x4000
+
 #define        XFS_ILOG_NONCORE        (XFS_ILOG_DDATA | XFS_ILOG_DEXT | \
                                 XFS_ILOG_DBROOT | XFS_ILOG_DEV | \
                                 XFS_ILOG_UUID | XFS_ILOG_ADATA | \
@@ -101,7 +110,7 @@ typedef struct xfs_inode_log_format_64 {
                                 XFS_ILOG_DEXT | XFS_ILOG_DBROOT | \
                                 XFS_ILOG_DEV | XFS_ILOG_UUID | \
                                 XFS_ILOG_ADATA | XFS_ILOG_AEXT | \
-                                XFS_ILOG_ABROOT)
+                                XFS_ILOG_ABROOT | XFS_ILOG_TIMESTAMP)
 
 static inline int xfs_ilog_fbroot(int w)
 {
index e602c8c67c5c56dace404d4a2b1277a3cfbda248..e9ad7894648ef8cb204a70d822bf63ae27c8dd0f 100644 (file)
@@ -907,7 +907,7 @@ xfs_fs_dirty_inode(
        ip->i_d.di_mtime.t_nsec = (__int32_t)inode->i_mtime.tv_nsec;
 
        xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
-       xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
+       xfs_trans_log_inode(tp, ip, XFS_ILOG_TIMESTAMP);
        error = xfs_trans_commit(tp, 0);
        if (error)
                goto trouble;