summaryrefslogtreecommitdiff
path: root/fs/inode.c
diff options
context:
space:
mode:
authorNguyen Dinh Phi <phind.uet@gmail.com>2024-02-28 20:30:31 +0300
committerChristian Brauner <brauner@kernel.org>2024-03-01 15:58:46 +0300
commit24a8b7bfb96120b32c222ef108bb7a713d1e385a (patch)
tree711b12644a5d2f7e66b81a9ff70ba77add80ef69 /fs/inode.c
parent7ded1e365cc9de6093a71d3a493c1874aca6e77c (diff)
downloadlinux-24a8b7bfb96120b32c222ef108bb7a713d1e385a.tar.xz
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>
Diffstat (limited to 'fs/inode.c')
-rw-r--r--fs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/inode.c b/fs/inode.c
index d2e8e3884b36..5c8a5250d0ac 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -2510,7 +2510,7 @@ struct timespec64 inode_set_ctime_current(struct inode *inode)
{
struct timespec64 now = current_time(inode);
- inode_set_ctime(inode, now.tv_sec, now.tv_nsec);
+ inode_set_ctime_to_ts(inode, now);
return now;
}
EXPORT_SYMBOL(inode_set_ctime_current);