Re: [kvm-devel] Gentoo livecd amd64 not working?

2007-05-18 Thread Gregory Haskins
On Fri, May 18, 2007 at 1:36 AM, in message [EMAIL PROTECTED], Wink Saville [EMAIL PROTECTED] wrote: This reproduces here. qemu works, so it's likely an interrupt being lost. Can you try out Gregory's apic patchset? Avi, I assume you mean the v4 v5 acpi patches from Gregory

Re: [kvm-devel] [PATCH/RFC 7/9] Virtual network guest device driver

2007-05-18 Thread Anthony Liguori
ron minnich wrote: Hi Anthony, I still feel that how about a socket interface is still focused on the how to implement, and not what the interface should be. Right. I'm not trying to answer that question ATM. There are a number of paravirt devices that would be useful in a virtual setting.

Re: [kvm-devel] [PATCH/RFC 7/9] Virtual network guest device driver

2007-05-18 Thread ron minnich
On 5/18/07, Anthony Liguori [EMAIL PROTECTED] wrote: I also am not sure the socket system call interface is quite what we want, although it's a neat idea. It's also not that portable outside the everything is a Linux variant world. A filesystem interface certainly isn't very portable

[kvm-devel] [ kvm-Bugs-1721434 ] 2.6.20 + RSDL 0.30 KVM 18, 24 deadlock system on modprobe

2007-05-18 Thread SourceForge.net
Bugs item #1721434, was opened at 2007-05-18 13:01 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=893831aid=1721434group_id=180599 Please note that this message will contain a full copy of

[kvm-devel] [PATCH 0/9] in-kernel APIC v6 (kernel side)

2007-05-18 Thread Gregory Haskins
Changelog: 1) Minor cleanup 2) Moved eventfd patch to end of series and dropped it from the public release (for now). We dont technically need to signal userspace if PIT is enabled since this wakes us up anyway. We can defer the eventfd/in-kernel-halt conversation for later. 3) Bug fixed:

[kvm-devel] [PATCH 2/9] KVM: VMX - fix interrupt checking on light-exit

2007-05-18 Thread Gregory Haskins
Signed-off-by: Gregory Haskins [EMAIL PROTECTED] --- drivers/kvm/vmx.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c index 5386461..8ef6193 100644 --- a/drivers/kvm/vmx.c +++ b/drivers/kvm/vmx.c @@ -1954,13 +1954,13 @@ static

[kvm-devel] [PATCH 3/9] KVM: Add irqdevice object

2007-05-18 Thread Gregory Haskins
The current code is geared towards using a user-mode (A)PIC. This patch adds an irqdevice abstraction, and implements a userint model to handle the duties of the original code. Later, we can develop other irqdevice models to handle objects like LAPIC, IOAPIC, i8259, etc, as appropriate

[kvm-devel] [PATCH 6/9] KVM: Add support for in-kernel LAPIC model

2007-05-18 Thread Gregory Haskins
Signed-off-by: Gregory Haskins [EMAIL PROTECTED] --- drivers/kvm/Makefile |2 drivers/kvm/kernint.c | 149 + drivers/kvm/kvm.h | 35 + drivers/kvm/kvm_main.c | 198 ++- drivers/kvm/lapic.c| 1418 drivers/kvm/svm.c

[kvm-devel] [PATCH 7/9] KVM: Adds support for real NMI injection on VMX processors

2007-05-18 Thread Gregory Haskins
Signed-off-by: Gregory Haskins [EMAIL PROTECTED] --- drivers/kvm/vmx.c | 57 - drivers/kvm/vmx.h |3 +++ 2 files changed, 55 insertions(+), 5 deletions(-) diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c index 3ef5da8..f532c87 100644

[kvm-devel] [PATCH 0/5] in-kernel APIC v6 (usermode side)

2007-05-18 Thread Gregory Haskins
Changelog from v5: 1) Moved eventfd patch to the end of the series and dropped from the public release (for now...see the kernel-side comments for details) Regards, -Greg - This SF.net email is sponsored by DB2 Express

[kvm-devel] [PATCH 2/5] KVM-USER: Make the kvm_allowed flag always defined so we dont need #ifdefs

2007-05-18 Thread Gregory Haskins
Non-performance critical code is made more awkward by having to always define both #ifdef KVM and if (kvm_allowed). Define kvm_allowed = 0 by default. Anthony Ligouri is credited with the idea. Signed-off-by: Gregory Haskins [EMAIL PROTECTED] --- qemu/qemu-kvm.c |9 - 1 files

[kvm-devel] [PATCH 1/5] KVM: Updates for compiling in-kernel APIC support with external-modules

2007-05-18 Thread Gregory Haskins
Signed-off-by: Gregory Haskins [EMAIL PROTECTED] --- kernel/Kbuild |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kernel/Kbuild b/kernel/Kbuild index e9bcda7..103a179 100644 --- a/kernel/Kbuild +++ b/kernel/Kbuild @@ -1,5 +1,5 @@ EXTRA_CFLAGS := -I$(src)/include

[kvm-devel] [PATCH 4/5] KVM: in-kernel-apic modification to QEMU

2007-05-18 Thread Gregory Haskins
Signed-off-by: Gregory Haskins [EMAIL PROTECTED] --- qemu/hw/apic.c | 20 +++- qemu/hw/pc.c| 29 - qemu/qemu-kvm.c | 49 +++-- qemu/qemu-kvm.h |2 ++ qemu/vl.h | 11 ++-

[kvm-devel] [PATCH 3/5] KVM-USER: Add ability to specify APIC emulation type from the command-line

2007-05-18 Thread Gregory Haskins
Signed-off-by: Gregory Haskins [EMAIL PROTECTED] --- qemu/qemu-kvm.c | 27 +++ qemu/qemu-kvm.h |5 + qemu/vl.c | 10 ++ qemu/vl.h |1 + 4 files changed, 43 insertions(+), 0 deletions(-) diff --git a/qemu/qemu-kvm.c b/qemu/qemu-kvm.c

[kvm-devel] [PATCH 5/5] KVM-USER: Check kvm extensions at runtime

2007-05-18 Thread Gregory Haskins
Newer userspace may run on an older kernel. Therefore we need a way to check the capabilities of the kernel so that we can downgrade userspace dynamically if necessary Signed-off-by: Gregory Haskins [EMAIL PROTECTED] --- qemu/qemu-kvm.c | 27 +++ user/kvmctl.c |

Re: [kvm-devel] Gentoo livecd amd64 not working?

2007-05-18 Thread Wink Saville
Hi Wink, You can pull them from the list archives, or I can just send them directly to you. If you pull from the archive, be sure to get both the kernel and userspace series with the v5 in the title. Note that what I currently would be able to send direct is a little more updated than