Re: rdmsr_safe in Linux PV (under Xen) gets an #GP:Re: [Fedora-xen] Running fedora xen on top of KVM?

2015-09-18 Thread Cole Robinson
On 09/18/2015 03:04 PM, Borislav Petkov wrote: > On Fri, Sep 18, 2015 at 08:20:46AM -0700, Andy Lutomirski wrote: >> Given that we can handle fixups in the decompressor, surely it >> wouldn't be so hard to make early GPF fixups work in the main kernel. > > Frankly, I still am wondering what a

Re: [PATCH] KVM: s390: remove delayed reallocation of page tables for KVM

2015-04-23 Thread Cole Robinson
already. Right? With my Fedora hat on, adding a sysctl file to the userspace RPMs (e.g. qemu) would work. CCing Cole Robinson who is the main maintainer of the Fedora virt packages. From a packaging POV that sounds fine to me - Cole -- To unsubscribe from this list: send the line

Re: usb audio device troubles

2014-12-08 Thread Cole Robinson
On 12/08/2014 05:43 AM, Hans de Goede wrote: Hi Eric, On 03-12-14 16:39, Eric S. Johansson wrote: On 12/3/2014 3:52 AM, Hans de Goede wrote: Eric are you using usb-host redirection, or Spice's usb network redir ? This little bit of time this morning learning about spice and the network

Re: virt-install: failed to initialize KVM: Permission denied

2014-08-20 Thread Cole Robinson
On 08/19/2014 02:38 PM, arnaud gaboury wrote: $ uname -r 3.16.1-1-ARCH - As a regular user, member of the libvirt group, I run this command to create a basic VM: virt-install --connect qemu:///system --name=test --ram 2048 --cpu host-model-only --os-variant=win7

Re: Problem after update windows VirtIO drivers

2013-12-09 Thread Cole Robinson
On 12/09/2013 11:45 AM, Alon Levy wrote: On 12/09/2013 04:45 PM, Carlos Rodrigues wrote: Hello, After update the VirtIO drivers for Windows Server 2008 R2 64-bit, when i reboot virtual machine, the windows OS get stuck on loading bar. The VirtIO drivers is the latest stable that i made the

Re: [PATCH kvm-unit-tests v2 0/4] Have x86-run parse unittests.cfg

2013-04-15 Thread Cole Robinson
On 04/15/2013 06:47 AM, Paolo Bonzini wrote: Il 15/04/2013 10:30, Kevin Wolf ha scritto: Am 14.04.2013 um 20:18 hat Cole Robinson geschrieben: First two patches are trivial bits. Rest rewrites x86-run in python, which then makes it easy to parse unittests.cfg. This makes it simpler to invoke

[PATCH kvm-unit-tests v2 0/4] Have x86-run parse unittests.cfg

2013-04-14 Thread Cole Robinson
://www.spinics.net/lists/kvm/msg89471.html v2: Drop patch that removed x86/README Don't remove manual invocations examples from README Cole Robinson (4): .gitignore: Add *.flat and config.mak x86/run-kvm-unit-tests: Drop it Rewrite x86-run in python x86-run: Pull extra arguments from unittests.cfg

[PATCH kvm-unit-tests v2 1/4] .gitignore: Add *.flat and config.mak

2013-04-14 Thread Cole Robinson
--- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index ed857b7..52655e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,10 @@ +config.mak .gdbinit *.a *.d *.o *.flat +*.elf .pc patches .stgit-* -- 1.8.1.4 -- To unsubscribe from this list:

[PATCH kvm-unit-tests v2 2/4] x86/run-kvm-unit-tests: Drop it

2013-04-14 Thread Cole Robinson
Never appears to have done anything useful --- x86/run-kvm-unit-tests | 6 -- 1 file changed, 6 deletions(-) delete mode 100644 x86/run-kvm-unit-tests diff --git a/x86/run-kvm-unit-tests b/x86/run-kvm-unit-tests deleted file mode 100644 index fed925a..000 --- a/x86/run-kvm-unit-tests

[PATCH kvm-unit-tests v2 4/4] x86-run: Pull extra arguments from unittests.cfg

2013-04-14 Thread Cole Robinson
Some tests want extra arguments as enumerated in unittests.cfg, use them. unittests.cfg also has a few sections about invoking certains tests with different combinations of options, but x86-run doesn't do anything with that. --- x86-run | 20 1 file changed, 20 insertions(+)

[PATCH kvm-unit-tests v2 3/4] Rewrite x86-run in python

2013-04-14 Thread Cole Robinson
Main motivation here is in the next patch: getting access to ConfigParser for pulling extra options out of x86/unittests.cfg. Also makes it easier to get a consistent exit code on failure. --- v2: Don't drop manual examples from README README | 14 +--- x86-run | 113

Re: [PATCH kvm-unit-tests 5/5] x86-run: Pull extra arguments from unittests.cfg

2013-04-14 Thread Cole Robinson
On 04/14/2013 09:40 AM, Gleb Natapov wrote: On Mon, Mar 25, 2013 at 02:30:27PM -0400, Cole Robinson wrote: On 03/20/2013 03:06 PM, Marcelo Tosatti wrote: On Sun, Mar 17, 2013 at 07:58:56PM -0400, Cole Robinson wrote: On 03/17/2013 11:25 AM, Gleb Natapov wrote: On Fri, Mar 15, 2013 at 08:09

Re: [PATCH kvm-unittests v2 0/4] Add run_tests.sh script and update unittests.cfg

2013-04-13 Thread Cole Robinson
On 04/12/2013 07:27 AM, Kevin Wolf wrote: This adds a small script that allows to conveniently run all test cases and that reports back one PASS or FAIL line for each test case; it also creates a test.log file with the full output. It parses the unittests.cfg file used by autotest, so I'm

Re: [PATCH kvm-unit-tests 2/5] x86/README: Drop it

2013-03-25 Thread Cole Robinson
On 03/20/2013 02:54 PM, Marcelo Tosatti wrote: On Fri, Mar 15, 2013 at 08:09:06PM -0400, Cole Robinson wrote: Was out of date, and not particularly useful to begin with. --- x86/README | 16 1 file changed, 16 deletions(-) delete mode 100644 x86/README diff --git a/x86

Re: [PATCH kvm-unit-tests 5/5] x86-run: Pull extra arguments from unittests.cfg

2013-03-25 Thread Cole Robinson
On 03/20/2013 03:06 PM, Marcelo Tosatti wrote: On Sun, Mar 17, 2013 at 07:58:56PM -0400, Cole Robinson wrote: On 03/17/2013 11:25 AM, Gleb Natapov wrote: On Fri, Mar 15, 2013 at 08:09:09PM -0400, Cole Robinson wrote: Some tests want extra arguments as enumerated in unittests.cfg, use them

Re: [PATCH kvm-unit-tests 5/5] x86-run: Pull extra arguments from unittests.cfg

2013-03-17 Thread Cole Robinson
On 03/17/2013 11:25 AM, Gleb Natapov wrote: On Fri, Mar 15, 2013 at 08:09:09PM -0400, Cole Robinson wrote: Some tests want extra arguments as enumerated in unittests.cfg, use them. unittests.cfg also has a few sections about invoking certains tests with different combinations of options

[PATCH kvm-unit-tests 1/5] .gitignore: Add *.flat and config.mak

2013-03-15 Thread Cole Robinson
--- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index ed857b7..52655e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,10 @@ +config.mak .gdbinit *.a *.d *.o *.flat +*.elf .pc patches .stgit-* -- 1.8.1.4 -- To unsubscribe from this list:

[PATCH kvm-unit-tests 3/5] x86/run-kvm-unit-tests: Drop it

2013-03-15 Thread Cole Robinson
Never appears to have done anything useful --- x86/run-kvm-unit-tests | 6 -- 1 file changed, 6 deletions(-) delete mode 100644 x86/run-kvm-unit-tests diff --git a/x86/run-kvm-unit-tests b/x86/run-kvm-unit-tests deleted file mode 100644 index fed925a..000 --- a/x86/run-kvm-unit-tests

[PATCH kvm-unit-tests 2/5] x86/README: Drop it

2013-03-15 Thread Cole Robinson
Was out of date, and not particularly useful to begin with. --- x86/README | 16 1 file changed, 16 deletions(-) delete mode 100644 x86/README diff --git a/x86/README b/x86/README deleted file mode 100644 index d644abd..000 --- a/x86/README +++ /dev/null @@ -1,16 +0,0 @@

[PATCH kvm-unit-tests 5/5] x86-run: Pull extra arguments from unittests.cfg

2013-03-15 Thread Cole Robinson
Some tests want extra arguments as enumerated in unittests.cfg, use them. unittests.cfg also has a few sections about invoking certains tests with different combinations of options, but x86-run doesn't do anything with that. --- x86-run | 20 1 file changed, 20 insertions(+)

[PATCH kvm-unit-tests 4/5] Rewrite x86-run in python

2013-03-15 Thread Cole Robinson
Main motivation here is in the next patch: getting access to ConfigParser for pulling extra options out of x86/unittests.cfg. Drop the README bits about manually invoking qemu-kvm/qemu-system: the runner spits out the generated CLI if you want to invoke it by hand, and since some tests want

Re: [user question] Opinions about running Windows in KVM

2012-12-20 Thread Cole Robinson
On 12/20/2012 12:56 PM, Marc Haber wrote: I installed the spice-guest-tools-0.2.exe, and set the VGA model to qxl in virt-manager. I had to bcdedit -set loadoptions DDISABLE_INTEGRITY_CHECKS and bcdedit -set TESTSIGNING ON to get the unsigned qxl graphics driver to load (and now have an

Re: Can we run guest OS without using NAT and iptables?

2012-10-29 Thread Cole Robinson
On 10/29/2012 05:30 AM, Stefan Hajnoczi wrote: On Mon, Oct 29, 2012 at 12:55:43PM +0530, freak 62 wrote: Can we run guest o.s. on KVM without enabling NAT and iptables? The reason to do this is , I wanted to disable conntrack module from my system and to disable that I must have to

[qemu-kvm PATCH] mips: Fix link error with 'piix4_pm_init'

2012-09-26 Thread Cole Robinson
. We are carrying this in Fedora since we build everything from qemu-kvm.git Signed-off-by: Cole Robinson crobi...@redhat.com --- hw/mips/Makefile.objs | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/mips/Makefile.objs b/hw/mips/Makefile.objs index 29a5d0d..89af0e9 100644 --- a/hw/mips

Re: [PATCH] configure: Add --disable-kvm-options

2012-08-15 Thread Cole Robinson
On 08/14/2012 09:40 PM, Marcelo Tosatti wrote: On Mon, Aug 13, 2012 at 06:49:49PM -0400, Cole Robinson wrote: In Fedora, our qemu package is based on qemu-kvm, and we go to convoluted lengths to provide a qemu-kvm binary with KVM on by default, but all qemu-system-* with KVM off by default

Re: [PATCH 0/3] VFIO-based PCI device assignment for QEMU 1.2

2012-08-14 Thread Cole Robinson
On 08/13/2012 03:31 PM, Anthony Liguori wrote: Jan Kiszka jan.kis...@siemens.com writes: On 2012-08-13 15:58, Avi Kivity wrote: On 08/13/2012 04:27 PM, Anthony Liguori wrote: Thanks for pushing this forward! Hopefully this will finally kill off qemu-kvm.git for good. No, it won't. vfio

Re: [PATCH 0/3] VFIO-based PCI device assignment for QEMU 1.2

2012-08-14 Thread Cole Robinson
On 08/14/2012 11:04 AM, Jan Kiszka wrote: On 2012-08-14 16:53, Cole Robinson wrote: On 08/13/2012 03:31 PM, Anthony Liguori wrote: Jan Kiszka jan.kis...@siemens.com writes: On 2012-08-13 15:58, Avi Kivity wrote: On 08/13/2012 04:27 PM, Anthony Liguori wrote: Thanks for pushing this forward

[PATCH] configure: Add --disable-kvm-options

2012-08-13 Thread Cole Robinson
, but the opt in option for KVM. CONFIG_KVM_OPTIONS fits the bill, so let's expose it through ./configure. This will also simplify our packaging for non-x86 KVM. Signed-off-by: Cole Robinson crobi...@redhat.com --- configure | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff

Re: VMM OSX port

2012-06-20 Thread Cole Robinson
FYI the virt-manager list is virt-tools-l...@redhat.com, CC'd. On 06/19/2012 07:33 PM, Gene Crucean wrote: Hey everyone, I just subscribed to this list so please forgive me if I goof something up. I was looking into the possibility of porting VMM to OSX. Is this on the todo list already?

Re: HAL type for Win2003 Server on recent KVM versions?

2010-11-18 Thread Cole Robinson
On 11/18/2010 09:05 AM, Kenni Lund wrote: 2010/11/18 Avi Kivity a...@redhat.com: On 11/18/2010 12:58 AM, Kenni Lund wrote: Hi I'm about to move a couple of virtual machines from a Fedora 11 system to a new server with a more recent operating system and newer version of KVM, etc. One of

Re: KVM call agenda for July 27

2010-07-27 Thread Cole Robinson
On 07/27/2010 09:30 AM, Anthony Liguori wrote: On 07/27/2010 06:51 AM, Daniel P. Berrange wrote: On Mon, Jul 26, 2010 at 05:28:21PM -0500, Anthony Liguori wrote: On 07/26/2010 04:28 PM, Chris Wright wrote: Please send in any agenda items you are interested in covering. -

Re: Fail to attach CDWriter

2010-02-22 Thread Cole Robinson
On 02/19/2010 04:47 AM, Mark Cave-Ayland wrote: sati...@pacific.net.hk wrote: Hi folks KVM Host - Fedora 12 64bit VM (guest) - Windows Server 2008 64bit Fail to attach CDWriter. $ sudo virsh -c qemu:///system start vm06_wser08 Domain vm06_wser08 started $ cat VM/DEV/cd.xml disk

Re: guest .img files

2009-10-19 Thread Cole Robinson
On 10/17/2009 06:52 PM, Kenni Lund wrote: 2009/10/17 Lynn Wilborn l...@hotrodpc.com: I have a windows 2003 server guest that's been registered with MS, and it probably won't let me do that many more times. So I want to save the guest, erase fedora, and install centos 5.4 when it comes out.

Re: docs on storage pools?

2009-10-04 Thread Cole Robinson
Richard Wurman wrote: So far I've been using files and/or LVM partitions for my VMs -- basically by using virt-manager and modifying existing XML configs and just copying my VM files to be reused. I'm wondering how KVM storage pools work -- at first I thought it was something like KVM's

Re: virt-install: hda disks?

2009-09-30 Thread Cole Robinson
On 09/30/2009 10:28 AM, James Brackinshaw wrote: Hi, Not sure if this is the right place to ask this. virt-install questions should be directed to virt-tools-l...@redhat.com I'm getting hda disks by default with kvm under RHEL5.4 using virt-install. This seems an odd default. Is there a

Re: virt-install: hda disks?

2009-09-30 Thread Cole Robinson
On 09/30/2009 11:11 AM, James Brackinshaw wrote: On Wed, Sep 30, 2009 at 4:51 PM, Cole Robinson crobi...@redhat.com wrote: On 09/30/2009 10:28 AM, James Brackinshaw wrote: Hi, Not sure if this is the right place to ask this. virt-install questions should be directed to virt-tools-l

Re: virt-install: hda disks?

2009-09-30 Thread Cole Robinson
On 09/30/2009 11:18 AM, James Brackinshaw wrote: virt-install --os-variant virtio26 which will take care of disk and networking defaults. - Cole Ah. For networking, is this in addition to, or instead of model type=e1000 / ? Instead. -- To unsubscribe from this list: send the line