All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: Zhang Chen <zhangckid@gmail.com>
Cc: qemu-devel <qemu-devel@nongnu.org>,
	 "Dr . David Alan Gilbert" <dave@treblig.org>,
	 Eric Blake <eblake@redhat.com>,
	 "Michael S . Tsirkin" <mst@redhat.com>,
	 Stefan Hajnoczi <stefanha@redhat.com>
Subject: Re: [PATCH V8 15/15] iothread: simplify API by merging iothread_get_aio_context variants
Date: Tue, 02 Jun 2026 19:41:24 +0200	[thread overview]
Message-ID: <87eciorgaj.fsf@pond.sub.org> (raw)
In-Reply-To: <20260529213321.96271-16-zhangckid@gmail.com> (Zhang Chen's message of "Sat, 30 May 2026 05:33:21 +0800")

Zhang Chen <zhangckid@gmail.com> writes:

> Simplify the interface by merging iothread_ref_and_get_aio_context()
> into iothread_get_aio_context(). The updated function now requires a
> 'holder' parameter, ensuring that every retrieval of an AioContext for
> long-term use is automatically registered in the IOThread's holder list.
>
> Update all callers across block, virtio, scsi, net, and monitor
> subsystems to match the new signature. This cleanup reduces code
> redundancy and improves the reliability of IOThread introspection.
>
> Signed-off-by: Zhang Chen <zhangckid@gmail.com>
> ---
>  block/export/export.c           | 5 ++---
>  hw/block/dataplane/xen-block.c  | 4 ++--
>  hw/block/virtio-blk.c           | 4 ++--
>  hw/scsi/virtio-scsi-dataplane.c | 4 ++--
>  hw/vfio-user/proxy.c            | 3 +--
>  hw/virtio/iothread-vq-mapping.c | 3 +--
>  hw/virtio/virtio-balloon.c      | 2 +-
>  include/system/iothread.h       | 6 +++---
>  iothread.c                      | 9 ++-------
>  monitor/monitor.c               | 2 +-
>  net/colo-compare.c              | 2 +-
>  11 files changed, 18 insertions(+), 26 deletions(-)
>
> diff --git a/block/export/export.c b/block/export/export.c
> index b6c07f69b5..acd061e86e 100644
> --- a/block/export/export.c
> +++ b/block/export/export.c
> @@ -146,7 +146,7 @@ BlockExport *blk_exp_add(BlockExportOptions *export, Error **errp)
>              .u.block_node.node_name = (char *)holder_name,
>          };
>  
> -        new_ctx = iothread_ref_and_get_aio_context(iothread, &holder);
> +        new_ctx = iothread_get_aio_context(iothread, &holder);
>          multithread_count = 1;
>          local_iothreads = g_new0(IOThread *, 1);
>          local_iothreads[0] = iothread;
> @@ -190,8 +190,7 @@ BlockExport *blk_exp_add(BlockExportOptions *export, Error **errp)
>                  goto fail;
>              }
>              local_iothreads[i] = iothread;
> -            multithread_ctxs[i++] = iothread_ref_and_get_aio_context(iothread,
> -                                                                     &holder);
> +            multithread_ctxs[i++] = iothread_get_aio_context(iothread, &holder);
>          }
>          assert(i == multithread_count);
>      }
> diff --git a/hw/block/dataplane/xen-block.c b/hw/block/dataplane/xen-block.c
> index b5bf8d359f..46bfd62f5a 100644
> --- a/hw/block/dataplane/xen-block.c
> +++ b/hw/block/dataplane/xen-block.c
> @@ -628,8 +628,8 @@ XenBlockDataPlane *xen_block_dataplane_create(XenDevice *xendev,
>          };
>  
>          dataplane->iothread = iothread;
> -        dataplane->ctx = iothread_ref_and_get_aio_context(dataplane->iothread,
> -                                                          &io_holder);
> +        dataplane->ctx = iothread_get_aio_context(dataplane->iothread,
> +                                                  &io_holder);
>      } else {
>          dataplane->ctx = qemu_get_aio_context();
>      }
> diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
> index d8dc1dd136..d1d2bd7025 100644
> --- a/hw/block/virtio-blk.c
> +++ b/hw/block/virtio-blk.c
> @@ -1502,8 +1502,8 @@ static bool virtio_blk_vq_aio_context_init(VirtIOBlock *s, Error **errp)
>              .type = IO_THREAD_HOLDER_KIND_QOM_OBJECT,
>              .u.qom_object.qom_path = (char *)path,
>          };
> -        AioContext *ctx = iothread_ref_and_get_aio_context(conf->iothread,
> -                                                           &io_holder);
> +        AioContext *ctx = iothread_get_aio_context(conf->iothread,
> +                                                   &io_holder);
>          for (unsigned i = 0; i < conf->num_queues; i++) {
>              s->vq_aio_context[i] = ctx;
>          }
> diff --git a/hw/scsi/virtio-scsi-dataplane.c b/hw/scsi/virtio-scsi-dataplane.c
> index c71f33b41e..76ab22610f 100644
> --- a/hw/scsi/virtio-scsi-dataplane.c
> +++ b/hw/scsi/virtio-scsi-dataplane.c
> @@ -78,8 +78,8 @@ void virtio_scsi_dataplane_setup(VirtIOSCSI *s, Error **errp)
>              .type = IO_THREAD_HOLDER_KIND_QOM_OBJECT,
>              .u.qom_object.qom_path = (char *)path,
>          };
> -        AioContext *ctx = iothread_ref_and_get_aio_context(vs->conf.iothread,
> -                                                           &io_holder);
> +        AioContext *ctx = iothread_get_aio_context(vs->conf.iothread,
> +                                                   &io_holder);
>          for (uint16_t i = 0; i < vs->conf.num_queues; i++) {
>              s->vq_aio_context[VIRTIO_SCSI_VQ_NUM_FIXED + i] = ctx;
>          }
> diff --git a/hw/vfio-user/proxy.c b/hw/vfio-user/proxy.c
> index 756f368849..24af3c791b 100644
> --- a/hw/vfio-user/proxy.c
> +++ b/hw/vfio-user/proxy.c
> @@ -942,8 +942,7 @@ VFIOUserProxy *vfio_user_connect_dev(SocketAddress *addr, Error **errp)
>          vfio_user_iothread = iothread_create("VFIO user", errp);
>      }
>  
> -    proxy->ctx = iothread_ref_and_get_aio_context(vfio_user_iothread,
> -                                                  &io_holder);
> +    proxy->ctx = iothread_get_aio_context(vfio_user_iothread, &io_holder);
>      proxy->req_bh = qemu_bh_new(vfio_user_request, proxy);
>  
>      QTAILQ_INIT(&proxy->outgoing);
> diff --git a/hw/virtio/iothread-vq-mapping.c b/hw/virtio/iothread-vq-mapping.c
> index 2cb48dd387..727358a483 100644
> --- a/hw/virtio/iothread-vq-mapping.c
> +++ b/hw/virtio/iothread-vq-mapping.c
> @@ -99,8 +99,7 @@ bool iothread_vq_mapping_apply(
>              .u.qom_object.qom_path = (char *)holder,
>          };
>  
> -        AioContext *ctx = iothread_ref_and_get_aio_context(iothread,
> -                                                           &io_holder);
> +        AioContext *ctx = iothread_get_aio_context(iothread, &io_holder);
>  
>          if (node->value->vqs) {
>              uint16List *vq;
> diff --git a/hw/virtio/virtio-balloon.c b/hw/virtio/virtio-balloon.c
> index e9d023b4ec..4405a87ed0 100644
> --- a/hw/virtio/virtio-balloon.c
> +++ b/hw/virtio/virtio-balloon.c
> @@ -903,7 +903,7 @@ static void virtio_balloon_device_realize(DeviceState *dev, Error **errp)
>          precopy_add_notifier(&s->free_page_hint_notify);
>  
>          s->free_page_bh = aio_bh_new_guarded(
> -                      iothread_ref_and_get_aio_context(s->iothread, &io_holder),
> +                      iothread_get_aio_context(s->iothread, &io_holder),
>                        virtio_ballloon_get_free_page_hints, s,
>                        &dev->mem_reentrancy_guard);
>      }
> diff --git a/include/system/iothread.h b/include/system/iothread.h
> index 064c05e78d..e5db215954 100644
> --- a/include/system/iothread.h
> +++ b/include/system/iothread.h
> @@ -70,15 +70,15 @@ DECLARE_INSTANCE_CHECKER(IOThread, IOTHREAD,
>  
>  char *iothread_get_id(IOThread *iothread);
>  IOThread *iothread_by_id(const char *id);
> -AioContext *iothread_get_aio_context(IOThread *iothread);
> +
>  /*
>   * The iothread_unsafe_get_aio_context() is a low-level unsafe way of getting
>   * the AioContext, recommend migrating to the new API with IOThreadHolder
>   * as much as possible.
>   */
>  AioContext *iothread_unsafe_get_aio_context(IOThread *iothread);
> -AioContext *iothread_ref_and_get_aio_context(IOThread *iothread,
> -                                             const IOThreadHolder *holder);
> +AioContext *iothread_get_aio_context(IOThread *iothread,
> +                                     const IOThreadHolder *holder);
>  void iothread_put_aio_context(IOThread *iothread, const IOThreadHolder *holder);
>  GMainContext *iothread_get_g_main_context(IOThread *iothread);
>  
> diff --git a/iothread.c b/iothread.c
> index 5949785b32..9bc8e359c1 100644
> --- a/iothread.c
> +++ b/iothread.c
> @@ -469,13 +469,8 @@ char *iothread_get_id(IOThread *iothread)
>      return g_strdup(object_get_canonical_path_component(OBJECT(iothread)));
>  }
>  
> -AioContext *iothread_get_aio_context(IOThread *iothread)
> -{
> -    return iothread->ctx;
> -}
> -
> -AioContext *iothread_ref_and_get_aio_context(IOThread *iothread,
> -                                             const IOThreadHolder *holder)
> +AioContext *iothread_get_aio_context(IOThread *iothread,
> +                                     const IOThreadHolder *holder)
>  {
>      /* Add IOThreadHolder to the list */
>      iothread_ref(iothread, holder);
> diff --git a/monitor/monitor.c b/monitor/monitor.c
> index 7eec6f967d..4d00cf499c 100644
> --- a/monitor/monitor.c
> +++ b/monitor/monitor.c
> @@ -617,7 +617,7 @@ void monitor_data_init(Monitor *mon, bool is_qmp, bool skip_flush,
>              .type = IO_THREAD_HOLDER_KIND_MONITOR_NAME,
>              .u.monitor_name.monitor_name = (char *)mon->id,
>          };
> -        mon->ctx = iothread_ref_and_get_aio_context(mon_iothread, &holder);
> +        mon->ctx = iothread_get_aio_context(mon_iothread, &holder);
>      }
>      qemu_mutex_init(&mon->mon_lock);
>      mon->is_qmp = is_qmp;
> diff --git a/net/colo-compare.c b/net/colo-compare.c
> index 4f180936e3..820ea4d824 100644
> --- a/net/colo-compare.c
> +++ b/net/colo-compare.c
> @@ -973,7 +973,7 @@ static void colo_compare_iothread(CompareState *s)
>          .u.qom_object.qom_path = (char *)path,
>      };
>  
> -    AioContext *ctx = iothread_ref_and_get_aio_context(s->iothread, &io_holder);
> +    AioContext *ctx = iothread_get_aio_context(s->iothread, &io_holder);
>  
>      s->iothread_ctx = ctx;
>      s->worker_context = iothread_get_g_main_context(s->iothread);


The patch appears to delete unused iothread_get_aio_context() from
iothread.[cg] and to rename iothread_ref_and_get_aio_context() to
iothread_get_aio_context().  It leaves iothread_get_aio_context() in
tests/unit/iothread.[ch] alone.  The result is confusing: test's
iothread_get_aio_context() takes now one parameter less than the regular
one.

Should you change both versions?



  reply	other threads:[~2026-06-02 17:42 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-29 21:33 [PATCH V8 00/15] iothread: Support tracking and querying IOThread holders Zhang Chen
2026-05-29 21:33 ` [PATCH V8 01/15] qapi/misc: Fix missed query-iothreads items Zhang Chen
2026-05-29 21:33 ` [PATCH V8 02/15] iothread: introduce iothread_ref/unref to track attached devices Zhang Chen
2026-06-02 11:29   ` Markus Armbruster
2026-05-29 21:33 ` [PATCH V8 03/15] iothread: tracking iothread users with holder name Zhang Chen
2026-05-29 21:33 ` [PATCH V8 04/15] iothread: introduce iothread_unsafe_get_aio_context() Zhang Chen
2026-05-29 21:33 ` [PATCH V8 05/15] block/export: track IOThread reference in BlockExport Zhang Chen
2026-05-29 21:33 ` [PATCH V8 06/15] monitor: assign unique default ID to anonymous monitors Zhang Chen
2026-06-02 17:02   ` Markus Armbruster
2026-06-04  9:57     ` Zhang Chen
2026-05-29 21:33 ` [PATCH V8 07/15] monitor: Update tracking iothread users with holder Zhang Chen
2026-06-02 17:20   ` Markus Armbruster
2026-06-04 10:16     ` Zhang Chen
2026-05-29 21:33 ` [PATCH V8 08/15] virtio-vq-mapping: track iothread-vq-mapping references using device path Zhang Chen
2026-05-29 21:33 ` [PATCH V8 09/15] virtio: use iothread_get/put_aio_context for thread pinning Zhang Chen
2026-05-29 21:33 ` [PATCH V8 10/15] net/colo: track IOThread references using path-based holder Zhang Chen
2026-05-29 21:33 ` [PATCH V8 11/15] virtio-balloon: Update tracking iothread users with holder Zhang Chen
2026-05-29 21:33 ` [PATCH V8 12/15] vfio-user/proxy: Update tracking iothread users with holder name Zhang Chen
2026-05-29 21:33 ` [PATCH V8 13/15] xen-block: " Zhang Chen
2026-05-29 21:33 ` [PATCH V8 14/15] qapi: examine IOThread attachment status via query-iothreads Zhang Chen
2026-06-02 17:34   ` Markus Armbruster
2026-06-04 11:49     ` Zhang Chen
2026-05-29 21:33 ` [PATCH V8 15/15] iothread: simplify API by merging iothread_get_aio_context variants Zhang Chen
2026-06-02 17:41   ` Markus Armbruster [this message]
2026-06-04 11:53     ` Zhang Chen

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=87eciorgaj.fsf@pond.sub.org \
    --to=armbru@redhat.com \
    --cc=dave@treblig.org \
    --cc=eblake@redhat.com \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    --cc=zhangckid@gmail.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.