VisionFive2 Linux kernel

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

More than 9999 Commits   32 Branches   54 Tags
author: Al Viro <viro@zeniv.linux.org.uk> 2017-10-14 13:18:33 -0400 committer: Al Viro <viro@zeniv.linux.org.uk> 2017-10-14 13:18:33 -0400 commit: 73ecf5cf141a0c61775c10fdf3a6fc106f326f8c parent: 11e3e8d6d9274bf630859b4c47bc4e4d76f289db
Commit Summary:
do_handle_open() should be static
Diffstat:
1 file changed, 2 insertions, 2 deletions
diff --git a/fs/fhandle.c b/fs/fhandle.c
index 58a61f55e0d0..75cef4deaa77 100644
--- a/fs/fhandle.c
+++ b/fs/fhandle.c
@@ -212,8 +212,8 @@ out_err:
 	return retval;
 }
 
-long do_handle_open(int mountdirfd,
-		    struct file_handle __user *ufh, int open_flag)
+static long do_handle_open(int mountdirfd, struct file_handle __user *ufh,
+			   int open_flag)
 {
 	long retval = 0;
 	struct path path;