From: Fam Zheng <famz@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: qemu-devel@nongnu.org, stefanha@redhat.com
Subject: Re: [Qemu-devel] [PATCH 04/16] io: add methods to set I/O handlers on AioContext
Date: Mon, 16 Jan 2017 19:31:15 +0800 [thread overview]
Message-ID: <20170116113115.GC14226@lemon.Home> (raw)
In-Reply-To: <20170113131731.1246-5-pbonzini@redhat.com>
On Fri, 01/13 14:17, Paolo Bonzini wrote:
> This is in preparation for making qio_channel_yield work on
> AioContexts other than the main one.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> include/io/channel.h | 30 ++++++++++++++++++++++++++++++
> io/channel-command.c | 13 +++++++++++++
> io/channel-file.c | 11 +++++++++++
> io/channel-socket.c | 16 +++++++++++-----
> io/channel-tls.c | 12 ++++++++++++
> io/channel-watch.c | 6 ++++++
> io/channel.c | 11 +++++++++++
> 7 files changed, 94 insertions(+), 5 deletions(-)
>
> diff --git a/include/io/channel.h b/include/io/channel.h
> index 32a9470..665edd7 100644
> --- a/include/io/channel.h
> +++ b/include/io/channel.h
> @@ -23,6 +23,7 @@
>
> #include "qemu-common.h"
> #include "qom/object.h"
> +#include "block/aio.h"
>
> #define TYPE_QIO_CHANNEL "qio-channel"
> #define QIO_CHANNEL(obj) \
> @@ -58,6 +59,8 @@ typedef gboolean (*QIOChannelFunc)(QIOChannel *ioc,
> GIOCondition condition,
> gpointer data);
>
> +typedef struct QIOChannelRestart QIOChannelRestart;
> +
> /**
> * QIOChannel:
> *
> @@ -80,6 +83,9 @@ struct QIOChannel {
> Object parent;
> unsigned int features; /* bitmask of QIOChannelFeatures */
> char *name;
> + AioContext *ctx;
> + QIOChannelRestart *read_coroutine;
> + QIOChannelRestart *write_coroutine;
> #ifdef _WIN32
> HANDLE event; /* For use with GSource on Win32 */
> #endif
> @@ -132,6 +138,11 @@ struct QIOChannelClass {
> off_t offset,
> int whence,
> Error **errp);
> + void (*io_set_aio_fd_handler)(QIOChannel *ioc,
> + AioContext *ctx,
> + IOHandler *io_read,
> + IOHandler *io_write,
> + void *opaque);
> };
>
> /* General I/O handling functions */
> @@ -525,4 +536,23 @@ void qio_channel_yield(QIOChannel *ioc,
> void qio_channel_wait(QIOChannel *ioc,
> GIOCondition condition);
>
> +/**
> + * qio_channel_set_aio_fd_handler:
> + * @ioc: the channel object
> + * @ctx: the AioContext to set the handlers on
> + * @io_read: the read handler
> + * @io_write: the write handler
> + * @opaque: the opaque value passed to the handler
> + *
> + * This is used internally by qio_channel_yield(). It can
> + * be used by channel implementations to forward the handlers
> + * to another channel (e.g. from #QIOChannelTLS to the
> + * underlying socket).
> + */
> +void qio_channel_set_aio_fd_handler(QIOChannel *ioc,
> + AioContext *ctx,
> + IOHandler *io_read,
> + IOHandler *io_write,
> + void *opaque);
> +
> #endif /* QIO_CHANNEL_H */
> diff --git a/io/channel-command.c b/io/channel-command.c
> index ad25313..4000b61 100644
> --- a/io/channel-command.c
> +++ b/io/channel-command.c
> @@ -328,6 +328,18 @@ static int qio_channel_command_close(QIOChannel *ioc,
> }
>
>
> +static void qio_channel_command_set_aio_fd_handler(QIOChannel *ioc,
> + AioContext *ctx,
> + IOHandler *io_read,
> + IOHandler *io_write,
> + void *opaque)
Alignment is a bit off.
> +{
> + QIOChannelCommand *cioc = QIO_CHANNEL_COMMAND(ioc);
> + aio_set_fd_handler(ctx, cioc->readfd, false, io_read, NULL, NULL, opaque);
> + aio_set_fd_handler(ctx, cioc->writefd, false, NULL, io_write, NULL, opaque);
> +}
> +
> +
> static GSource *qio_channel_command_create_watch(QIOChannel *ioc,
> GIOCondition condition)
> {
> @@ -349,6 +361,7 @@ static void qio_channel_command_class_init(ObjectClass *klass,
> ioc_klass->io_set_blocking = qio_channel_command_set_blocking;
> ioc_klass->io_close = qio_channel_command_close;
> ioc_klass->io_create_watch = qio_channel_command_create_watch;
> + ioc_klass->io_set_aio_fd_handler = qio_channel_command_set_aio_fd_handler;
> }
>
> static const TypeInfo qio_channel_command_info = {
> diff --git a/io/channel-file.c b/io/channel-file.c
> index e1da243..b383273 100644
> --- a/io/channel-file.c
> +++ b/io/channel-file.c
> @@ -186,6 +186,16 @@ static int qio_channel_file_close(QIOChannel *ioc,
> }
>
>
> +static void qio_channel_file_set_aio_fd_handler(QIOChannel *ioc,
> + AioContext *ctx,
> + IOHandler *io_read,
> + IOHandler *io_write,
> + void *opaque)
> +{
> + QIOChannelFile *fioc = QIO_CHANNEL_FILE(ioc);
> + aio_set_fd_handler(ctx, fioc->fd, false, io_read, io_write, NULL, opaque);
> +}
> +
> static GSource *qio_channel_file_create_watch(QIOChannel *ioc,
> GIOCondition condition)
> {
> @@ -206,6 +216,7 @@ static void qio_channel_file_class_init(ObjectClass *klass,
> ioc_klass->io_seek = qio_channel_file_seek;
> ioc_klass->io_close = qio_channel_file_close;
> ioc_klass->io_create_watch = qio_channel_file_create_watch;
> + ioc_klass->io_set_aio_fd_handler = qio_channel_file_set_aio_fd_handler;
> }
>
> static const TypeInfo qio_channel_file_info = {
> diff --git a/io/channel-socket.c b/io/channel-socket.c
> index d7e03f6..3909f65 100644
> --- a/io/channel-socket.c
> +++ b/io/channel-socket.c
> @@ -661,11 +661,6 @@ qio_channel_socket_set_blocking(QIOChannel *ioc,
> qemu_set_block(sioc->fd);
> } else {
> qemu_set_nonblock(sioc->fd);
> -#ifdef WIN32
> - WSAEventSelect(sioc->fd, ioc->event,
> - FD_READ | FD_ACCEPT | FD_CLOSE |
> - FD_CONNECT | FD_WRITE | FD_OOB);
> -#endif
> }
> return 0;
> }
> @@ -745,6 +740,16 @@ qio_channel_socket_shutdown(QIOChannel *ioc,
> return 0;
> }
>
> +static void qio_channel_socket_set_aio_fd_handler(QIOChannel *ioc,
> + AioContext *ctx,
> + IOHandler *io_read,
> + IOHandler *io_write,
> + void *opaque)
> +{
> + QIOChannelSocket *sioc = QIO_CHANNEL_SOCKET(ioc);
> + aio_set_fd_handler(ctx, sioc->fd, false, io_read, io_write, NULL, opaque);
> +}
> +
> static GSource *qio_channel_socket_create_watch(QIOChannel *ioc,
> GIOCondition condition)
> {
> @@ -767,6 +772,7 @@ static void qio_channel_socket_class_init(ObjectClass *klass,
> ioc_klass->io_set_cork = qio_channel_socket_set_cork;
> ioc_klass->io_set_delay = qio_channel_socket_set_delay;
> ioc_klass->io_create_watch = qio_channel_socket_create_watch;
> + ioc_klass->io_set_aio_fd_handler = qio_channel_socket_set_aio_fd_handler;
> }
>
> static const TypeInfo qio_channel_socket_info = {
> diff --git a/io/channel-tls.c b/io/channel-tls.c
> index d24dc8c..fa3f93e 100644
> --- a/io/channel-tls.c
> +++ b/io/channel-tls.c
> @@ -349,6 +349,17 @@ static int qio_channel_tls_close(QIOChannel *ioc,
> return qio_channel_close(tioc->master, errp);
> }
>
> +static void qio_channel_tls_set_aio_fd_handler(QIOChannel *ioc,
> + AioContext *ctx,
> + IOHandler *io_read,
> + IOHandler *io_write,
> + void *opaque)
> +{
> + QIOChannelTLS *tioc = QIO_CHANNEL_TLS(ioc);
> +
> + qio_channel_set_aio_fd_handler(tioc->master, ctx, io_read, io_write, opaque);
> +}
> +
> static GSource *qio_channel_tls_create_watch(QIOChannel *ioc,
> GIOCondition condition)
> {
> @@ -376,6 +387,7 @@ static void qio_channel_tls_class_init(ObjectClass *klass,
> ioc_klass->io_close = qio_channel_tls_close;
> ioc_klass->io_shutdown = qio_channel_tls_shutdown;
> ioc_klass->io_create_watch = qio_channel_tls_create_watch;
> + ioc_klass->io_set_aio_fd_handler = qio_channel_tls_set_aio_fd_handler;
> }
>
> static const TypeInfo qio_channel_tls_info = {
> diff --git a/io/channel-watch.c b/io/channel-watch.c
> index cf1cdff..8640d1c 100644
> --- a/io/channel-watch.c
> +++ b/io/channel-watch.c
> @@ -285,6 +285,12 @@ GSource *qio_channel_create_socket_watch(QIOChannel *ioc,
> GSource *source;
> QIOChannelSocketSource *ssource;
>
> +#ifdef WIN32
> + WSAEventSelect(socket, ioc->event,
> + FD_READ | FD_ACCEPT | FD_CLOSE |
> + FD_CONNECT | FD_WRITE | FD_OOB);
> +#endif
> +
Not sure about this code movement (previously it is only for nonblocking),
otherwise looks good.
Fam
> source = g_source_new(&qio_channel_socket_source_funcs,
> sizeof(QIOChannelSocketSource));
> ssource = (QIOChannelSocketSource *)source;
> diff --git a/io/channel.c b/io/channel.c
> index 80924c1..ce470d7 100644
> --- a/io/channel.c
> +++ b/io/channel.c
> @@ -154,6 +154,17 @@ GSource *qio_channel_create_watch(QIOChannel *ioc,
> }
>
>
> +void qio_channel_set_aio_fd_handler(QIOChannel *ioc,
> + AioContext *ctx,
> + IOHandler *io_read,
> + IOHandler *io_write,
> + void *opaque)
> +{
> + QIOChannelClass *klass = QIO_CHANNEL_GET_CLASS(ioc);
> +
> + klass->io_set_aio_fd_handler(ioc, ctx, io_read, io_write, opaque);
> +}
> +
> guint qio_channel_add_watch(QIOChannel *ioc,
> GIOCondition condition,
> QIOChannelFunc func,
> --
> 2.9.3
>
>
next prev parent reply other threads:[~2017-01-16 11:31 UTC|newest]
Thread overview: 69+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-13 13:17 [Qemu-devel] [PATCH 00/16] aio_context_acquire/release pushdown, part 2 Paolo Bonzini
2017-01-13 13:17 ` [Qemu-devel] [PATCH 01/16] aio: introduce aio_co_schedule and aio_co_wake Paolo Bonzini
2017-01-16 11:09 ` Fam Zheng
2017-01-16 12:19 ` Paolo Bonzini
2017-01-16 12:44 ` Fam Zheng
2017-01-18 14:33 ` Stefan Hajnoczi
2017-01-18 15:40 ` Paolo Bonzini
2017-01-19 16:49 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 02/16] block-backend: allow blk_prw from coroutine context Paolo Bonzini
2017-01-18 14:35 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 03/16] test-thread-pool: use generic AioContext infrastructure Paolo Bonzini
2017-01-18 14:35 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 04/16] io: add methods to set I/O handlers on AioContext Paolo Bonzini
2017-01-16 11:31 ` Fam Zheng [this message]
2017-01-16 12:52 ` Daniel P. Berrange
2017-01-16 12:54 ` Daniel P. Berrange
2017-01-18 14:47 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 05/16] io: make qio_channel_yield aware of AioContexts Paolo Bonzini
2017-01-16 11:38 ` Fam Zheng
2017-01-16 12:24 ` Paolo Bonzini
2017-01-16 12:47 ` Fam Zheng
2017-01-16 12:59 ` Daniel P. Berrange
2017-01-16 12:55 ` Daniel P. Berrange
2017-01-18 14:48 ` Stefan Hajnoczi
2017-01-16 12:58 ` Daniel P. Berrange
2017-01-16 14:18 ` Paolo Bonzini
2017-01-18 14:58 ` Stefan Hajnoczi
2017-01-18 16:43 ` Paolo Bonzini
2017-01-18 17:22 ` Eric Blake
2017-01-13 13:17 ` [Qemu-devel] [PATCH 06/16] nbd: do not block on partial reply header reads Paolo Bonzini
2017-01-16 12:52 ` Fam Zheng
2017-01-16 13:31 ` Paolo Bonzini
2017-01-18 15:24 ` Stefan Hajnoczi
2017-01-18 16:43 ` Paolo Bonzini
2017-01-13 13:17 ` [Qemu-devel] [PATCH 07/16] coroutine-lock: reschedule coroutine on the AioContext it was running on Paolo Bonzini
2017-01-18 15:26 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 08/16] qed: introduce qed_aio_start_io and qed_aio_next_io_cb Paolo Bonzini
2017-01-18 15:27 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 09/16] aio: push aio_context_acquire/release down to dispatching Paolo Bonzini
2017-01-18 15:29 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 10/16] block: explicitly acquire aiocontext in timers that need it Paolo Bonzini
2017-01-16 13:07 ` Fam Zheng
2017-01-16 13:32 ` Paolo Bonzini
2017-01-16 13:50 ` Fam Zheng
2017-01-18 15:43 ` Stefan Hajnoczi
2017-01-18 16:44 ` Paolo Bonzini
2017-01-19 16:59 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 11/16] block: explicitly acquire aiocontext in callbacks " Paolo Bonzini
2017-01-16 13:36 ` Fam Zheng
2017-01-16 14:49 ` Paolo Bonzini
2017-01-18 15:49 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 12/16] block: explicitly acquire aiocontext in bottom halves " Paolo Bonzini
2017-01-18 15:54 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 13/16] block: explicitly acquire aiocontext in aio callbacks " Paolo Bonzini
2017-01-18 15:58 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 14/16] aio-posix: partially inline aio_dispatch into aio_poll Paolo Bonzini
2017-01-18 15:59 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 15/16] async: remove unnecessary inc/dec pairs Paolo Bonzini
2017-01-18 16:00 ` Stefan Hajnoczi
2017-01-13 13:17 ` [Qemu-devel] [PATCH 16/16] block: document fields protected by AioContext lock Paolo Bonzini
2017-01-18 16:01 ` Stefan Hajnoczi
2017-01-16 16:26 ` [Qemu-devel] [PATCH 00/16] aio_context_acquire/release pushdown, part 2 Fam Zheng
2017-01-18 16:02 ` Stefan Hajnoczi
2017-01-18 16:07 ` Paolo Bonzini
2017-01-18 16:03 ` Stefan Hajnoczi
2017-01-18 16:31 ` Paolo Bonzini
2017-01-19 17:01 ` Stefan Hajnoczi
2017-01-20 16:39 ` Paolo Bonzini
2017-01-23 10:36 ` Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170116113115.GC14226@lemon.Home \
--to=famz@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.