| .. | .. |
|---|
| 39 | 39 | struct eventfd_ctx *eventfd_ctx_fdget(int fd); |
|---|
| 40 | 40 | struct eventfd_ctx *eventfd_ctx_fileget(struct file *file); |
|---|
| 41 | 41 | __u64 eventfd_signal(struct eventfd_ctx *ctx, __u64 n); |
|---|
| 42 | +__u64 eventfd_signal_mask(struct eventfd_ctx *ctx, __u64 n, unsigned mask); |
|---|
| 42 | 43 | int eventfd_ctx_remove_wait_queue(struct eventfd_ctx *ctx, wait_queue_entry_t *wait, |
|---|
| 43 | 44 | __u64 *cnt); |
|---|
| 44 | 45 | |
|---|
| .. | .. |
|---|
| 66 | 67 | return -ENOSYS; |
|---|
| 67 | 68 | } |
|---|
| 68 | 69 | |
|---|
| 70 | +static inline int eventfd_signal_mask(struct eventfd_ctx *ctx, __u64 n, |
|---|
| 71 | + unsigned mask) |
|---|
| 72 | +{ |
|---|
| 73 | + return -ENOSYS; |
|---|
| 74 | +} |
|---|
| 75 | + |
|---|
| 69 | 76 | static inline void eventfd_ctx_put(struct eventfd_ctx *ctx) |
|---|
| 70 | 77 | { |
|---|
| 71 | 78 | |
|---|