mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-18 07:35:12 +08:00
eventfd_ctx_fdget(): use fdget() instead of fget()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
1c1c8747cd
commit
36a7411724
13
fs/eventfd.c
13
fs/eventfd.c
@ -349,15 +349,12 @@ EXPORT_SYMBOL_GPL(eventfd_fget);
|
||||
*/
|
||||
struct eventfd_ctx *eventfd_ctx_fdget(int fd)
|
||||
{
|
||||
struct file *file;
|
||||
struct eventfd_ctx *ctx;
|
||||
|
||||
file = eventfd_fget(fd);
|
||||
if (IS_ERR(file))
|
||||
return (struct eventfd_ctx *) file;
|
||||
ctx = eventfd_ctx_get(file->private_data);
|
||||
fput(file);
|
||||
|
||||
struct fd f = fdget(fd);
|
||||
if (!f.file)
|
||||
return ERR_PTR(-EBADF);
|
||||
ctx = eventfd_ctx_fileget(f.file);
|
||||
fdput(f);
|
||||
return ctx;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(eventfd_ctx_fdget);
|
||||
|
Loading…
Reference in New Issue
Block a user