diff options
author | Deepa Dinamani <deepa.kernel@gmail.com> | 2016-11-11 13:00:53 -0500 |
---|---|---|
committer | Dave Kleikamp <dave.kleikamp@oracle.com> | 2016-11-11 16:51:39 -0500 |
commit | 362ad5d58e9ae54d15abbe4822e626be907308fe (patch) | |
tree | 25d7bdb680177bc44f4d6298c8f550e5fc7a5ed6 /fs/jfs/ioctl.c | |
parent | 015ed9433be2b476ec7e2e6a9a411a56e3b5b035 (diff) |
fs: jfs: Replace CURRENT_TIME_SEC by current_time()
jfs uses nanosecond granularity for filesystem timestamps.
Only this assignment is not using nanosecond granularity.
Use current_time() to get the right granularity.
Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
Diffstat (limited to 'fs/jfs/ioctl.c')
-rw-r--r-- | fs/jfs/ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jfs/ioctl.c b/fs/jfs/ioctl.c index 8653cac7e12e..b6fd1ff29ddf 100644 --- a/fs/jfs/ioctl.c +++ b/fs/jfs/ioctl.c | |||
@@ -121,7 +121,7 @@ long jfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) | |||
121 | 121 | ||
122 | jfs_set_inode_flags(inode); | 122 | jfs_set_inode_flags(inode); |
123 | inode_unlock(inode); | 123 | inode_unlock(inode); |
124 | inode->i_ctime = CURRENT_TIME_SEC; | 124 | inode->i_ctime = current_time(inode); |
125 | mark_inode_dirty(inode); | 125 | mark_inode_dirty(inode); |
126 | setflags_out: | 126 | setflags_out: |
127 | mnt_drop_write_file(filp); | 127 | mnt_drop_write_file(filp); |