From 73ecf5cf141a0c61775c10fdf3a6fc106f326f8c Mon Sep 17 00:00:00 2001 From: Al Viro Date: Sat, 14 Oct 2017 13:18:33 -0400 Subject: do_handle_open() should be static Signed-off-by: Al Viro --- fs/fhandle.c | 4 ++-- 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; -- cgit