fs: use inode_set_ctime_to_ts to set inode ctime to current time
authorNguyen Dinh Phi <phind.uet@gmail.com>
Wed, 28 Feb 2024 17:30:31 +0000 (01:30 +0800)
committerChristian Brauner <brauner@kernel.org>
Fri, 1 Mar 2024 12:58:46 +0000 (13:58 +0100)
commit24a8b7bfb96120b32c222ef108bb7a713d1e385a
tree711b12644a5d2f7e66b81a9ff70ba77add80ef69
parent7ded1e365cc9de6093a71d3a493c1874aca6e77c
fs: use inode_set_ctime_to_ts to set inode ctime to current time

The function inode_set_ctime_current simply retrieves the current time
and assigns it to the field __i_ctime without any alterations. Therefore,
it is possible to set ctime to now directly using inode_set_ctime_to_ts

Signed-off-by: Nguyen Dinh Phi <phind.uet@gmail.com>
Link: https://lore.kernel.org/r/20240228173031.3208743-1-phind.uet@gmail.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/inode.c