* [Qemu-devel] [PATCH for-2.5] iothread: include id in thread name
@ 2015-11-20 12:15 Paolo Bonzini
2015-11-20 13:09 ` Dr. David Alan Gilbert
0 siblings, 1 reply; 5+ messages in thread
From: Paolo Bonzini @ 2015-11-20 12:15 UTC (permalink / raw)
To: qemu-devel; +Cc: dgilbert, stefanha
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);
+ 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH for-2.5] iothread: include id in thread name
2015-11-20 12:15 [Qemu-devel] [PATCH for-2.5] " Paolo Bonzini
@ 2015-11-20 13:09 ` Dr. David Alan Gilbert
0 siblings, 0 replies; 5+ messages in thread
From: Dr. David Alan Gilbert @ 2015-11-20 13:09 UTC (permalink / raw)
To: Paolo Bonzini; +Cc: qemu-devel, stefanha
* 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
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH for-2.5?] iothread: include id in thread name
@ 2015-11-24 13:46 Paolo Bonzini
2015-11-24 15:02 ` Dr. David Alan Gilbert
2015-11-25 9:53 ` Stefan Hajnoczi
0 siblings, 2 replies; 5+ messages in thread
From: Paolo Bonzini @ 2015-11-24 13:46 UTC (permalink / raw)
To: qemu-devel; +Cc: dgilbert, stefanha
This makes it easier to find the desired thread. Use "IO" plus the id;
even with the 14 character limit on the thread name, enough of the id should
be readable (e.g. "IO iothreadNNN" with three characters for the number).
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
v1->v2: shorten prefix (David Gilbert)
---
iothread.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/iothread.c b/iothread.c
index da6ce7b..1b8c2bb 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("IO %s", name);
+ 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH for-2.5?] iothread: include id in thread name
2015-11-24 13:46 [Qemu-devel] [PATCH for-2.5?] iothread: include id in thread name Paolo Bonzini
@ 2015-11-24 15:02 ` Dr. David Alan Gilbert
2015-11-25 9:53 ` Stefan Hajnoczi
1 sibling, 0 replies; 5+ messages in thread
From: Dr. David Alan Gilbert @ 2015-11-24 15:02 UTC (permalink / raw)
To: Paolo Bonzini; +Cc: qemu-devel, stefanha
* Paolo Bonzini (pbonzini@redhat.com) wrote:
> This makes it easier to find the desired thread. Use "IO" plus the id;
> even with the 14 character limit on the thread name, enough of the id should
> be readable (e.g. "IO iothreadNNN" with three characters for the number).
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
(If it's too long, the thread name just doesn't get set)
Dave
> ---
> v1->v2: shorten prefix (David Gilbert)
> ---
> iothread.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/iothread.c b/iothread.c
> index da6ce7b..1b8c2bb 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("IO %s", name);
> + 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
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH for-2.5?] iothread: include id in thread name
2015-11-24 13:46 [Qemu-devel] [PATCH for-2.5?] iothread: include id in thread name Paolo Bonzini
2015-11-24 15:02 ` Dr. David Alan Gilbert
@ 2015-11-25 9:53 ` Stefan Hajnoczi
1 sibling, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2015-11-25 9:53 UTC (permalink / raw)
To: Paolo Bonzini; +Cc: qemu-devel, stefanha, dgilbert
[-- Attachment #1: Type: text/plain, Size: 584 bytes --]
On Tue, Nov 24, 2015 at 02:46:44PM +0100, Paolo Bonzini wrote:
> This makes it easier to find the desired thread. Use "IO" plus the id;
> even with the 14 character limit on the thread name, enough of the id should
> be readable (e.g. "IO iothreadNNN" with three characters for the number).
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> v1->v2: shorten prefix (David Gilbert)
> ---
> iothread.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
Thanks, applied to my block tree:
https://github.com/stefanha/qemu/commits/block
Stefan
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-11-25 9:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-24 13:46 [Qemu-devel] [PATCH for-2.5?] iothread: include id in thread name Paolo Bonzini
2015-11-24 15:02 ` Dr. David Alan Gilbert
2015-11-25 9:53 ` Stefan Hajnoczi
-- strict thread matches above, loose matches on Subject: below --
2015-11-20 12:15 [Qemu-devel] [PATCH for-2.5] " Paolo Bonzini
2015-11-20 13:09 ` Dr. David Alan Gilbert
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).