From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: qemu-devel@nongnu.org, stefanha@redhat.com
Subject: Re: [Qemu-devel] [PATCH for-2.5] iothread: include id in thread name
Date: Fri, 20 Nov 2015 13:09:33 +0000 [thread overview]
Message-ID: <20151120130933.GD12796@work-vm> (raw)
In-Reply-To: <1448021712-40190-1-git-send-email-pbonzini@redhat.com>
* Paolo Bonzini (pbonzini@redhat.com) wrote:
> This makes it easier to find the desired thread
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> iothread.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/iothread.c b/iothread.c
> index da6ce7b..8a1d6f8 100644
> --- a/iothread.c
> +++ b/iothread.c
> @@ -72,6 +72,7 @@ static void iothread_complete(UserCreatable *obj, Error **errp)
> {
> Error *local_error = NULL;
> IOThread *iothread = IOTHREAD(obj);
> + char *name, *thread_name;
>
> iothread->stopping = false;
> iothread->thread_id = -1;
> @@ -87,8 +88,12 @@ static void iothread_complete(UserCreatable *obj, Error **errp)
> /* This assumes we are called from a thread with useful CPU affinity for us
> * to inherit.
> */
> - qemu_thread_create(&iothread->thread, "iothread", iothread_run,
> + name = object_get_canonical_path_component(OBJECT(obj));
> + thread_name = g_strdup_printf("iothread %s", name);
Yes, that's a good idea; Can you shorten that to just "IO %s" please,
for three reasons:
1) There is a ~14 character limit on the size of that string
2) We use CPU ... for the CPU threads.
3) It's a threadname, it doesn't need to say thread
Dave
> + qemu_thread_create(&iothread->thread, thread_name, iothread_run,
> iothread, QEMU_THREAD_JOINABLE);
> + g_free(thread_name);
> + g_free(name);
>
> /* Wait for initialization to complete */
> qemu_mutex_lock(&iothread->init_done_lock);
> --
> 1.8.3.1
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2015-11-20 13:09 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-20 12:15 [Qemu-devel] [PATCH for-2.5] iothread: include id in thread name Paolo Bonzini
2015-11-20 13:09 ` Dr. David Alan Gilbert [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-11-24 13:46 [Qemu-devel] [PATCH for-2.5?] " Paolo Bonzini
2015-11-24 15:02 ` Dr. David Alan Gilbert
2015-11-25 9:53 ` 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=20151120130933.GD12796@work-vm \
--to=dgilbert@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).