Symbol: EFD_NONBLOCK
arch/um/drivers/vfio_user.c
260
irqfd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
fs/eventfd.c
385
BUILD_BUG_ON(EFD_NONBLOCK != O_NONBLOCK);
tools/build/feature/test-eventfd.c
8
return eventfd(0, EFD_NONBLOCK);
tools/perf/bench/epoll-ctl.c
249
w->fdmap[j] = eventfd(0, EFD_NONBLOCK);
tools/perf/bench/epoll-wait.c
338
w->fdmap[j] = eventfd(0, EFD_NONBLOCK);
tools/perf/builtin-record.c
2500
done_fd = eventfd(0, EFD_NONBLOCK);
tools/perf/trace/beauty/eventfd.c
6
#ifndef EFD_NONBLOCK
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
3243
ctx.evfd[i] = eventfd(0, EFD_NONBLOCK);
tools/testing/selftests/filesystems/epoll/epoll_wakeup_test.c
3351
ctx.evfd = eventfd(0, EFD_NONBLOCK);
tools/testing/selftests/filesystems/eventfd/eventfd_test.c
255
fd = sys_eventfd2(0, EFD_NONBLOCK);
tools/testing/selftests/filesystems/eventfd/eventfd_test.c
289
fd = sys_eventfd2(0, EFD_SEMAPHORE|EFD_NONBLOCK);
tools/testing/selftests/filesystems/eventfd/eventfd_test.c
77
fd = sys_eventfd2(0, EFD_NONBLOCK);
tools/testing/selftests/filesystems/eventfd/eventfd_test.c
82
EXPECT_EQ(flags & EFD_NONBLOCK, EFD_NONBLOCK);
tools/testing/selftests/filesystems/eventfd/eventfd_test.c
92
fd = sys_eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK);
tools/testing/selftests/filesystems/eventfd/eventfd_test.c
97
EXPECT_EQ(flags & EFD_NONBLOCK, EFD_NONBLOCK);
tools/virtio/vhost_net_test.c
198
info->kick = eventfd(0, EFD_NONBLOCK);
tools/virtio/virtio_test.c
116
info->kick = eventfd(0, EFD_NONBLOCK);
tools/virtio/virtio_test.c
117
info->call = eventfd(0, EFD_NONBLOCK);