qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 6/6] main: set names for main loop sources creat


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [PATCH 6/6] main: set names for main loop sources created
Date: Fri, 30 Sep 2016 18:13:03 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0


On 30/09/2016 17:17, Daniel P. Berrange wrote:
> The main loop creates two generic sources for the AIO
> and IO handler systems.
> 
> Signed-off-by: Daniel P. Berrange <address@hidden>
> ---
>  main-loop.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/main-loop.c b/main-loop.c
> index 6a7f8d3..66c4eb6 100644
> --- a/main-loop.c
> +++ b/main-loop.c
> @@ -161,9 +161,11 @@ int qemu_init_main_loop(Error **errp)
>      qemu_notify_bh = qemu_bh_new(notify_event_cb, NULL);
>      gpollfds = g_array_new(FALSE, FALSE, sizeof(GPollFD));
>      src = aio_get_g_source(qemu_aio_context);
> +    g_source_set_name(src, "aio-context");
>      g_source_attach(src, NULL);
>      g_source_unref(src);
>      src = iohandler_get_g_source();
> +    g_source_set_name(src, "io-handler");
>      g_source_attach(src, NULL);
>      g_source_unref(src);
>      return 0;
> 

Acked-by: Paolo Bonzini <address@hidden>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]