Re: [Users] Problems when install ovirt-engine from rpm

2012-05-03 Thread Cao,Bing Bu
On 05/03/2012 11:36 AM, Itamar Heim wrote: On 05/03/2012 05:37 AM, Cao,Bing Bu wrote: Hi, I want to install the ovirt-engine from rpm package. Using the guide on wiki page: http://www.ovirt.org/wiki/Installing_ovirt-engine_from_rpm But when I install the ovirt-engine #sudo yum install -y

Re: [Users] Problems when install ovirt-engine from rpm

2012-05-03 Thread Cao,Bing Bu
On 05/03/2012 03:43 PM, Alex Lourie wrote: On Thu 03 May 2012 07:30:59 AM IDT, Shu Ming wrote: On 2012-5-3 10:37, Cao,Bing Bu wrote: Hi, I want to install the ovirt-engine from rpm package. Using the guide on wiki page: http://www.ovirt.org/wiki/Installing_ovirt-engine_from_rpm But when I

Re: [Users] Problems when install ovirt-engine from rpm

2012-05-03 Thread Cao,Bing Bu
On 05/03/2012 12:30 PM, Shu Ming wrote: On 2012-5-3 10:37, Cao,Bing Bu wrote: Hi, I want to install the ovirt-engine from rpm package. Using the guide on wiki page: http://www.ovirt.org/wiki/Installing_ovirt-engine_from_rpm But when I install the ovirt-engine #sudo yum install -y ovirt

[Users] Problems when install ovirt-engine from rpm

2012-05-02 Thread Cao,Bing Bu
-3.0.0_0001-1.6.fc16.x86_64 1/1 Failed: ovirt-engine.x86_64 0:3.0.0_0001-1.6.fc16 Can anyone tell me what is the matter? -- Best Regards, Cao,Bing Bu ___ Users mailing list Users

Re: [Qemu-devel] How many floppy can a computer install ? Thank you very much!

2012-03-20 Thread Cao,Bing Bu
On 03/20/2012 10:34 AM, Zhi Hui Li wrote: Hi,Zhi Hui I am not very sure,but I think it is 2. -- Best Regards, Cao,Bing Bu

Re: [Qemu-devel] KVM call agenda for Tuesday 3

2012-01-03 Thread Cao,Bing Bu
and helpful for me if there will be a place(mailing list,bug tracker,...)that I can join,QA,contribute. BTW: what is 1.2 people? It's 1 and 1/5 ? :) -- Best Regards, Cao,Bing Bu

Re: [Qemu-devel] KVM call agenda for Tuesday 3

2012-01-03 Thread Cao,Bing Bu
and helpful for me if there will be a place(mailing list,bug tracker,...)that I can join,QA,contribute. BTW: what is 1.2 people? It's 1 and 1/5 ? :) -- Best Regards, Cao,Bing Bu -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a messa

[Qemu-devel] [PATCH] Fix parse of usb device description with multiple configurations

2011-12-07 Thread Cao,Bing Bu
other configurations instead of skip,continue parsing the descriptor of interfaces/endpoints in other configurations,then went wrong. This patch will put the configuration descriptor parse in loop outside and dispel the other configurations not requested. Signed-off-by: Cao,Bing Bu --- usb

[no subject]

2011-12-05 Thread Cao,Bing Bu
subscribe kvm -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [Qemu-devel] windows guest virtio serial and balloon driver test issues

2011-12-04 Thread Cao,Bing Bu
On 11/29/2011 08:36 PM, Vadim Rozenfeld wrote: On Tue, 2011-11-29 at 08:58 +0800, Cao,Bing Bu wrote: Hi, Rozenfeld,Thanks,got it! And do you know whether there are some sufficient test tools (such as IOmeter) to test the virtio driver performance? IoMeter is good. But you

Re: [Qemu-devel] windows guest virtio serial and balloon driver test issues

2011-11-28 Thread Cao,Bing Bu
Hi, Rozenfeld,Thanks,got it! And do you know whether there are some sufficient test tools (such as IOmeter) to test the virtio driver performance? On 11/25/2011 02:42 PM, Vadim Rozenfeld wrote: On Fri, 2011-11-25 at 09:59 +0800, Cao,Bing Bu wrote: Hi,all Thanks,Frenkel.The

Re: [Qemu-devel] windows guest virtio serial and balloon driver test issues

2011-11-24 Thread Cao,Bing Bu
lated to the windows internal memory management? On 11/21/2011 06:33 PM, Arkady Frenkel wrote: On 11/21/2011 10:39 AM, Cao,Bing Bu wrote: Hi, Recently,I am testing windows guest driver on Win7 and WinXP(32bit) with the latest windows guest driver development source. Download from http://a

[Qemu-devel] [PATCH][V2] Can't screendump without a console

2011-11-21 Thread Cao,Bing Bu
When usinge "-vga none -nographic" option. There is no any text and graphic console created in this case. screen dump not supported without console. Signed-off-by: Cao,Bing Bu --- console.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/console.c b/conso

[Qemu-devel] windows guest virtio serial and balloon driver test issues

2011-11-21 Thread Cao,Bing Bu
ws.git on kernel.org is not available,is there any mirror git repository? Any mail-list or bugzilla for windows guest driver? Any help from will be appreciated. -- Best Regards, Cao,Bing Bu

[Qemu-devel] [PATCH] creen dump not supported when no console

2011-11-20 Thread Cao,Bing Bu
I have tested the issue use "-vga none -nographic" option. QEMU segment faults. But i think there is no any text and graphic console created in this case. The console[0] is NULL. The vga_hw_screen_dump() should return before console_select(). What do you think? --- console.c |3 +++ 1 file

Re: [Qemu-devel] [PATCH] Give an error when using -icount option with kvm accelerator

2011-11-13 Thread Cao,Bing Bu
On 11/11/2011 03:09 PM, Cao,Bing Bu wrote: With -icount, the vm_clock is updated with help from TCG (it counts instructions at 2^ICOUNT ns/instructions). With KVM, the instruction count is not available so KVM cannot provide this help. Signed-off-by: Cao,Bing Bu --- vl.c |8

[Qemu-devel] [PATCH] Give an error when using -icount option with kvm accelerator

2011-11-12 Thread Cao,Bing Bu
With -icount, the vm_clock is updated with help from TCG (it counts instructions at 2^ICOUNT ns/instructions). With KVM, the instruction count is not available so KVM cannot provide this help. Signed-off-by: Cao,Bing Bu --- vl.c |8 ++-- 1 files changed, 6 insertions(+), 2 deletions

[Qemu-devel] A document about Windows Guest Debugging has been post on linux-kvm wiki

2011-11-10 Thread Cao,Bing Bu
and mail me if any suggestions or comments. -- Best Regards, Cao,Bing Bu

Re: [Qemu-devel] x86_64 linux kernel doesn't boot with -icount enabled

2011-11-09 Thread Cao,Bing Bu
On 11/09/2011 05:41 PM, Cao,Bing Bu wrote: On 11/08/2011 11:52 PM, Max Filippov wrote: With kernel command line of 'console=ttyS0 noapic=1 panic=1' patched qemu boots up successfully with -icount, whereas unpatched qemu loops infinitely. Looks like APIC emulation issue to me. I&#

Re: [Qemu-devel] x86_64 linux kernel doesn't boot with -icount enabled

2011-11-09 Thread Cao,Bing Bu
6 ro quiet noacpi=1' -chardev stdio,id=mon0 -mon chardev=mon0 -icount auto The kernel can not be loaded successfully. loop in main_loop_wait(). -- Best Regards, Cao,Bing Bu

Re: [Qemu-devel] Abnormal function exit message in Qemu block drivers code

2011-10-27 Thread Cao,Bing Bu
On 10/27/2011 02:16 PM, shu ming wrote: Hi, After reading the block driver code in, it was found that the error exit code behaved in different ways. Here are some examples. It seems that way 3 is a better way to log the error message. In fact, It is pretty important for a administrator