diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2018-06-08 11:17:54 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-07-10 23:29:03 -0400 |
commit | b4e7a7a88b5d060650094b8d3454bc521d669f6a (patch) | |
tree | 296ceffb3c79d53906b23a244f432cb6ad40472a /fs/internal.h | |
parent | 877f919e192a09e77962a13d7165783027dee5fd (diff) | |
download | linux-b4e7a7a88b5d060650094b8d3454bc521d669f6a.tar.gz linux-b4e7a7a88b5d060650094b8d3454bc521d669f6a.tar.bz2 linux-b4e7a7a88b5d060650094b8d3454bc521d669f6a.zip |
drm_mode_create_lease_ioctl(): fix open-coded filp_clone_open()
Failure of ->open() should *not* be followed by fput(). Fixed by
using filp_clone_open(), which gets the cleanups right.
Cc: stable@vger.kernel.org
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/internal.h')
-rw-r--r-- | fs/internal.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/internal.h b/fs/internal.h index 980d005b21b4..5645b4ebf494 100644 --- a/fs/internal.h +++ b/fs/internal.h @@ -127,7 +127,6 @@ int do_fchownat(int dfd, const char __user *filename, uid_t user, gid_t group, extern int open_check_o_direct(struct file *f); extern int vfs_open(const struct path *, struct file *, const struct cred *); -extern struct file *filp_clone_open(struct file *); /* * inode.c |