aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/dir.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2011-08-15 09:20:36 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2011-10-21 07:39:26 -0400
commitab9bbda0204dfd0e5342562d9979d1241b14ea5f (patch)
tree621e623d99fbef1432da17b6390c92d7f13224a4 /fs/gfs2/dir.c
parentf18185291d605ea9e442e00e2cf6c917a84d9837 (diff)
GFS2: Use ->dirty_inode()
The aim of this patch is to use the newly enhanced ->dirty_inode() super block operation to deal with atime updates, rather than piggy backing that code into ->write_inode() as is currently done. The net result is a simplification of the code in various places and a reduction of the number of gfs2_dinode_out() calls since this is now implied by ->dirty_inode(). Some of the mark_inode_dirty() calls have been moved under glocks in order to take advantage of then being able to avoid locking in ->dirty_inode() when we already have suitable locks. One consequence is that generic_write_end() now correctly deals with file size updates, so that we do not need a separate check for that afterwards. This also, indirectly, means that fdatasync should work correctly on GFS2 - the current code always syncs the metadata whether it needs to or not. Has survived testing with postmark (with and without atime) and also fsx. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/dir.c')
-rw-r--r--fs/gfs2/dir.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c
index 2045d70753f1..898e62ed5b85 100644
--- a/fs/gfs2/dir.c
+++ b/fs/gfs2/dir.c
@@ -1681,7 +1681,6 @@ int gfs2_dir_del(struct gfs2_inode *dip, const struct dentry *dentry)
1681 const struct qstr *name = &dentry->d_name; 1681 const struct qstr *name = &dentry->d_name;
1682 struct gfs2_dirent *dent, *prev = NULL; 1682 struct gfs2_dirent *dent, *prev = NULL;
1683 struct buffer_head *bh; 1683 struct buffer_head *bh;
1684 int error;
1685 1684
1686 /* Returns _either_ the entry (if its first in block) or the 1685 /* Returns _either_ the entry (if its first in block) or the
1687 previous entry otherwise */ 1686 previous entry otherwise */
@@ -1710,22 +1709,15 @@ int gfs2_dir_del(struct gfs2_inode *dip, const struct dentry *dentry)
1710 } 1709 }
1711 brelse(bh); 1710 brelse(bh);
1712 1711
1713 error = gfs2_meta_inode_buffer(dip, &bh);
1714 if (error)
1715 return error;
1716
1717 if (!dip->i_entries) 1712 if (!dip->i_entries)
1718 gfs2_consist_inode(dip); 1713 gfs2_consist_inode(dip);
1719 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1720 dip->i_entries--; 1714 dip->i_entries--;
1721 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME; 1715 dip->i_inode.i_mtime = dip->i_inode.i_ctime = CURRENT_TIME;
1722 if (S_ISDIR(dentry->d_inode->i_mode)) 1716 if (S_ISDIR(dentry->d_inode->i_mode))
1723 drop_nlink(&dip->i_inode); 1717 drop_nlink(&dip->i_inode);
1724 gfs2_dinode_out(dip, bh->b_data);
1725 brelse(bh);
1726 mark_inode_dirty(&dip->i_inode); 1718 mark_inode_dirty(&dip->i_inode);
1727 1719
1728 return error; 1720 return 0;
1729} 1721}
1730 1722
1731/** 1723/**