[Qemu-devel] [patch] use gen_update_cc_op()

2010-07-24 Thread Jun Koi
this patch simplifies target-i386/translate.c a bit by replacing some code with gen_update_cc_op() Signed-off-by: Jun Koi junkoi2...@gmail.com diff --git a/target-i386/translate.c b/target-i386/translate.c index 9543298..7b6e3c2 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c

Re: [Qemu-devel] [PATCH] MIPS interrupts and -icount

2010-07-24 Thread Aurelien Jarno
On Sun, Jul 25, 2010 at 05:08:07AM +0200, Aurelien Jarno wrote: On Sun, Jul 25, 2010 at 02:07:54AM +0200, Edgar E. Iglesias wrote: On Sun, Jul 25, 2010 at 12:55:45AM +0200, Aurelien Jarno wrote: On Thu, Jul 22, 2010 at 01:32:18PM +0200, Edgar E. Iglesias wrote: Hi, I'm seeing an

Re: [Qemu-devel] [PATCH] MIPS interrupts and -icount

2010-07-24 Thread Edgar E. Iglesias
On Sun, Jul 25, 2010 at 05:08:07AM +0200, Aurelien Jarno wrote: On Sun, Jul 25, 2010 at 02:07:54AM +0200, Edgar E. Iglesias wrote: On Sun, Jul 25, 2010 at 12:55:45AM +0200, Aurelien Jarno wrote: On Thu, Jul 22, 2010 at 01:32:18PM +0200, Edgar E. Iglesias wrote: Hi, I'm seeing an

Re: [Qemu-devel] [PATCH] MIPS interrupts and -icount

2010-07-24 Thread Edgar E. Iglesias
On Sun, Jul 25, 2010 at 06:44:41AM +0200, Aurelien Jarno wrote: On Sun, Jul 25, 2010 at 05:08:07AM +0200, Aurelien Jarno wrote: On Sun, Jul 25, 2010 at 02:07:54AM +0200, Edgar E. Iglesias wrote: On Sun, Jul 25, 2010 at 12:55:45AM +0200, Aurelien Jarno wrote: On Thu, Jul 22, 2010 at

[Qemu-devel] Re: [PATCH] migration: Issue 'cont' only on successful incoming migration

2010-07-24 Thread Amit Shah
On (Fri) Jul 23 2010 [15:08:18], Luiz Capitulino wrote: diff --git a/monitor.c b/monitor.c index 45fd482..d12a7b5 100644 --- a/monitor.c +++ b/monitor.c @@ -1056,6 +1056,10 @@ static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data) { struct

Re: [Qemu-devel] memory trace with qemu

2010-07-24 Thread Stefan Hajnoczi
On Sat, Jul 24, 2010 at 3:17 AM, Yufei Chen cyfde...@gmail.com wrote: On Fri, Jul 23, 2010 at 2:15 PM, Stefan Hajnoczi stefa...@gmail.com wrote: On Fri, Jul 23, 2010 at 4:12 AM, Mulyadi Santosa mulyadi.sant...@gmail.com wrote: Hi... On Fri, Jul 23, 2010 at 05:30, Eduardo Cruz

[Qemu-devel] [PATCH] Close socket file descriptor when qemu_accept fails

2010-07-24 Thread Shahar Havivi
Signed-off-by: Shahar Havivi shah...@redhat.com --- migration-tcp.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/migration-tcp.c b/migration-tcp.c index 78b56dc..b55f419 100644 --- a/migration-tcp.c +++ b/migration-tcp.c @@ -151,7 +151,7 @@ static void

Re: [Qemu-devel] [PATCH] Fix -snapshot deleting CDROM images

2010-07-24 Thread Markus Armbruster
Blue Swirl blauwir...@gmail.com writes: Command line flag '-snapshot' was setting the drive flag 'snapshot' for all drives. Therefore also CDROM devices were incorrectly marked with BDRV_O_SNAPSHOT. Thus the backing images were accidentally deleted at bdrv_open time, for example when changing

Re: [Qemu-devel] [patch] use symbol for DisasContext-is_jmp

2010-07-24 Thread Edgar E. Iglesias
On Sat, Jul 24, 2010 at 12:17:00AM +0900, Jun Koi wrote: This patch replaces constant value assigned for (DisasContext *)-is_jmp with DISAS_TB_JUMP. Signed-off-by: Jun Koi junkoi2...@gmail.com Applied, thanks. diff --git a/target-i386/translate.c b/target-i386/translate.c index

Re: [Qemu-devel] [patch] remove dead code

2010-07-24 Thread Edgar E. Iglesias
On Fri, Jul 23, 2010 at 02:57:40PM +0900, Jun Koi wrote: this patch removes unused function cpu_restore_state_copy(). Signed-off-by: Jun Koi junkoi2...@gmail.com Applied, thanks. diff --git a/exec-all.h b/exec-all.h index 58b5575..3a53fe6 100644 --- a/exec-all.h +++ b/exec-all.h @@

Re: [Qemu-devel] Question on save_globals() in TCG

2010-07-24 Thread Jun Koi
On Sat, Jul 24, 2010 at 11:49 AM, Aurelien Jarno aurel...@aurel32.net wrote: On Sat, Jul 24, 2010 at 09:35:44AM +0900, Jun Koi wrote: On Sat, Jul 24, 2010 at 2:53 AM, Aurelien Jarno aurel...@aurel32.net wrote: On Fri, Jul 23, 2010 at 08:59:54PM +0900, Jun Koi wrote: Hi, I am looking at

[Qemu-devel] Re: [SeaBIOS] [PATCH v2 0/2] abstract shadow and smm opreration.

2010-07-24 Thread Kevin O'Connor
On Tue, Jul 20, 2010 at 04:50:44PM +0900, Isaku Yamahata wrote: This is on top of the patch series of PATCH v2 abstract chipset(i440fx) specific register operation. Patch descriontion: This patch set abstract out shadow and smm operation which are specific to chipset. and spit out i440fx

[Qemu-devel] Re: [PATCH] vhost_dev_unassign_memory() don't assert if removing first entry in list.

2010-07-24 Thread Michael S. Tsirkin
On Fri, Jul 23, 2010 at 05:16:42PM +0200, jes.soren...@redhat.com wrote: From: Jes Sorensen jes.soren...@redhat.com If removing an entry from the list which is fully included in the region and this is the first entry in the list. In this case 'to' can go to -1, which is perfectly valid.

Re: [Qemu-devel] [PATCH] MIPS interrupts and -icount

2010-07-24 Thread Aurelien Jarno
On Thu, Jul 22, 2010 at 01:32:18PM +0200, Edgar E. Iglesias wrote: Hi, I'm seeing an error when emulating MIPS guests with -icount. In cpu_interrupt: cpu_abort(env, Raised interrupt while not in I/O function); I am not able to reproduce the issue. Do you have more details how to reproduce

Re: [Qemu-devel] Question on save_globals() in TCG

2010-07-24 Thread Aurelien Jarno
On Sun, Jul 25, 2010 at 01:58:51AM +0900, Jun Koi wrote: On Sat, Jul 24, 2010 at 11:49 AM, Aurelien Jarno aurel...@aurel32.net wrote: On Sat, Jul 24, 2010 at 09:35:44AM +0900, Jun Koi wrote: On Sat, Jul 24, 2010 at 2:53 AM, Aurelien Jarno aurel...@aurel32.net wrote: On Fri, Jul 23, 2010

Re: [Qemu-devel] Question on save_globals() in TCG

2010-07-24 Thread Jun Koi
On Sun, Jul 25, 2010 at 7:57 AM, Aurelien Jarno aurel...@aurel32.net wrote: On Sun, Jul 25, 2010 at 01:58:51AM +0900, Jun Koi wrote: On Sat, Jul 24, 2010 at 11:49 AM, Aurelien Jarno aurel...@aurel32.net wrote: On Sat, Jul 24, 2010 at 09:35:44AM +0900, Jun Koi wrote: On Sat, Jul 24, 2010 at

[Qemu-devel] [Bug 423910] Re: openbios-sparc has no installation candidate

2010-07-24 Thread vidnor
** Also affects: qemu Importance: Undecided Status: New -- openbios-sparc has no installation candidate https://bugs.launchpad.net/bugs/423910 You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. Status in QEMU: New Status in

Re: [Qemu-devel] [PATCH] MIPS interrupts and -icount

2010-07-24 Thread Edgar E. Iglesias
On Sun, Jul 25, 2010 at 12:55:45AM +0200, Aurelien Jarno wrote: On Thu, Jul 22, 2010 at 01:32:18PM +0200, Edgar E. Iglesias wrote: Hi, I'm seeing an error when emulating MIPS guests with -icount. In cpu_interrupt: cpu_abort(env, Raised interrupt while not in I/O function); I am

Re: [Qemu-devel] [PATCH] MIPS interrupts and -icount

2010-07-24 Thread Aurelien Jarno
On Sun, Jul 25, 2010 at 02:07:54AM +0200, Edgar E. Iglesias wrote: On Sun, Jul 25, 2010 at 12:55:45AM +0200, Aurelien Jarno wrote: On Thu, Jul 22, 2010 at 01:32:18PM +0200, Edgar E. Iglesias wrote: Hi, I'm seeing an error when emulating MIPS guests with -icount. In cpu_interrupt: