mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:24:47 +01:00
Some io_uring files are missing SPDX-License-Identifier lines. Add lines with GPL-2.0 license IDs to these files. Signed-off-by: Tim Bird <tim.bird@sony.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
8 lines
277 B
C
8 lines
277 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
struct io_ring_ctx;
|
|
int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg,
|
|
unsigned int eventfd_async);
|
|
int io_eventfd_unregister(struct io_ring_ctx *ctx);
|
|
|
|
void io_eventfd_signal(struct io_ring_ctx *ctx, bool cqe_event);
|