qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Frederic Konrad <fred.konrad@greensocs.com>
To: "Alex Bennée" <alex.bennee@linaro.org>
Cc: mttcg@listserver.greensocs.com, peter.maydell@linaro.org,
	a.spyridakis@virtualopensystems.com, mark.burton@greensocs.com,
	agraf@suse.de, qemu-devel@nongnu.org,
	guillaume.delbergue@greensocs.com, pbonzini@redhat.com,
	alistair.francis@xilinx.com
Subject: Re: [Qemu-devel] [RFC PATCH V6 08/18] cpu: remove exit_request global.
Date: Tue, 07 Jul 2015 15:25:50 +0200	[thread overview]
Message-ID: <559BD35E.7050309@greensocs.com> (raw)
In-Reply-To: <87lhes9l0l.fsf@linaro.org>

On 07/07/2015 15:04, Alex Bennée wrote:
> fred.konrad@greensocs.com writes:
>
>> From: KONRAD Frederic <fred.konrad@greensocs.com>
>>
>> This removes exit_request global and adds a variable in CPUState for this.
>> Only the flag for the first cpu is used for the moment as we are still with one
>> TCG thread.
>>
>> Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com>
>> ---
>>   cpu-exec.c | 15 ---------------
>>   cpus.c     | 17 ++++++++++++++---
>>   2 files changed, 14 insertions(+), 18 deletions(-)
>>
>> diff --git a/cpu-exec.c b/cpu-exec.c
>> index 5d9b518..0644383 100644
>> --- a/cpu-exec.c
>> +++ b/cpu-exec.c
>> @@ -364,8 +364,6 @@ static void cpu_handle_debug_exception(CPUArchState *env)
>>   
>>   /* main execution loop */
>>   
>> -volatile sig_atomic_t exit_request;
>> -
>>   int cpu_exec(CPUArchState *env)
>>   {
>>       CPUState *cpu = ENV_GET_CPU(env);
>> @@ -394,20 +392,8 @@ int cpu_exec(CPUArchState *env)
>>   
>>       current_cpu = cpu;
>>   
>> -    /* As long as current_cpu is null, up to the assignment just above,
>> -     * requests by other threads to exit the execution loop are expected to
>> -     * be issued using the exit_request global. We must make sure that our
>> -     * evaluation of the global value is performed past the current_cpu
>> -     * value transition point, which requires a memory barrier as well as
>> -     * an instruction scheduling constraint on modern architectures.  */
>> -    smp_mb();
>> -
>>       rcu_read_lock();
>>   
>> -    if (unlikely(exit_request)) {
>> -        cpu->exit_request = 1;
>> -    }
>> -
>>       cc->cpu_exec_enter(cpu);
>>   
>>       /* Calculate difference between guest clock and host clock.
>> @@ -496,7 +482,6 @@ int cpu_exec(CPUArchState *env)
>>                       }
>>                   }
>>                   if (unlikely(cpu->exit_request)) {
>> -                    cpu->exit_request = 0;
>>                       cpu->exception_index = EXCP_INTERRUPT;
>>                       cpu_loop_exit(cpu);
>>                   }
>> diff --git a/cpus.c b/cpus.c
>> index 23c316c..2541c56 100644
>> --- a/cpus.c
>> +++ b/cpus.c
>> @@ -137,6 +137,8 @@ typedef struct TimersState {
>>   } TimersState;
>>   
>>   static TimersState timers_state;
>> +/* CPU associated to this thread. */
>> +static __thread CPUState *tcg_thread_cpu;
>>   
>>   int64_t cpu_get_icount_raw(void)
>>   {
>> @@ -661,12 +663,18 @@ static void cpu_handle_guest_debug(CPUState *cpu)
>>       cpu->stopped = true;
>>   }
>>   
>> +/**
>> + * cpu_signal
>> + * Signal handler when using TCG.
>> + */
>>   static void cpu_signal(int sig)
>>   {
>>       if (current_cpu) {
>>           cpu_exit(current_cpu);
>>       }
>> -    exit_request = 1;
>> +
>> +    /* FIXME: We might want to check if the cpu is running? */
>> +    tcg_thread_cpu->exit_request = true;
> I guess the potential problem is race conditions here? What happens if
> the cpu is signalled by two different threads for two different reasons?

Hmmm yes, I need to take a look at that and check all the reason why it 
should exit.

But maybe it's OK, the first time the cpu get the signal it will set 
exit_request..
and the second times as well?

>>   }
>>   
>>   #ifdef CONFIG_LINUX
>> @@ -1031,6 +1039,7 @@ static void *qemu_tcg_cpu_thread_fn(void *arg)
>>   {
>>       CPUState *cpu = arg;
>>   
>> +    tcg_thread_cpu = cpu;
>>       qemu_tcg_init_cpu_signals();
>>       qemu_thread_get_self(cpu->thread);
>>   
>> @@ -1393,7 +1402,8 @@ static void tcg_exec_all(void)
>>       if (next_cpu == NULL) {
>>           next_cpu = first_cpu;
>>       }
>> -    for (; next_cpu != NULL && !exit_request; next_cpu = CPU_NEXT(next_cpu)) {
>> +    for (; next_cpu != NULL && !first_cpu->exit_request;
>> +           next_cpu = CPU_NEXT(next_cpu)) {
>>           CPUState *cpu = next_cpu;
>>           CPUArchState *env = cpu->env_ptr;
>>   
>> @@ -1410,7 +1420,8 @@ static void tcg_exec_all(void)
>>               break;
>>           }
>>       }
>> -    exit_request = 0;
>> +
>> +    first_cpu->exit_request = 0;
>>   }
>>   
>>   void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg)

  reply	other threads:[~2015-07-07 13:26 UTC|newest]

Thread overview: 82+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-26 14:47 [Qemu-devel] [RFC PATCH V6 00/18] Multithread TCG fred.konrad
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 01/18] cpu: make cpu_thread_is_idle public fred.konrad
2015-07-07  9:47   ` Alex Bennée
2015-07-07 11:43     ` Frederic Konrad
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 02/18] replace spinlock by QemuMutex fred.konrad
2015-07-07 10:15   ` Alex Bennée
2015-07-07 10:22     ` Paolo Bonzini
2015-07-07 11:48       ` Frederic Konrad
2015-07-07 12:34         ` Paolo Bonzini
2015-07-07 13:06           ` Frederic Konrad
2015-07-07 11:46     ` Frederic Konrad
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 03/18] remove unused spinlock fred.konrad
2015-06-26 14:53   ` Paolo Bonzini
2015-06-26 15:29     ` Frederic Konrad
2015-06-26 15:46       ` Paolo Bonzini
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 04/18] add support for spin lock on POSIX systems exclusively fred.konrad
2015-06-26 14:55   ` Paolo Bonzini
2015-06-26 15:31     ` Frederic Konrad
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 05/18] protect TBContext with tb_lock fred.konrad
2015-06-26 14:56   ` Paolo Bonzini
2015-06-26 15:39     ` Frederic Konrad
2015-06-26 15:45       ` Paolo Bonzini
2015-06-26 16:20   ` Paolo Bonzini
2015-07-07 12:22   ` Alex Bennée
2015-07-07 13:16     ` Frederic Konrad
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 06/18] tcg: remove tcg_halt_cond global variable fred.konrad
2015-06-26 15:02   ` Paolo Bonzini
2015-06-26 15:41     ` Frederic Konrad
2015-07-07 12:27       ` Alex Bennée
2015-07-07 13:17         ` Frederic Konrad
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 07/18] Drop global lock during TCG code execution fred.konrad
2015-06-26 14:56   ` Jan Kiszka
2015-06-26 15:08     ` Paolo Bonzini
2015-06-26 15:36     ` Frederic Konrad
2015-06-26 15:42       ` Jan Kiszka
2015-06-26 16:11         ` Frederic Konrad
2015-07-07 12:33       ` Alex Bennée
2015-07-07 13:18         ` Frederic Konrad
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 08/18] cpu: remove exit_request global fred.konrad
2015-06-26 15:03   ` Paolo Bonzini
2015-07-07 13:04   ` Alex Bennée
2015-07-07 13:25     ` Frederic Konrad [this message]
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 09/18] cpu: add a tcg_executing flag fred.konrad
2015-07-07 13:23   ` Alex Bennée
2015-07-07 13:30     ` Frederic Konrad
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 10/18] tcg: switch on multithread fred.konrad
2015-07-07 13:40   ` Alex Bennée
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 11/18] cpus: make qemu_cpu_kick_thread public fred.konrad
2015-07-07 15:11   ` Alex Bennée
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 12/18] Use atomic cmpxchg to atomically check the exclusive value in a STREX fred.konrad
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 13/18] cpu: introduce async_run_safe_work_on_cpu fred.konrad
2015-06-26 15:35   ` Paolo Bonzini
2015-06-26 16:09     ` Frederic Konrad
2015-06-26 16:23       ` Paolo Bonzini
2015-06-26 16:36         ` Frederic Konrad
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 14/18] add a callback when tb_invalidate is called fred.konrad
2015-06-26 16:20   ` Paolo Bonzini
2015-06-26 16:40     ` Frederic Konrad
2015-07-07 15:32   ` Alex Bennée
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 15/18] cpu: introduce tlb_flush*_all fred.konrad
2015-06-26 15:15   ` Paolo Bonzini
2015-06-26 15:54     ` Frederic Konrad
2015-06-26 16:01       ` Paolo Bonzini
2015-06-26 16:08         ` Peter Maydell
2015-06-26 16:30           ` Frederic Konrad
2015-06-26 16:31             ` Paolo Bonzini
2015-06-26 16:35               ` Frederic Konrad
2015-06-26 16:39                 ` Paolo Bonzini
2015-07-06 14:29             ` Mark Burton
2015-07-07 16:12               ` Alex Bennée
2015-06-26 16:54           ` Paolo Bonzini
2015-07-08 15:35           ` Frederic Konrad
2015-07-07 15:52   ` Alex Bennée
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 16/18] arm: use tlb_flush*_all fred.konrad
2015-07-07 16:14   ` Alex Bennée
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 17/18] translate-all: introduces tb_flush_safe fred.konrad
2015-07-07 16:16   ` Alex Bennée
2015-06-26 14:47 ` [Qemu-devel] [RFC PATCH V6 18/18] translate-all: (wip) use tb_flush_safe when we can't alloc more tb fred.konrad
2015-06-26 16:21   ` Paolo Bonzini
2015-06-26 16:38     ` Frederic Konrad
2015-07-07 16:17   ` Alex Bennée
2015-07-07 16:23     ` Frederic Konrad

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=559BD35E.7050309@greensocs.com \
    --to=fred.konrad@greensocs.com \
    --cc=a.spyridakis@virtualopensystems.com \
    --cc=agraf@suse.de \
    --cc=alex.bennee@linaro.org \
    --cc=alistair.francis@xilinx.com \
    --cc=guillaume.delbergue@greensocs.com \
    --cc=mark.burton@greensocs.com \
    --cc=mttcg@listserver.greensocs.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /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).