Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 362ad5d5 authored by Deepa Dinamani's avatar Deepa Dinamani Committed by Dave Kleikamp
Browse files

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: default avatarDeepa Dinamani <deepa.kernel@gmail.com>
Reviewed-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarDave Kleikamp <dave.kleikamp@oracle.com>
parent 015ed943
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -121,7 +121,7 @@ long jfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)

		jfs_set_inode_flags(inode);
		inode_unlock(inode);
		inode->i_ctime = CURRENT_TIME_SEC;
		inode->i_ctime = current_time(inode);
		mark_inode_dirty(inode);
setflags_out:
		mnt_drop_write_file(filp);