diff options
author | Christoph Hellwig <hch@lst.de> | 2009-03-16 03:24:46 -0400 |
---|---|---|
committer | Christoph Hellwig <hch@brick.lst.de> | 2009-03-16 03:24:46 -0400 |
commit | 8fab451e3cfe02a5e3dfc4bab3cfb975bc11fc09 (patch) | |
tree | 7fd614c516cb7713adda58ce0a1570cd8145c205 /fs/xfs | |
parent | 076e6acb8f0d9532ee6c50512c1927c0a8e34f2f (diff) |
xfs: kill vn_atime_* helpers.
Two out of three are unused already, and the third is better done open-coded
with a comment describing what's going on here.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_vnode.h | 19 | ||||
-rw-r--r-- | fs/xfs/xfs_itable.c | 7 |
2 files changed, 6 insertions, 20 deletions
diff --git a/fs/xfs/linux-2.6/xfs_vnode.h b/fs/xfs/linux-2.6/xfs_vnode.h index ea4675c48209..de9dc747b451 100644 --- a/fs/xfs/linux-2.6/xfs_vnode.h +++ b/fs/xfs/linux-2.6/xfs_vnode.h | |||
@@ -58,25 +58,6 @@ static inline int VN_BAD(struct inode *vp) | |||
58 | } | 58 | } |
59 | 59 | ||
60 | /* | 60 | /* |
61 | * Extracting atime values in various formats | ||
62 | */ | ||
63 | static inline void vn_atime_to_bstime(struct inode *vp, xfs_bstime_t *bs_atime) | ||
64 | { | ||
65 | bs_atime->tv_sec = vp->i_atime.tv_sec; | ||
66 | bs_atime->tv_nsec = vp->i_atime.tv_nsec; | ||
67 | } | ||
68 | |||
69 | static inline void vn_atime_to_timespec(struct inode *vp, struct timespec *ts) | ||
70 | { | ||
71 | *ts = vp->i_atime; | ||
72 | } | ||
73 | |||
74 | static inline void vn_atime_to_time_t(struct inode *vp, time_t *tt) | ||
75 | { | ||
76 | *tt = vp->i_atime.tv_sec; | ||
77 | } | ||
78 | |||
79 | /* | ||
80 | * Some useful predicates. | 61 | * Some useful predicates. |
81 | */ | 62 | */ |
82 | #define VN_MAPPED(vp) mapping_mapped(vp->i_mapping) | 63 | #define VN_MAPPED(vp) mapping_mapped(vp->i_mapping) |
diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c index cf98a805ec90..24f1d139a636 100644 --- a/fs/xfs/xfs_itable.c +++ b/fs/xfs/xfs_itable.c | |||
@@ -83,7 +83,12 @@ xfs_bulkstat_one_iget( | |||
83 | buf->bs_uid = dic->di_uid; | 83 | buf->bs_uid = dic->di_uid; |
84 | buf->bs_gid = dic->di_gid; | 84 | buf->bs_gid = dic->di_gid; |
85 | buf->bs_size = dic->di_size; | 85 | buf->bs_size = dic->di_size; |
86 | vn_atime_to_bstime(VFS_I(ip), &buf->bs_atime); | 86 | /* |
87 | * We are reading the atime from the Linux inode because the | ||
88 | * dinode might not be uptodate. | ||
89 | */ | ||
90 | buf->bs_atime.tv_sec = VFS_I(ip)->i_atime.tv_sec; | ||
91 | buf->bs_atime.tv_nsec = VFS_I(ip)->i_atime.tv_nsec; | ||
87 | buf->bs_mtime.tv_sec = dic->di_mtime.t_sec; | 92 | buf->bs_mtime.tv_sec = dic->di_mtime.t_sec; |
88 | buf->bs_mtime.tv_nsec = dic->di_mtime.t_nsec; | 93 | buf->bs_mtime.tv_nsec = dic->di_mtime.t_nsec; |
89 | buf->bs_ctime.tv_sec = dic->di_ctime.t_sec; | 94 | buf->bs_ctime.tv_sec = dic->di_ctime.t_sec; |