* [Qemu-devel] [PATCH] cpus: make qemu_mutex_iothread_locked() understand co-routines
@ 2016-10-21 11:54 Alex Bennée
2016-11-01 15:04 ` Paolo Bonzini
0 siblings, 1 reply; 5+ messages in thread
From: Alex Bennée @ 2016-10-21 11:54 UTC (permalink / raw)
To: stefanha, pbonzini
Cc: qemu-devel, Alex Bennée, Peter Crosthwaite,
Richard Henderson
There is a slight wart when checking for the state of the BQL when using
GThread base co-routines (which we keep for ThreadSanitizer runs). While
the main-loop holds the BQL it is suspended until the co-routine
completes however the co-routines run in a separate thread so checking
the TLS variable could be wrong.
We fix this by expanding the check to include qemu_in_coroutine() for
GThread based builds. As it is not used for production builds I'm not
overly worried about any performance impact which should be negligible
anyway.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Cc: Stefan Hajnoczi <stefanha@redhat.com>
---
configure | 3 +++
cpus.c | 13 +++++++++++++
2 files changed, 16 insertions(+)
diff --git a/configure b/configure
index 91a14c1..97b89fb 100755
--- a/configure
+++ b/configure
@@ -5461,6 +5461,9 @@ if test "$rbd" = "yes" ; then
fi
echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
+if test "$coroutine" = "gthread" ; then
+ echo "CONFIG_COROUTINE_GTHREAD=1" >> $config_host_mak
+fi
if test "$coroutine_pool" = "yes" ; then
echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak
else
diff --git a/cpus.c b/cpus.c
index 0c18a9f..a3e189a 100644
--- a/cpus.c
+++ b/cpus.c
@@ -49,6 +49,10 @@
#include "hw/nmi.h"
#include "sysemu/replay.h"
+#ifdef CONFIG_COROUTINE_GTHREAD
+#include "qemu/coroutine.h"
+#endif
+
#ifndef _WIN32
#include "qemu/compatfd.h"
#endif
@@ -1422,9 +1426,18 @@ bool qemu_in_vcpu_thread(void)
static __thread bool iothread_locked = false;
+/*
+ * There is a slight wart when using gthread based co-routines. Here
+ * the BQL is held by the main-thread which is suspended until the
+ * co-routines complete.
+ */
bool qemu_mutex_iothread_locked(void)
{
+#ifdef CONFIG_COROUTINE_GTHREAD
+ return iothread_locked || qemu_in_coroutine();
+#else
return iothread_locked;
+#endif
}
void qemu_mutex_lock_iothread(void)
--
2.9.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] cpus: make qemu_mutex_iothread_locked() understand co-routines
2016-10-21 11:54 [Qemu-devel] [PATCH] cpus: make qemu_mutex_iothread_locked() understand co-routines Alex Bennée
@ 2016-11-01 15:04 ` Paolo Bonzini
2016-11-01 16:21 ` Alex Bennée
0 siblings, 1 reply; 5+ messages in thread
From: Paolo Bonzini @ 2016-11-01 15:04 UTC (permalink / raw)
To: Alex Bennée, stefanha
Cc: qemu-devel, Peter Crosthwaite, Richard Henderson
On 21/10/2016 13:54, Alex Bennée wrote:
> There is a slight wart when checking for the state of the BQL when using
> GThread base co-routines (which we keep for ThreadSanitizer runs). While
> the main-loop holds the BQL it is suspended until the co-routine
> completes however the co-routines run in a separate thread so checking
> the TLS variable could be wrong.
>
> We fix this by expanding the check to include qemu_in_coroutine() for
> GThread based builds. As it is not used for production builds I'm not
> overly worried about any performance impact which should be negligible
> anyway.
>
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> Cc: Stefan Hajnoczi <stefanha@redhat.com>
This is wrong unfortunately. It is possible to run coroutines outside
the BQL (e.g. with -device virtio-blk,iothread=foo).
Do you know exactly why TSAN has no love for coroutines?
Paolo
> ---
> configure | 3 +++
> cpus.c | 13 +++++++++++++
> 2 files changed, 16 insertions(+)
>
> diff --git a/configure b/configure
> index 91a14c1..97b89fb 100755
> --- a/configure
> +++ b/configure
> @@ -5461,6 +5461,9 @@ if test "$rbd" = "yes" ; then
> fi
>
> echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
> +if test "$coroutine" = "gthread" ; then
> + echo "CONFIG_COROUTINE_GTHREAD=1" >> $config_host_mak
> +fi
> if test "$coroutine_pool" = "yes" ; then
> echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak
> else
> diff --git a/cpus.c b/cpus.c
> index 0c18a9f..a3e189a 100644
> --- a/cpus.c
> +++ b/cpus.c
> @@ -49,6 +49,10 @@
> #include "hw/nmi.h"
> #include "sysemu/replay.h"
>
> +#ifdef CONFIG_COROUTINE_GTHREAD
> +#include "qemu/coroutine.h"
> +#endif
> +
> #ifndef _WIN32
> #include "qemu/compatfd.h"
> #endif
> @@ -1422,9 +1426,18 @@ bool qemu_in_vcpu_thread(void)
>
> static __thread bool iothread_locked = false;
>
> +/*
> + * There is a slight wart when using gthread based co-routines. Here
> + * the BQL is held by the main-thread which is suspended until the
> + * co-routines complete.
> + */
> bool qemu_mutex_iothread_locked(void)
> {
> +#ifdef CONFIG_COROUTINE_GTHREAD
> + return iothread_locked || qemu_in_coroutine();
> +#else
> return iothread_locked;
> +#endif
> }
>
> void qemu_mutex_lock_iothread(void)
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] cpus: make qemu_mutex_iothread_locked() understand co-routines
2016-11-01 15:04 ` Paolo Bonzini
@ 2016-11-01 16:21 ` Alex Bennée
2016-11-02 14:06 ` Stefan Hajnoczi
0 siblings, 1 reply; 5+ messages in thread
From: Alex Bennée @ 2016-11-01 16:21 UTC (permalink / raw)
To: Paolo Bonzini; +Cc: stefanha, qemu-devel, Peter Crosthwaite, Richard Henderson
Paolo Bonzini <pbonzini@redhat.com> writes:
> On 21/10/2016 13:54, Alex Bennée wrote:
>> There is a slight wart when checking for the state of the BQL when using
>> GThread base co-routines (which we keep for ThreadSanitizer runs). While
>> the main-loop holds the BQL it is suspended until the co-routine
>> completes however the co-routines run in a separate thread so checking
>> the TLS variable could be wrong.
>>
>> We fix this by expanding the check to include qemu_in_coroutine() for
>> GThread based builds. As it is not used for production builds I'm not
>> overly worried about any performance impact which should be negligible
>> anyway.
>>
>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>> Cc: Stefan Hajnoczi <stefanha@redhat.com>
>
> This is wrong unfortunately. It is possible to run coroutines outside
> the BQL (e.g. with -device virtio-blk,iothread=foo).
>
> Do you know exactly why TSAN has no love for coroutines?
The current production stuff is due to missing support for new stacks
with setcontext. However I have built the latest tsan support library
and that seems happy without the gthread co-routines.
Currently I'm dealing with glib's racy gthread support however.
>
> Paolo
>
>> ---
>> configure | 3 +++
>> cpus.c | 13 +++++++++++++
>> 2 files changed, 16 insertions(+)
>>
>> diff --git a/configure b/configure
>> index 91a14c1..97b89fb 100755
>> --- a/configure
>> +++ b/configure
>> @@ -5461,6 +5461,9 @@ if test "$rbd" = "yes" ; then
>> fi
>>
>> echo "CONFIG_COROUTINE_BACKEND=$coroutine" >> $config_host_mak
>> +if test "$coroutine" = "gthread" ; then
>> + echo "CONFIG_COROUTINE_GTHREAD=1" >> $config_host_mak
>> +fi
>> if test "$coroutine_pool" = "yes" ; then
>> echo "CONFIG_COROUTINE_POOL=1" >> $config_host_mak
>> else
>> diff --git a/cpus.c b/cpus.c
>> index 0c18a9f..a3e189a 100644
>> --- a/cpus.c
>> +++ b/cpus.c
>> @@ -49,6 +49,10 @@
>> #include "hw/nmi.h"
>> #include "sysemu/replay.h"
>>
>> +#ifdef CONFIG_COROUTINE_GTHREAD
>> +#include "qemu/coroutine.h"
>> +#endif
>> +
>> #ifndef _WIN32
>> #include "qemu/compatfd.h"
>> #endif
>> @@ -1422,9 +1426,18 @@ bool qemu_in_vcpu_thread(void)
>>
>> static __thread bool iothread_locked = false;
>>
>> +/*
>> + * There is a slight wart when using gthread based co-routines. Here
>> + * the BQL is held by the main-thread which is suspended until the
>> + * co-routines complete.
>> + */
>> bool qemu_mutex_iothread_locked(void)
>> {
>> +#ifdef CONFIG_COROUTINE_GTHREAD
>> + return iothread_locked || qemu_in_coroutine();
>> +#else
>> return iothread_locked;
>> +#endif
>> }
>>
>> void qemu_mutex_lock_iothread(void)
>>
--
Alex Bennée
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] cpus: make qemu_mutex_iothread_locked() understand co-routines
2016-11-01 16:21 ` Alex Bennée
@ 2016-11-02 14:06 ` Stefan Hajnoczi
2016-11-02 14:55 ` Alex Bennée
0 siblings, 1 reply; 5+ messages in thread
From: Stefan Hajnoczi @ 2016-11-02 14:06 UTC (permalink / raw)
To: Alex Bennée
Cc: Paolo Bonzini, qemu-devel, Peter Crosthwaite, Richard Henderson
[-- Attachment #1: Type: text/plain, Size: 1558 bytes --]
On Tue, Nov 01, 2016 at 04:21:36PM +0000, Alex Bennée wrote:
>
> Paolo Bonzini <pbonzini@redhat.com> writes:
>
> > On 21/10/2016 13:54, Alex Bennée wrote:
> >> There is a slight wart when checking for the state of the BQL when using
> >> GThread base co-routines (which we keep for ThreadSanitizer runs). While
> >> the main-loop holds the BQL it is suspended until the co-routine
> >> completes however the co-routines run in a separate thread so checking
> >> the TLS variable could be wrong.
> >>
> >> We fix this by expanding the check to include qemu_in_coroutine() for
> >> GThread based builds. As it is not used for production builds I'm not
> >> overly worried about any performance impact which should be negligible
> >> anyway.
> >>
> >> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> >> Cc: Stefan Hajnoczi <stefanha@redhat.com>
> >
> > This is wrong unfortunately. It is possible to run coroutines outside
> > the BQL (e.g. with -device virtio-blk,iothread=foo).
> >
> > Do you know exactly why TSAN has no love for coroutines?
>
> The current production stuff is due to missing support for new stacks
> with setcontext. However I have built the latest tsan support library
> and that seems happy without the gthread co-routines.
>
> Currently I'm dealing with glib's racy gthread support however.
I think Paolo suggested we drop the GThread backend on IRC. I agree
that we should do that since GThread co-routines break code that uses
thread-local variables and have never truly worked.
Stefan
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] cpus: make qemu_mutex_iothread_locked() understand co-routines
2016-11-02 14:06 ` Stefan Hajnoczi
@ 2016-11-02 14:55 ` Alex Bennée
0 siblings, 0 replies; 5+ messages in thread
From: Alex Bennée @ 2016-11-02 14:55 UTC (permalink / raw)
To: Stefan Hajnoczi
Cc: Paolo Bonzini, qemu-devel, Peter Crosthwaite, Richard Henderson
Stefan Hajnoczi <stefanha@redhat.com> writes:
> On Tue, Nov 01, 2016 at 04:21:36PM +0000, Alex Bennée wrote:
>>
>> Paolo Bonzini <pbonzini@redhat.com> writes:
>>
>> > On 21/10/2016 13:54, Alex Bennée wrote:
>> >> There is a slight wart when checking for the state of the BQL when using
>> >> GThread base co-routines (which we keep for ThreadSanitizer runs). While
>> >> the main-loop holds the BQL it is suspended until the co-routine
>> >> completes however the co-routines run in a separate thread so checking
>> >> the TLS variable could be wrong.
>> >>
>> >> We fix this by expanding the check to include qemu_in_coroutine() for
>> >> GThread based builds. As it is not used for production builds I'm not
>> >> overly worried about any performance impact which should be negligible
>> >> anyway.
>> >>
>> >> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>> >> Cc: Stefan Hajnoczi <stefanha@redhat.com>
>> >
>> > This is wrong unfortunately. It is possible to run coroutines outside
>> > the BQL (e.g. with -device virtio-blk,iothread=foo).
>> >
>> > Do you know exactly why TSAN has no love for coroutines?
>>
>> The current production stuff is due to missing support for new stacks
>> with setcontext. However I have built the latest tsan support library
>> and that seems happy without the gthread co-routines.
>>
>> Currently I'm dealing with glib's racy gthread support however.
>
> I think Paolo suggested we drop the GThread backend on IRC. I agree
> that we should do that since GThread co-routines break code that uses
> thread-local variables and have never truly worked.
Indeed I have pulled your patch into my current series of sanitizer
fixes. Once I can fix the setcontext/sigjmp confusion for a
__SANITIZER__ builds I'll post the series.
--
Alex Bennée
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-11-02 14:55 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-21 11:54 [Qemu-devel] [PATCH] cpus: make qemu_mutex_iothread_locked() understand co-routines Alex Bennée
2016-11-01 15:04 ` Paolo Bonzini
2016-11-01 16:21 ` Alex Bennée
2016-11-02 14:06 ` Stefan Hajnoczi
2016-11-02 14:55 ` Alex Bennée
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).