VisionFive2 Linux kernel

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

More than 9999 Commits   32 Branches   54 Tags
author: Christian Brauner <christian@brauner.io> 2019-05-16 12:52:20 +0100 committer: Al Viro <viro@zeniv.linux.org.uk> 2019-05-16 12:23:45 -0400 commit: 1cdc415f10831c18912943017d06b2be948c67b4 parent: 05883eee857eab4693e7d13ebab06716475c5754
Commit Summary:
uapi, fsopen: use square brackets around "fscontext" [ver #2]
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/fsopen.c b/fs/fsopen.c
index 3bb9c0c8cbcc..c2891e933ef1 100644
--- a/fs/fsopen.c
+++ b/fs/fsopen.c
@@ -92,7 +92,7 @@ static int fscontext_create_fd(struct fs_context *fc, unsigned int o_flags)
 {
 	int fd;
 
-	fd = anon_inode_getfd("fscontext", &fscontext_fops, fc,
+	fd = anon_inode_getfd("[fscontext]", &fscontext_fops, fc,
 			      O_RDWR | o_flags);
 	if (fd < 0)
 		put_fs_context(fc);