Skip to content

Commit

Permalink
do_handle_open() should be static
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Oct 14, 2017
1 parent 11e3e8d commit 73ecf5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/fhandle.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ static int handle_to_path(int mountdirfd, struct file_handle __user *ufh,
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;
Expand Down

0 comments on commit 73ecf5c

Please sign in to comment.