From: Eric Biggers <ebiggers@xxxxxxxxxx> It's used for both fsopen() and fspick(), not just fsopen(). Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx> --- fs/fsopen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/fsopen.c b/fs/fsopen.c index 02edb4705fac2..1fbd8b0ca194b 100644 --- a/fs/fsopen.c +++ b/fs/fsopen.c @@ -212,7 +212,7 @@ const struct file_operations fscontext_fs_fops = { /* * Attach a filesystem context to a file and an fd. */ -static int fsopen_create_fd(struct fs_context *fc, unsigned int o_flags) +static int fscontext_create_fd(struct fs_context *fc, unsigned int o_flags) { int fd; @@ -273,7 +273,7 @@ SYSCALL_DEFINE2(fsopen, const char __user *, _fs_name, unsigned int, flags) if (ret < 0) goto err_fc; - return fsopen_create_fd(fc, flags & FSOPEN_CLOEXEC ? O_CLOEXEC : 0); + return fscontext_create_fd(fc, flags & FSOPEN_CLOEXEC ? O_CLOEXEC : 0); err_fc: put_fs_context(fc); @@ -328,7 +328,7 @@ SYSCALL_DEFINE3(fspick, int, dfd, const char __user *, path, unsigned int, flags goto err_fc; path_put(&target); - return fsopen_create_fd(fc, flags & FSPICK_CLOEXEC ? O_CLOEXEC : 0); + return fscontext_create_fd(fc, flags & FSPICK_CLOEXEC ? O_CLOEXEC : 0); err_fc: put_fs_context(fc); -- 2.18.0