diff options
| author | Deepa Dinamani <deepa.kernel@gmail.com> | 2016-09-14 10:48:05 -0400 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-09-27 21:06:22 -0400 |
| commit | 02027d42c3f747945f19111d3da2092ed2148ac8 (patch) | |
| tree | 1eac59f95ba905fb1d1fe5a53a792145e8e9c267 /fs/affs | |
| parent | 078cd8279e659989b103359bb22373cc79445bde (diff) | |
fs: Replace CURRENT_TIME_SEC with current_time() for inode timestamps
CURRENT_TIME_SEC is not y2038 safe. current_time() will
be transitioned to use 64 bit time along with vfs in a
separate patch.
There is no plan to transistion CURRENT_TIME_SEC to use
y2038 safe time interfaces.
current_time() will also be extended to use superblock
range checking parameters when range checking is introduced.
This works because alloc_super() fills in the the s_time_gran
in super block to NSEC_PER_SEC.
Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
Acked-by: Jan Kara <jack@suse.cz>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/affs')
| -rw-r--r-- | fs/affs/amigaffs.c | 6 | ||||
| -rw-r--r-- | fs/affs/inode.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fs/affs/amigaffs.c b/fs/affs/amigaffs.c index d8f217c711d3..0ec65c133b93 100644 --- a/fs/affs/amigaffs.c +++ b/fs/affs/amigaffs.c | |||
| @@ -58,7 +58,7 @@ affs_insert_hash(struct inode *dir, struct buffer_head *bh) | |||
| 58 | mark_buffer_dirty_inode(dir_bh, dir); | 58 | mark_buffer_dirty_inode(dir_bh, dir); |
| 59 | affs_brelse(dir_bh); | 59 | affs_brelse(dir_bh); |
| 60 | 60 | ||
| 61 | dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC; | 61 | dir->i_mtime = dir->i_ctime = current_time(dir); |
| 62 | dir->i_version++; | 62 | dir->i_version++; |
| 63 | mark_inode_dirty(dir); | 63 | mark_inode_dirty(dir); |
| 64 | 64 | ||
| @@ -112,7 +112,7 @@ affs_remove_hash(struct inode *dir, struct buffer_head *rem_bh) | |||
| 112 | 112 | ||
| 113 | affs_brelse(bh); | 113 | affs_brelse(bh); |
| 114 | 114 | ||
| 115 | dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC; | 115 | dir->i_mtime = dir->i_ctime = current_time(dir); |
| 116 | dir->i_version++; | 116 | dir->i_version++; |
| 117 | mark_inode_dirty(dir); | 117 | mark_inode_dirty(dir); |
| 118 | 118 | ||
| @@ -313,7 +313,7 @@ affs_remove_header(struct dentry *dentry) | |||
| 313 | else | 313 | else |
| 314 | clear_nlink(inode); | 314 | clear_nlink(inode); |
| 315 | affs_unlock_link(inode); | 315 | affs_unlock_link(inode); |
| 316 | inode->i_ctime = CURRENT_TIME_SEC; | 316 | inode->i_ctime = current_time(inode); |
| 317 | mark_inode_dirty(inode); | 317 | mark_inode_dirty(inode); |
| 318 | 318 | ||
| 319 | done: | 319 | done: |
diff --git a/fs/affs/inode.c b/fs/affs/inode.c index 0fdb0f5b2239..ed120ec7542c 100644 --- a/fs/affs/inode.c +++ b/fs/affs/inode.c | |||
| @@ -309,7 +309,7 @@ affs_new_inode(struct inode *dir) | |||
| 309 | inode->i_gid = current_fsgid(); | 309 | inode->i_gid = current_fsgid(); |
| 310 | inode->i_ino = block; | 310 | inode->i_ino = block; |
| 311 | set_nlink(inode, 1); | 311 | set_nlink(inode, 1); |
| 312 | inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME_SEC; | 312 | inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); |
| 313 | atomic_set(&AFFS_I(inode)->i_opencnt, 0); | 313 | atomic_set(&AFFS_I(inode)->i_opencnt, 0); |
| 314 | AFFS_I(inode)->i_blkcnt = 0; | 314 | AFFS_I(inode)->i_blkcnt = 0; |
| 315 | AFFS_I(inode)->i_lc = NULL; | 315 | AFFS_I(inode)->i_lc = NULL; |
