From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50179) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHSJT-0006Nx-TN for qemu-devel@nongnu.org; Mon, 27 Jun 2016 04:54:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bHSJP-0003wW-NT for qemu-devel@nongnu.org; Mon, 27 Jun 2016 04:54:38 -0400 Received: from mail-wm0-x232.google.com ([2a00:1450:400c:c09::232]:35017) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHSJP-0003vX-Al for qemu-devel@nongnu.org; Mon, 27 Jun 2016 04:54:35 -0400 Received: by mail-wm0-x232.google.com with SMTP id v199so90730494wmv.0 for ; Mon, 27 Jun 2016 01:54:34 -0700 (PDT) From: Alex =?utf-8?Q?Benn=C3=A9e?= In-reply-to: <1466375313-7562-3-git-send-email-sergey.fedorov@linaro.org> Date: Mon, 27 Jun 2016 09:54:35 +0100 Message-ID: <87lh1rdnas.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [RFC 2/8] cpus: Move common code out of {async_, }run_on_cpu() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Sergey Fedorov Cc: qemu-devel@nongnu.org, Peter Crosthwaite , patches@linaro.org, Paolo Bonzini , Sergey Fedorov , Richard Henderson Sergey Fedorov writes: > From: Sergey Fedorov > > Move the code common between run_on_cpu() and async_run_on_cpu() into a > new function queue_work_on_cpu(). > > Signed-off-by: Sergey Fedorov > Signed-off-by: Sergey Fedorov Reviewed-by: Alex Bennée > --- > cpus.c | 42 ++++++++++++++++++------------------------ > 1 file changed, 18 insertions(+), 24 deletions(-) > > diff --git a/cpus.c b/cpus.c > index 049c2d04e150..04687c85bcd4 100644 > --- a/cpus.c > +++ b/cpus.c > @@ -910,6 +910,22 @@ void qemu_init_cpu_loop(void) > qemu_thread_get_self(&io_thread); > } > > +static void queue_work_on_cpu(CPUState *cpu, struct qemu_work_item *wi) > +{ > + qemu_mutex_lock(&cpu->work_mutex); > + if (cpu->queued_work_first == NULL) { > + cpu->queued_work_first = wi; > + } else { > + cpu->queued_work_last->next = wi; > + } > + cpu->queued_work_last = wi; > + wi->next = NULL; > + wi->done = false; > + qemu_mutex_unlock(&cpu->work_mutex); > + > + qemu_cpu_kick(cpu); > +} > + > void run_on_cpu(CPUState *cpu, run_on_cpu_func func, void *data) > { > struct qemu_work_item wi; > @@ -923,18 +939,7 @@ void run_on_cpu(CPUState *cpu, run_on_cpu_func func, void *data) > wi.data = data; > wi.free = false; > > - qemu_mutex_lock(&cpu->work_mutex); > - if (cpu->queued_work_first == NULL) { > - cpu->queued_work_first = &wi; > - } else { > - cpu->queued_work_last->next = &wi; > - } > - cpu->queued_work_last = &wi; > - wi.next = NULL; > - wi.done = false; > - qemu_mutex_unlock(&cpu->work_mutex); > - > - qemu_cpu_kick(cpu); > + queue_work_on_cpu(cpu, &wi); > while (!atomic_mb_read(&wi.done)) { > CPUState *self_cpu = current_cpu; > > @@ -957,18 +962,7 @@ void async_run_on_cpu(CPUState *cpu, run_on_cpu_func func, void *data) > wi->data = data; > wi->free = true; > > - qemu_mutex_lock(&cpu->work_mutex); > - if (cpu->queued_work_first == NULL) { > - cpu->queued_work_first = wi; > - } else { > - cpu->queued_work_last->next = wi; > - } > - cpu->queued_work_last = wi; > - wi->next = NULL; > - wi->done = false; > - qemu_mutex_unlock(&cpu->work_mutex); > - > - qemu_cpu_kick(cpu); > + queue_work_on_cpu(cpu, wi); > } > > static void qemu_kvm_destroy_vcpu(CPUState *cpu) -- Alex Bennée