Re: [Qemu-devel] [PATCH V3 2/3] qemu: Generic asynchronous threading framework to offload tasks

2010-06-05 Thread Corentin Chary
On Fri, Jun 4, 2010 at 3:16 PM, Anthony Liguori anth...@codemonkey.ws wrote: On 06/03/2010 03:56 AM, Gautham R Shenoy wrote: From: Aneesh Kumar K.Vaneesh.ku...@linux.vnet.ibm.com This patch creates a generic asynchronous-task-offloading infrastructure. It's extracted out of the threading

Re: [Qemu-devel] Re: [RFT][PATCH 07/15] qemu_irq: Add IRQ handlers with delivery feedback

2010-06-05 Thread Blue Swirl
On Sat, Jun 5, 2010 at 12:04 AM, Jan Kiszka jan.kis...@web.de wrote: Blue Swirl wrote: On Thu, Jun 3, 2010 at 7:06 AM, Gleb Natapov g...@redhat.com wrote: On Thu, Jun 03, 2010 at 10:03:00AM +0300, Gleb Natapov wrote: On Thu, Jun 03, 2010 at 08:59:23AM +0200, Jan Kiszka wrote: Gleb Natapov

Re: [Qemu-devel] [PATCH-V5 0/10] virtio-9p:Introducing security model for VirtFS

2010-06-05 Thread Blue Swirl
On Sat, Jun 5, 2010 at 1:08 AM, Venkateswararao Jujjuri (JV) jv...@linux.vnet.ibm.com wrote: This patch series introduces the security model for VirtFS. Brief description of this patch series: It introduces two type of security models for VirtFS. They are: mapped and passthrough. The

[Qemu-devel] Re: [PATCH v2 2/2] vnc: threaded VNC server

2010-06-05 Thread Corentin Chary
On Fri, Jun 4, 2010 at 3:44 PM, Alexander Graf ag...@suse.de wrote: On 04.06.2010, at 15:20, Corentin Chary wrote: Implement a threaded VNC server using the producer-consumer model. The main thread will push encoding jobs (a list a rectangles to update) in a queue, and the VNC worker thread

Re: [Qemu-devel] Re: [RFT][PATCH 07/15] qemu_irq: Add IRQ handlers with delivery feedback

2010-06-05 Thread Jan Kiszka
Blue Swirl wrote: On Sat, Jun 5, 2010 at 12:04 AM, Jan Kiszka jan.kis...@web.de wrote: Blue Swirl wrote: On Thu, Jun 3, 2010 at 7:06 AM, Gleb Natapov g...@redhat.com wrote: On Thu, Jun 03, 2010 at 10:03:00AM +0300, Gleb Natapov wrote: On Thu, Jun 03, 2010 at 08:59:23AM +0200, Jan Kiszka

Re: [Qemu-devel] Re: [RFT][PATCH 07/15] qemu_irq: Add IRQ handlers with delivery feedback

2010-06-05 Thread Blue Swirl
On Sat, Jun 5, 2010 at 8:27 AM, Jan Kiszka jan.kis...@web.de wrote: Blue Swirl wrote: On Sat, Jun 5, 2010 at 12:04 AM, Jan Kiszka jan.kis...@web.de wrote: Blue Swirl wrote: On Thu, Jun 3, 2010 at 7:06 AM, Gleb Natapov g...@redhat.com wrote: On Thu, Jun 03, 2010 at 10:03:00AM +0300, Gleb

Re: [Qemu-devel] [PATCH v6 5/6] Inter-VM shared memory PCI device

2010-06-05 Thread Blue Swirl
On Fri, Jun 4, 2010 at 9:45 PM, Cam Macdonell c...@cs.ualberta.ca wrote: Support an inter-vm shared memory device that maps a shared-memory object as a PCI device in the guest.  This patch also supports interrupts between guest by communicating over a unix domain socket.  This patch applies to

[Qemu-devel] [PATCH v4 1/7] MIPS: Initial support of bonito north bridge used by fulong mini pc

2010-06-05 Thread Huacai Chen
Signed-off-by: Huacai Chen zltjiang...@gmail.com --- Makefile.target |1 + default-configs/mips64el-softmmu.mak |1 + hw/bonito.c | 808 ++ hw/mips.h|3 + 4 files changed, 813

[Qemu-devel] [PATCH v4 3/7] MIPS: Initial support of VIA IDE controller used by fulong mini pc

2010-06-05 Thread Huacai Chen
Signed-off-by: Huacai Chen zltjiang...@gmail.com --- Makefile.objs|1 + default-configs/mips64el-softmmu.mak |1 + hw/ide.h |1 + hw/ide/via.c | 191 ++ 4 files changed, 194

[Qemu-devel] [PATCH v4 4/7] MIPS: Initial support of VIA USB controller used by fulong mini pc

2010-06-05 Thread Huacai Chen
Signed-off-by: Huacai Chen zltjiang...@gmail.com --- hw/usb-uhci.c | 29 + hw/usb-uhci.h |1 + 2 files changed, 30 insertions(+), 0 deletions(-) diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index 624d55b..91d827e 100644 --- a/hw/usb-uhci.c +++ b/hw/usb-uhci.c @@

[Qemu-devel] [PATCH v4 6/7] MIPS: Initial support of fulong mini pc (machine construction)

2010-06-05 Thread Huacai Chen
Signed-off-by: Huacai Chen zltjiang...@gmail.com --- Makefile.target|2 +- hw/mips_fulong2e.c | 402 2 files changed, 403 insertions(+), 1 deletions(-) create mode 100644 hw/mips_fulong2e.c diff --git a/Makefile.target

[Qemu-devel] [PATCH v4 2/7] MIPS: Initial support of vt82686b south bridge used by fulong mini pc

2010-06-05 Thread Huacai Chen
Signed-off-by: Huacai Chen zltjiang...@gmail.com --- Makefile.target |2 +- hw/pci_ids.h|8 + hw/vt82c686.c | 567 +++ hw/vt82c686.h | 11 + 4 files changed, 587 insertions(+), 1 deletions(-) create mode 100644 hw/vt82c686.c

[Qemu-devel] [PATCH v4 5/7] MIPS: Initial support of fulong mini pc (CPU definition)

2010-06-05 Thread Huacai Chen
Signed-off-by: Huacai Chen zltjiang...@gmail.com --- target-mips/mips-defs.h |4 target-mips/translate_init.c | 35 +++ 2 files changed, 39 insertions(+), 0 deletions(-) diff --git a/target-mips/mips-defs.h b/target-mips/mips-defs.h index

Re: [Qemu-devel] Re: [RFT][PATCH 07/15] qemu_irq: Add IRQ handlers with delivery feedback

2010-06-05 Thread Jan Kiszka
Blue Swirl wrote: On Sat, Jun 5, 2010 at 8:27 AM, Jan Kiszka jan.kis...@web.de wrote: Blue Swirl wrote: On Sat, Jun 5, 2010 at 12:04 AM, Jan Kiszka jan.kis...@web.de wrote: Blue Swirl wrote: On Thu, Jun 3, 2010 at 7:06 AM, Gleb Natapov g...@redhat.com wrote: On Thu, Jun 03, 2010 at

Re: [Qemu-devel] Re: [V9fs-developer] [PATCH] virtio-9p: getattr server implementation for 9P2000.L protocol.

2010-06-05 Thread Aneesh Kumar K. V
On Fri, 04 Jun 2010 07:59:42 -0700, Venkateswararao Jujjuri (JV) jv...@linux.vnet.ibm.com wrote: Aneesh Kumar K. V wrote: On Thu, 3 Jun 2010 18:29:02 +0530, Sripathi Kodi sripat...@in.ibm.com wrote: On Wed, 02 Jun 2010 19:49:24 +0530 Aneesh Kumar K. V aneesh.ku...@linux.vnet.ibm.com

[Qemu-devel] qemu problem with xp, maybe off topic for this list

2010-06-05 Thread Kristoffer Gustafsson
Hello! Sorry for mailing about something here that should be on a qemu users forum, but can't find a such one. I'm having trouble with installing windows xp on my qemu usting linux. I'm totally blind, so I use unattended xp installation. Everything gose fine until the final reboot, then the win

[Qemu-devel] Re: option-rom (was cg14)

2010-06-05 Thread Bob Breuer
Blue Swirl wrote: On Fri, Jun 4, 2010 at 5:40 PM, Artyom Tarasenko atar4q...@googlemail.com wrote: 2010/5/27 Bob Breuer breu...@mc.net: +/* DBRI (audio) */ +cpu_register_physical_memory_offset(0xEE0001000ULL, 0x1, bad_mem, 0xE0001000); Please add a new DBRI

Re: [Qemu-devel] qemu problem with xp, maybe off topic for this list

2010-06-05 Thread Blue Swirl
On Sat, Jun 5, 2010 at 7:44 PM, Kristoffer Gustafsson k...@dreamwld.com wrote: Hello! Sorry for mailing about something here that should be on a qemu users forum, but can't find a such one. The forum seems to be down, but it should be at: http://qemu-forum.ipi.fi/ I'm having trouble with

[Qemu-devel] Re: option-rom (was cg14)

2010-06-05 Thread Blue Swirl
On Sat, Jun 5, 2010 at 8:25 PM, Bob Breuer breu...@mc.net wrote: Blue Swirl wrote: On Fri, Jun 4, 2010 at 5:40 PM, Artyom Tarasenko atar4q...@googlemail.com wrote: 2010/5/27 Bob Breuer breu...@mc.net: +    /* DBRI (audio) */ +    cpu_register_physical_memory_offset(0xEE0001000ULL, 0x1,

[Qemu-devel] [PATCH 0/6] APIC/IOAPIC cleanups

2010-06-05 Thread Blue Swirl
Devices should not need to access CPUState. Minimize CPUState use in APIC. Blue Swirl (6): ioapic: unexport ioapic_set_irq apic.h: rearrange ioapic: add ioapic.h apic: avoid passing CPUState from devices apic: avoid passing CPUState from CPU code apic: avoid using CPUState internals

[Qemu-devel] [PATCH 1/6] ioapic: unexport ioapic_set_irq

2010-06-05 Thread Blue Swirl
There's no need to use ioapic_set_irq() outside of ioapic.c, so make it static. Signed-off-by: Blue Swirl blauwir...@gmail.com --- hw/apic.h |1 - hw/ioapic.c |2 +- 2 files changed, 1 insertions(+), 2 deletions(-) diff --git a/hw/apic.h b/hw/apic.h index 132fcab..e1954f4 100644 ---

[Qemu-devel] [PATCH 2/6] apic.h: rearrange

2010-06-05 Thread Blue Swirl
Rearrange and add comments to tell where each function is implemented. Signed-off-by: Blue Swirl blauwir...@gmail.com --- hw/apic.h |8 ++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/hw/apic.h b/hw/apic.h index e1954f4..c92d188 100644 --- a/hw/apic.h +++ b/hw/apic.h

[Qemu-devel] [PATCH 4/6] apic: avoid passing CPUState from devices

2010-06-05 Thread Blue Swirl
Pass only APICState from pc.c. Signed-off-by: Blue Swirl blauwir...@gmail.com --- hw/apic.c | 32 ++-- hw/apic.h |7 --- hw/pc.c | 10 ++ 3 files changed, 24 insertions(+), 25 deletions(-) diff --git a/hw/apic.c b/hw/apic.c index

[Qemu-devel] [PATCH 3/6] ioapic: add ioapic.h

2010-06-05 Thread Blue Swirl
Move IOAPIC declarations to a separate file. Signed-off-by: Blue Swirl blauwir...@gmail.com --- hw/apic.h|4 hw/ioapic.c |1 + hw/ioapic.h |7 +++ hw/pc_piix.c |2 +- 4 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 hw/ioapic.h diff --git

[Qemu-devel] [PATCH 6/6] apic: avoid using CPUState internals

2010-06-05 Thread Blue Swirl
Use only an opaque CPUState pointer and move the actual CPUState contents handling to cpu.h and cpuid.c. Set env-halted in pc.c and add a function to get the local APIC state of the current CPU for the MMIO. Signed-off-by: Blue Swirl blauwir...@gmail.com --- hw/apic.c | 40

[Qemu-devel] [PATCH 5/6] apic: avoid passing CPUState from CPU code

2010-06-05 Thread Blue Swirl
Pass only APICState when accessing APIC from CPU code. Signed-off-by: Blue Swirl blauwir...@gmail.com --- hw/apic.c | 39 --- target-i386/cpu.h | 13 +++-- target-i386/helper.c|4 ++-- target-i386/kvm.c | 14

Re: [Qemu-devel] [PATCH-V5 0/10] virtio-9p:Introducing security model for VirtFS

2010-06-05 Thread Venkateswararao Jujjuri (JV)
Blue Swirl wrote: On Sat, Jun 5, 2010 at 1:08 AM, Venkateswararao Jujjuri (JV) jv...@linux.vnet.ibm.com wrote: This patch series introduces the security model for VirtFS. Brief description of this patch series: It introduces two type of security models for VirtFS. They are: mapped and