diff options
author | Nguyen Dinh Phi <phind.uet@gmail.com> | 2024-02-29 01:30:31 +0800 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-03-01 13:58:46 +0100 |
commit | 24a8b7bfb96120b32c222ef108bb7a713d1e385a (patch) | |
tree | 711b12644a5d2f7e66b81a9ff70ba77add80ef69 | |
parent | 7ded1e365cc9de6093a71d3a493c1874aca6e77c (diff) |
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>
-rw-r--r-- | fs/inode.c | 2 |
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); |