Commit ab72a702 authored by Al Viro's avatar Al Viro

events: don't use get_unused_fd_flags() when get_unused_fd() will do

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 5b249b1b
......@@ -6264,7 +6264,7 @@ SYSCALL_DEFINE5(perf_event_open,
if ((flags & PERF_FLAG_PID_CGROUP) && (pid == -1 || cpu == -1))
return -EINVAL;
event_fd = get_unused_fd_flags(O_RDWR);
event_fd = get_unused_fd();
if (event_fd < 0)
return event_fd;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment