hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* SPDX-License-Identifier: GPL-2.0 */
/*
 *  include/linux/eventfd.h
 *
 *  Copyright (C) 2007  Davide Libenzi <davidel@xmailserver.org>
 *
 */
 
#ifndef _LINUX_EVENTFD_H
#define _LINUX_EVENTFD_H
 
#include <linux/fcntl.h>
#include <linux/wait.h>
#include <linux/err.h>
#include <linux/percpu-defs.h>
#include <linux/percpu.h>
 
/*
 * CAREFUL: Check include/uapi/asm-generic/fcntl.h when defining
 * new flags, since they might collide with O_* ones. We want
 * to re-use O_* flags that couldn't possibly have a meaning
 * from eventfd, in order to leave a free define-space for
 * shared O_* flags.
 */
#define EFD_SEMAPHORE (1 << 0)
#define EFD_CLOEXEC O_CLOEXEC
#define EFD_NONBLOCK O_NONBLOCK
 
#define EFD_SHARED_FCNTL_FLAGS (O_CLOEXEC | O_NONBLOCK)
#define EFD_FLAGS_SET (EFD_SHARED_FCNTL_FLAGS | EFD_SEMAPHORE)
 
struct eventfd_ctx;
struct file;
 
#ifdef CONFIG_EVENTFD
 
void eventfd_ctx_put(struct eventfd_ctx *ctx);
struct file *eventfd_fget(int fd);
struct eventfd_ctx *eventfd_ctx_fdget(int fd);
struct eventfd_ctx *eventfd_ctx_fileget(struct file *file);
__u64 eventfd_signal(struct eventfd_ctx *ctx, __u64 n);
__u64 eventfd_signal_mask(struct eventfd_ctx *ctx, __u64 n, unsigned mask);
int eventfd_ctx_remove_wait_queue(struct eventfd_ctx *ctx, wait_queue_entry_t *wait,
                 __u64 *cnt);
 
DECLARE_PER_CPU(int, eventfd_wake_count);
 
static inline bool eventfd_signal_count(void)
{
   return this_cpu_read(eventfd_wake_count);
}
 
#else /* CONFIG_EVENTFD */
 
/*
 * Ugly ugly ugly error layer to support modules that uses eventfd but
 * pretend to work in !CONFIG_EVENTFD configurations. Namely, AIO.
 */
 
static inline struct eventfd_ctx *eventfd_ctx_fdget(int fd)
{
   return ERR_PTR(-ENOSYS);
}
 
static inline int eventfd_signal(struct eventfd_ctx *ctx, int n)
{
   return -ENOSYS;
}
 
static inline int eventfd_signal_mask(struct eventfd_ctx *ctx, __u64 n,
                     unsigned mask)
{
   return -ENOSYS;
}
 
static inline void eventfd_ctx_put(struct eventfd_ctx *ctx)
{
 
}
 
static inline int eventfd_ctx_remove_wait_queue(struct eventfd_ctx *ctx,
                       wait_queue_entry_t *wait, __u64 *cnt)
{
   return -ENOSYS;
}
 
static inline bool eventfd_signal_count(void)
{
   return false;
}
 
#endif
 
#endif /* _LINUX_EVENTFD_H */