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, 11 insertions, 0 deletions
diff --git a/fs/init.c b/fs/init.c
index 51646ba38099..db5c48a85644 100644
--- a/fs/init.c
+++ b/fs/init.c
@@ -238,3 +238,16 @@ int __init init_rmdir(const char *pathname)
 {
 	return do_rmdir(AT_FDCWD, getname_kernel(pathname));
 }
+
+int __init init_utimes(char *filename, struct timespec64 *ts)
+{
+	struct path path;
+	int error;
+
+	error = kern_path(filename, 0, &path);
+	if (error)
+		return error;
+	error = vfs_utimes(&path, ts);
+	path_put(&path);
+	return error;
+}