Re: [Qemu-devel] [PATCH] Simplify cpu_exec_all to tcg_exec_all

2011-11-01 Thread Anthony Liguori
On 09/26/2011 02:40 AM, Jan Kiszka wrote: After the removal of the non-threaded mode cpu_exec_all is now only used by TCG. Refactor it accordingly, also dropping its unused return value. Signed-off-by: Jan Kiszka Applied. Thanks. Regards, Anthony Liguori --- cpus.c | 14 +-

Re: [Qemu-devel] [PATCH] Simplify cpu_exec_all to tcg_exec_all

2011-11-01 Thread Jan Kiszka
On 2011-11-01 11:00, Jun Koi wrote: > i have sent a patch, which duplicated the function of this patch. > > this one was not approved yet?? I assume my patch is in some queue, just waiting to be reviewed and applied. Jan signature.asc Description: OpenPGP digital signature

Re: [Qemu-devel] [PATCH] Simplify cpu_exec_all to tcg_exec_all

2011-11-01 Thread Jun Koi
i have sent a patch, which duplicated the function of this patch. this one was not approved yet?? thanks, Jun On Mon, Sep 26, 2011 at 3:40 PM, Jan Kiszka wrote: > After the removal of the non-threaded mode cpu_exec_all is now only used > by TCG. Refactor it accordingly, also dropping its unused

[Qemu-devel] [PATCH] Simplify cpu_exec_all to tcg_exec_all

2011-09-26 Thread Jan Kiszka
After the removal of the non-threaded mode cpu_exec_all is now only used by TCG. Refactor it accordingly, also dropping its unused return value. Signed-off-by: Jan Kiszka --- cpus.c | 14 +- cpus.h |1 - 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/cpus.c b/c