public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fs: use inode_set_ctime_to_ts to set inode ctime to current time
@ 2024-02-28 17:30 Nguyen Dinh Phi
  2024-02-29 10:22 ` Christian Brauner
  0 siblings, 1 reply; 2+ messages in thread
From: Nguyen Dinh Phi @ 2024-02-28 17:30 UTC (permalink / raw)
  To: Alexander Viro, Christian Brauner, Jan Kara
  Cc: Nguyen Dinh Phi, linux-fsdevel, linux-kernel

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>
---
 fs/inode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/inode.c b/fs/inode.c
index 91048c4c9c9e..0b1327be581a 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -2509,7 +2509,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);
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-02-29 10:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-28 17:30 [PATCH] fs: use inode_set_ctime_to_ts to set inode ctime to current time Nguyen Dinh Phi
2024-02-29 10:22 ` Christian Brauner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox