VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Christoph Hellwig <hch@lst.de> 2020-07-21 16:05:31 +0200 committer: Christoph Hellwig <hch@lst.de> 2020-07-31 08:17:54 +0200 commit: 235e57935bf328c4cce371ffc4dd1d8fab4885cd parent: 716308a5331bf907b819f9db8dc942b19568f925
Commit Summary:
init: add an init_utimes helper
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/init/initramfs.c b/init/initramfs.c
index 744e111baba4..e6dbfb767057 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -111,8 +111,7 @@ static long __init do_utime(char *filename, time64_t mtime)
 	t[0].tv_nsec = 0;
 	t[1].tv_sec = mtime;
 	t[1].tv_nsec = 0;
-
-	return do_utimes(AT_FDCWD, filename, t, AT_SYMLINK_NOFOLLOW);
+	return init_utimes(filename, t);
 }
 
 static __initdata LIST_HEAD(dir_list);