eventfd_ctx_fdget(): use fdget() instead of fget()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro 2013-12-23 16:51:33 -05:00
parent 1c1c8747cd
commit 36a7411724

View file

@ -349,15 +349,12 @@ EXPORT_SYMBOL_GPL(eventfd_fget);
*/ */
struct eventfd_ctx *eventfd_ctx_fdget(int fd) struct eventfd_ctx *eventfd_ctx_fdget(int fd)
{ {
struct file *file;
struct eventfd_ctx *ctx; struct eventfd_ctx *ctx;
struct fd f = fdget(fd);
file = eventfd_fget(fd); if (!f.file)
if (IS_ERR(file)) return ERR_PTR(-EBADF);
return (struct eventfd_ctx *) file; ctx = eventfd_ctx_fileget(f.file);
ctx = eventfd_ctx_get(file->private_data); fdput(f);
fput(file);
return ctx; return ctx;
} }
EXPORT_SYMBOL_GPL(eventfd_ctx_fdget); EXPORT_SYMBOL_GPL(eventfd_ctx_fdget);