diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-11-01 14:35:17 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-11-30 10:34:23 -0500 |
commit | 1a7b1eed5802502fd649e04784becd58557fdcf1 (patch) | |
tree | 31e9e9ab8ba1296751985d49d55154848ae2eefa /fs/gfs2/dir.c | |
parent | 4f56110a00af5fb2e22fbccfcaf944d62cae8fcf (diff) |
[GFS2] Shrink gfs2_inode (6) - di_atime/di_mtime/di_ctime
Remove the di_[amc]time fields and use inode->i_[amc]time
fields instead. This saves 24 bytes from the gfs2_inode.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/dir.c')
-rw-r--r-- | fs/gfs2/dir.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c index 0742761e1e02..ca23c8beb3f0 100644 --- a/fs/gfs2/dir.c +++ b/fs/gfs2/dir.c | |||
@@ -131,7 +131,7 @@ static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf, | |||
131 | memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size); | 131 | memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size); |
132 | if (ip->i_di.di_size < offset + size) | 132 | if (ip->i_di.di_size < offset + size) |
133 | ip->i_di.di_size = offset + size; | 133 | ip->i_di.di_size = offset + size; |
134 | ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds(); | 134 | ip->i_inode.i_mtime.tv_sec = ip->i_inode.i_ctime.tv_sec = get_seconds(); |
135 | gfs2_dinode_out(ip, dibh->b_data); | 135 | gfs2_dinode_out(ip, dibh->b_data); |
136 | 136 | ||
137 | brelse(dibh); | 137 | brelse(dibh); |
@@ -229,7 +229,7 @@ out: | |||
229 | 229 | ||
230 | if (ip->i_di.di_size < offset + copied) | 230 | if (ip->i_di.di_size < offset + copied) |
231 | ip->i_di.di_size = offset + copied; | 231 | ip->i_di.di_size = offset + copied; |
232 | ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds(); | 232 | ip->i_inode.i_mtime.tv_sec = ip->i_inode.i_ctime.tv_sec = get_seconds(); |
233 | 233 | ||
234 | gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 234 | gfs2_trans_add_bh(ip->i_gl, dibh, 1); |
235 | gfs2_dinode_out(ip, dibh->b_data); | 235 | gfs2_dinode_out(ip, dibh->b_data); |
@@ -1560,7 +1560,7 @@ int gfs2_dir_add(struct inode *inode, const struct qstr *name, | |||
1560 | break; | 1560 | break; |
1561 | gfs2_trans_add_bh(ip->i_gl, bh, 1); | 1561 | gfs2_trans_add_bh(ip->i_gl, bh, 1); |
1562 | ip->i_di.di_entries++; | 1562 | ip->i_di.di_entries++; |
1563 | ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds(); | 1563 | ip->i_inode.i_mtime.tv_sec = ip->i_inode.i_ctime.tv_sec = get_seconds(); |
1564 | gfs2_dinode_out(ip, bh->b_data); | 1564 | gfs2_dinode_out(ip, bh->b_data); |
1565 | brelse(bh); | 1565 | brelse(bh); |
1566 | error = 0; | 1566 | error = 0; |
@@ -1646,7 +1646,7 @@ int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name) | |||
1646 | gfs2_consist_inode(dip); | 1646 | gfs2_consist_inode(dip); |
1647 | gfs2_trans_add_bh(dip->i_gl, bh, 1); | 1647 | gfs2_trans_add_bh(dip->i_gl, bh, 1); |
1648 | dip->i_di.di_entries--; | 1648 | dip->i_di.di_entries--; |
1649 | dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds(); | 1649 | dip->i_inode.i_mtime.tv_sec = dip->i_inode.i_ctime.tv_sec = get_seconds(); |
1650 | gfs2_dinode_out(dip, bh->b_data); | 1650 | gfs2_dinode_out(dip, bh->b_data); |
1651 | brelse(bh); | 1651 | brelse(bh); |
1652 | mark_inode_dirty(&dip->i_inode); | 1652 | mark_inode_dirty(&dip->i_inode); |
@@ -1694,7 +1694,7 @@ int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename, | |||
1694 | gfs2_trans_add_bh(dip->i_gl, bh, 1); | 1694 | gfs2_trans_add_bh(dip->i_gl, bh, 1); |
1695 | } | 1695 | } |
1696 | 1696 | ||
1697 | dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds(); | 1697 | dip->i_inode.i_mtime.tv_sec = dip->i_inode.i_ctime.tv_sec = get_seconds(); |
1698 | gfs2_dinode_out(dip, bh->b_data); | 1698 | gfs2_dinode_out(dip, bh->b_data); |
1699 | brelse(bh); | 1699 | brelse(bh); |
1700 | return 0; | 1700 | return 0; |