[PATCH] kvm: external module: add kvm-ia64.c to hack files list

2009-03-10 Thread Avi Kivity
From: Zhang, Yang yang.zh...@intel.com The function hrtimer_start_expires() in the kvm-ia64.c is not supported before the kernel 2.6.28. So we need to hack it. Signed-off-by: Yang Zhang yang.zh...@intel.com Signed-off-by: Marcelo Tosatti mtosa...@redhat.com diff --git a/kernel/Makefile

[PATCH] Merge branch 'qemu-cvs'

2009-03-10 Thread Avi Kivity
From: Avi Kivity a...@redhat.com * qemu-cvs: (135 commits) Use firmware configuration instead of NVRAM (initial patch by Aurelien Jarno) Add new entries to firmware configuration device Rename _BSD to HOST_BSD so that it's more obvious that it's defined by configure target-mips: remove

[PATCH] kvm: qemu: fix warnings in ia64

2009-03-10 Thread Avi Kivity
From: Zhang, Yang yang.zh...@intel.com clean up the warning info in the ia64's code Signed-off-by: Yang Zhang yang.zh...@intel.com Signed-off-by: Marcelo Tosatti mtosa...@redhat.com diff --git a/qemu/hw/ipf.c b/qemu/hw/ipf.c index eb9aaec..e2b53ee 100644 --- a/qemu/hw/ipf.c +++ b/qemu/hw/ipf.c

[PATCH] KVM: ia64: Drop in SN2 replacement of fast path ITC emulation fault handler

2009-03-10 Thread Avi Kivity
From: Jes Sorensen j...@sgi.com Copy in SN2 RTC based ITC emulation for fast exit. The two versions have the same size, so a dropin is simpler than patching the branch instruction to hit the SN2 version. Signed-off-by: Jes Sorensen j...@sgi.com Acked-by: Xiantao Zhang xiantao.zh...@intel.com

Re: KVM: x86: use smp_send_reschedule in kvm_vcpu_kick

2009-03-10 Thread Avi Kivity
Marcelo Tosatti wrote: OK, reworked patch: - change ia64 in addition to x86 - add comment on smp send reschedule handlers about KVM's usage Untested on IA64. KVM: use smp_send_reschedule in kvm_vcpu_kick KVM uses a function call IPI to cause the exit of a guest running on a physical cpu. For

Re: Problems KVM-84

2009-03-10 Thread Avi Kivity
J- MAN wrote: Also the second time i run the command, it only takes around 2-3 seconds for the window to open. I don't think this is a regression from kvm-83. Large qcow2 files have lots of metadata which needs to be

Re: Problems KVM-84

2009-03-10 Thread Avi Kivity
J- MAN wrote: I don't think this is a regression from kvm-83. Large qcow2 files have lots of metadata which needs to be loaded up front. If the kernel doesn't have this cached, it will take a long time. I'm just wondering what happend between 83 and 84, because there is no startup delay

[ kvm-Bugs-2679041 ] BUG: scheduling while atomic: qemu-system-x86

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

Re: [Bulk] RE: [Qemu-devel] ANNOUNCE: QEMU 0.10.0 stable branch

2009-03-10 Thread Doug Schaefer
Dietmar Maurer wrote: I just wonder if 0.XX is a good name for a stable release. May is suggest to increase the major number (1.XX). It's not that stable Doug. -- To unsubscribe from this list: send the line unsubscribe kvm in the body of a message to majord...@vger.kernel.org More

Re: ioapic/msi interrupt delivery consolidation.

2009-03-10 Thread Mike Day
On 05/03/09 16:34 +0200, Gleb Natapov wrote: ioapic_deliver() and kvm_set_msi() have code duplication. Move the code into ioapic_deliver_entry() function and call it from both places. +static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq) +{ + union kvm_ioapic_redirect_entry

new wiki missing pages?

2009-03-10 Thread Hollis Blanchard
Hi, I notice the old wiki has been replaced with http://www.linux-kvm.org/ ... unfortunately it seems to be missing *all* PowerPC information. Can this be recovered please? I have no idea what other pages may be missing. -- Hollis Blanchard IBM Linux Technology Center -- To unsubscribe from

Re: new wiki missing pages?

2009-03-10 Thread Ryan Harper
* Hollis Blanchard holl...@us.ibm.com [2009-03-10 13:46]: Hi, I notice the old wiki has been replaced with http://www.linux-kvm.org/ ... unfortunately it seems to be missing *all* PowerPC information. Can this be recovered please? I have no idea what other pages may be missing.

Re: Virtulization instructions like skinit and TXT support inside KVM

2009-03-10 Thread Joerg Roedel
On Sat, Feb 28, 2009 at 03:58:37AM +0100, Pravin wrote: Hi, I wanted to know how kvm handles special previlaged instructions provided for virtulization support like skinit in AMD and TXT in intel. Are they also virtualized in KVM..?? Is there any work going in this direction? Pointers to

Re: new wiki missing pages? / new wiki for kvm

2009-03-10 Thread Dor Laor
Ryan Harper wrote: * Hollis Blanchard holl...@us.ibm.com [2009-03-10 13:46]: Hi, I notice the old wiki has been replaced with http://www.linux-kvm.org/ ... unfortunately it seems to be missing *all* PowerPC information. Can this be recovered please? I have no idea what other pages may be

Re: Problem with KVM-84 and more than 4 processors

2009-03-10 Thread Matthias Hovestadt
Hi! Manually loading the kvm_intel module fails with an Cannot allocate memory error. Also starting VMs fails since he is unable to find /dev/kvm. Looks like a memory corruption issue. Please post your .config. Here it is... Best, Matthias # # Automatically generated make config:

Re: new wiki missing pages? / new wiki for kvm

2009-03-10 Thread Hollis Blanchard
On Tue, 2009-03-10 at 22:49 +0200, Dor Laor wrote: Sorry for that. It took IT only few month to change the Wiki... During this tight schedule some pages got lost as you can see.. Please report on a problematic/missing page. Are these emails sufficient, or are you asking us to report some

[PATCH] KVM: make 'lapic_timer_ops' and 'kpit_ops' static

2009-03-10 Thread Hannes Eder
Fix this sparse warnings: arch/x86/kvm/lapic.c:916:22: warning: symbol 'lapic_timer_ops' was not declared. Should it be static? arch/x86/kvm/i8254.c:268:22: warning: symbol 'kpit_ops' was not declared. Should it be static? Signed-off-by: Hannes Eder han...@hanneseder.net ---

Re: new wiki missing pages? / new wiki for kvm

2009-03-10 Thread Dor Laor
Hollis Blanchard wrote: On Tue, 2009-03-10 at 22:49 +0200, Dor Laor wrote: Sorry for that. It took IT only few month to change the Wiki... During this tight schedule some pages got lost as you can see.. Please report on a problematic/missing page. Are these emails sufficient, or are

Re: ioapic/msi interrupt delivery consolidation.

2009-03-10 Thread Sheng Yang
On Wednesday 11 March 2009 00:54:37 Mike Day wrote: On 05/03/09 16:34 +0200, Gleb Natapov wrote: ioapic_deliver() and kvm_set_msi() have code duplication. Move the code into ioapic_deliver_entry() function and call it from both places. +static int ioapic_deliver(struct kvm_ioapic

Re: kvm-autotest -- introducing kvm_runtest_2

2009-03-10 Thread Michael Goldish
- Ryan Harper ry...@us.ibm.com wrote: - guest install wizard using md5sum region matching ... ouch. This is quite fickle. I've seen different kvms generate different md5sum for the same region a couple of times. I know distributing screenshots of certain OSes is a grey area,

[net-next PATCH 2/2] igb: add PF to pool if adding a VLVF register value and the VFTA bit is

2009-03-10 Thread Jeff Kirsher
From: Alexander Duyck alexander.h.du...@intel.com already set. This patch addresses the unlikely situation that the PF adds a vlan entry when the vlvf is full, and a vf later adds the vlan to the vlvf. Signed-off-by: Alexander Duyck alexander.h.du...@intel.com Signed-off-by: Jeff Kirsher

Re: kvm-autotest -- introducing kvm_runtest_2

2009-03-10 Thread Ryan Harper
* Michael Goldish mgold...@redhat.com [2009-03-10 20:55]: - Ryan Harper ry...@us.ibm.com wrote: - guest install wizard using md5sum region matching ... ouch. This is quite fickle. I've seen different kvms generate different md5sum for the same region a couple of times. I

Re: [PATCH v10 4/7] PCI: add SR-IOV API for Physical Function driver

2009-03-10 Thread Greg KH
On Tue, Mar 10, 2009 at 09:37:53AM +0800, Yu Zhao wrote: On Tue, Mar 10, 2009 at 03:39:01AM +0800, Greg KH wrote: On Mon, Mar 09, 2009 at 04:25:05PM +0800, Yu Zhao wrote: + pci_device_add(virtfn, virtfn-bus); Greg is probably going to ding you here for adding the device, then

Re: [PATCH v10 1/7] PCI: initialize and release SR-IOV capability

2009-03-10 Thread Greg KH
On Tue, Mar 10, 2009 at 09:19:44AM +0800, Yu Zhao wrote: On Sat, Mar 07, 2009 at 10:38:45AM +0800, Greg KH wrote: On Fri, Mar 06, 2009 at 01:08:10PM -0700, Matthew Wilcox wrote: On Fri, Feb 20, 2009 at 02:54:42PM +0800, Yu Zhao wrote: + list_for_each_entry(pdev, dev-bus-devices,

[ kvm-Bugs-2681442 ] Task Switch causes reboot

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

Re: [net-next PATCH 1/2] igbvf: add new driver to support 82576 virtual functions

2009-03-10 Thread Andrew Morton
On Tue, 10 Mar 2009 19:09:28 -0700 Jeff Kirsher jeffrey.t.kirs...@intel.com wrote: From: Alexander Duyck alexander.h.du...@intel.com This adds an igbvf driver to handle virtual functions provided by the igb driver. The drive-by reader is now wondering what a virtual function is. ...