Skip to content

Commit

Permalink
aio: make aio_set_fd_poll() static to aio-posix.c
Browse files Browse the repository at this point in the history
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
Message-Id: <20230221124802.4103554-9-marcandre.lureau@redhat.com>
  • Loading branch information
elmarco committed Mar 13, 2023
1 parent a4aafea commit 6eeef44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
8 changes: 0 additions & 8 deletions include/block/aio.h
Expand Up @@ -482,14 +482,6 @@ void aio_set_fd_handler(AioContext *ctx,
IOHandler *io_poll_ready,
void *opaque);

/* Set polling begin/end callbacks for a file descriptor that has already been
* registered with aio_set_fd_handler. Do nothing if the file descriptor is
* not registered.
*/
void aio_set_fd_poll(AioContext *ctx, int fd,
IOHandler *io_poll_begin,
IOHandler *io_poll_end);

/* Register an event notifier and associated callbacks. Behaves very similarly
* to event_notifier_set_handler. Unlike event_notifier_set_handler, these callbacks
* will be invoked when using aio_poll().
Expand Down
6 changes: 3 additions & 3 deletions util/aio-posix.c
Expand Up @@ -180,9 +180,9 @@ void aio_set_fd_handler(AioContext *ctx,
}
}

void aio_set_fd_poll(AioContext *ctx, int fd,
IOHandler *io_poll_begin,
IOHandler *io_poll_end)
static void aio_set_fd_poll(AioContext *ctx, int fd,
IOHandler *io_poll_begin,
IOHandler *io_poll_end)
{
AioHandler *node = find_aio_handler(ctx, fd);

Expand Down
7 changes: 0 additions & 7 deletions util/aio-win32.c
Expand Up @@ -125,13 +125,6 @@ void aio_set_fd_handler(AioContext *ctx,
aio_notify(ctx);
}

void aio_set_fd_poll(AioContext *ctx, int fd,
IOHandler *io_poll_begin,
IOHandler *io_poll_end)
{
/* Not implemented */
}

void aio_set_event_notifier(AioContext *ctx,
EventNotifier *e,
bool is_external,
Expand Down

0 comments on commit 6eeef44

Please sign in to comment.