[Qemu-devel] [Bug 599958] Re: Timedrift problems with Win7: hpet missing time drift fixups

2013-10-01 Thread Ben A
Forgot to add: Reproduced the above behavior in both 1.5.1 and 1.6.0. Adding -no-hpet to commandline removed both problems (full disclosure: this fix wasn't tested in 1.5.1 but I have no reason to believe behavior would be different.) -- You received this bug notification because you are a

[Qemu-devel] [Bug 599958] Re: Timedrift problems with Win7: hpet missing time drift fixups

2013-10-01 Thread Ben A
Apparently this bug's still alive and kicking. There's an obvious clock skew problem on Windows 7; in the Date Time dialog, the clock jumps through seconds visibly too fast. I also found a case where HPET bugs are causing a real problem: Terraria (dedicated server) seems to be relying on

[Qemu-devel] [PATCH v5 00/10] Add support for VM Generation ID

2017-02-05 Thread ben
From: Ben Warren <b...@skyportsystems.com> This patch set adds support for passing a GUID to Windows guests. It is a re-implementation of previous patch sets written by Igor Mammedov et al, but this time passing the GUID data as a fw_cfg blob. This patch set has dependencies on new

[Qemu-devel] [PATCH v5 09/10] tests: Move reusable ACPI macros into a new header file

2017-02-05 Thread ben
From: Ben Warren <b...@skyportsystems.com> Also usable by upcoming VM Generation ID tests Signed-off-by: Ben Warren <b...@skyportsystems.com> --- tests/acpi-utils.h | 75 tests/bios-tables

[Qemu-devel] [PATCH v5 08/10] PC: Support dynamic sysbus on pc_i440fx

2017-02-05 Thread ben
From: Ben Warren <b...@skyportsystems.com> This allows pc_i440fx-based machines to add new devices such as VM Generation ID directly to the sysbus. Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hw/i386/pc_piix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/i386

[Qemu-devel] [PATCH v5 01/10] ACPI: Add a function for building named qword entries

2017-02-05 Thread ben
From: Ben Warren <b...@skyportsystems.com> This is initially used to patch a 64-bit address into the VM Generation ID SSDT Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hw/acpi/aml-build.c | 35 +++ include/hw/acpi/aml-build.h | 4 +

[Qemu-devel] [PATCH v5 04/10] ACPI: Add vmgenid storage entries to the build tables

2017-02-05 Thread ben
From: Ben Warren <b...@skyportsystems.com> This allows them to be centrally initialized and destroyed Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hw/acpi/aml-build.c | 2 ++ include/hw/acpi/aml-build.h | 1 + 2 files changed, 3 insertions(+) diff --git a/hw/acpi

[Qemu-devel] [PATCH v5 10/10] tests: Add unit tests for the VM Generation ID feature

2017-02-05 Thread ben
From: Ben Warren <b...@skyportsystems.com> The following tests are implemented: * test that a GUID passed in by command line is propagated to the guest. * test that changing the GUID at runtime via the monitor is reflected in the guest. * test that the "auto" argument to th

[Qemu-devel] [PATCH v5 06/10] qmp/hmp: add query-vm-generation-id and 'info vm-generation-id' commands

2017-02-05 Thread ben
gt; Reviewed-by: Eric Blake <ebl...@redhat.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hmp-commands-info.hx | 13 + hmp.c| 9 + hmp.h| 1 + hw/acpi/vmgenid.c| 20 qapi-schema.json |

[Qemu-devel] [PATCH v5 07/10] qmp/hmp: add set-vm-generation-id commands

2017-02-05 Thread ben
d1d1-4bf6-bf41-b9bb6c91fb87" } } HMP command example: set-vm-generation-id guid=324e6eaf-d1d1-4bf6-bf41-b9bb6c91fb87 Signed-off-by: Igor Mammedov <imamm...@redhat.com> Reviewed-by: Eric Blake <ebl...@redhat.com> Signed-off-by: Ben Warren <b...@skyportsystems

[Qemu-devel] [PATCH v5 02/10] linker-loader: Add new 'write pointer' command

2017-02-05 Thread ben
From: Ben Warren <b...@skyportsystems.com> This adds to the existing 'add pointer' functionality in that it instructs the guest (BIOS or UEFI) to not patch memory but to instead write the changes back to QEMU via a writeable fw_cfg file. Signed-off-by: Ben Warren <b...@skyportsy

[Qemu-devel] [PATCH v5 03/10] docs: VM Generation ID device description

2017-02-05 Thread ben
From: Ben Warren <b...@skyportsystems.com> This patch is based off an earlier version by Gal Hammer (gham...@redhat.com) Requirements section, ASCII diagrams and overall help provided by Laszlo Ersek (ler...@redhat.com) Signed-off-by: Gal Hammer <gham...@redhat.com> Signed-off-by: B

[Qemu-devel] [PATCH v5 05/10] ACPI: Add Virtual Machine Generation ID support

2017-02-05 Thread ben
From: Ben Warren <b...@skyportsystems.com> This implements the VM Generation ID feature by passing a 128-bit GUID to the guest via a fw_cfg blob. Any time the GUID changes, an ACPI notify event is sent to the guest The user interface is a simple device with one parameter: - guid (string

[Qemu-devel] [PATCH v3 4/6] qmp/hmp: add query-vm-generation-id and 'info vm-generation-id' commands

2017-01-22 Thread ben
gt; Reviewed-by: Eric Blake <ebl...@redhat.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hmp-commands-info.hx | 13 + hmp.c| 9 + hmp.h| 1 + qapi-schema.json | 20 stubs/Makefile.objs | 1 +

[Qemu-devel] [PATCH v3 5/6] qmp/hmp: add set-vm-generation-id commands

2017-01-22 Thread ben
d1d1-4bf6-bf41-b9bb6c91fb87" } } HMP command example: set-vm-generation-id guid=324e6eaf-d1d1-4bf6-bf41-b9bb6c91fb87 Signed-off-by: Igor Mammedov <imamm...@redhat.com> Reviewed-by: Eric Blake <ebl...@redhat.com> Signed-off-by: Ben Warren <b...@skyportsyste

[Qemu-devel] [PATCH v3 2/6] linker-loader: add new 'allocate and return address' cmd

2017-01-22 Thread ben
From: Ben Warren <b...@skyportsystems.com> This adds a new linker-loader command to instruct the guest to allocate memory for a fw_cfg file and write the address back into another writeable fw_cfg file. Knowing this address, QEMU can then write into guest memory at runtime. Signed-off-b

[Qemu-devel] [PATCH v3 3/6] ACPI: Add Virtual Machine Generation ID support

2017-01-22 Thread ben
From: Ben Warren <b...@skyportsystems.com> This implements the VM Generation ID feature by passing a 128-bit GUID to the guest via a fw_cfg blob. Any time the GUID changes, and ACPI notify event is sent to the guest The user interface is a simple device with one parameter: - guid (string

[Qemu-devel] [PATCH v3 0/6] Add support for VM Generation ID

2017-01-22 Thread ben
From: Ben Warren <b...@skyportsystems.com> This patch set adds support for passing a GUID to Windows guests. It is a re-implementation of previous patch sets written by Igor Mammedov et al, but this time passing the GUID data as a fw_cfg blob. This patch set has dependencies on new

[Qemu-devel] [PATCH v3 6/6] PC: Support dynamic sysbus on pc_i440fx

2017-01-22 Thread ben
From: Ben Warren <b...@skyportsystems.com> This allows pc_i440fx-based machines to add new devices such as VM Generation ID directly to the sysbus. Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hw/i386/pc_piix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/i386

[Qemu-devel] [PATCH v3 1/6] ACPI: Add a function for building named qword entries

2017-01-22 Thread ben
From: Ben Warren <b...@skyportsystems.com> This is initially used to patch a 64-bit address into the VM Generation ID SSDT Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hw/acpi/aml-build.c | 28 include/hw/acpi/aml-build.h | 4 +

[Qemu-devel] [PATCH v4 6/9] qmp/hmp: add set-vm-generation-id commands

2017-01-24 Thread ben
d1d1-4bf6-bf41-b9bb6c91fb87" } } HMP command example: set-vm-generation-id guid=324e6eaf-d1d1-4bf6-bf41-b9bb6c91fb87 Signed-off-by: Igor Mammedov <imamm...@redhat.com> Reviewed-by: Eric Blake <ebl...@redhat.com> Signed-off-by: Ben Warren <b...@skyportsyste

[Qemu-devel] [PATCH v4 8/9] tests: Move reusable ACPI macros into a new header file

2017-01-24 Thread ben
From: Ben Warren <b...@skyportsystems.com> Also usable by upcoming VM Generation ID tests Signed-off-by: Ben Warren <b...@skyportsystems.com> --- tests/acpi-utils.h | 75 tests/bios-tables

[Qemu-devel] [PATCH v4 1/9] ACPI: Add a function for building named qword entries

2017-01-24 Thread ben
From: Ben Warren <b...@skyportsystems.com> This is initially used to patch a 64-bit address into the VM Generation ID SSDT Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hw/acpi/aml-build.c | 28 include/hw/acpi/aml-build.h | 4 +

[Qemu-devel] [PATCH v4 5/9] qmp/hmp: add query-vm-generation-id and 'info vm-generation-id' commands

2017-01-24 Thread ben
gt; Reviewed-by: Eric Blake <ebl...@redhat.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hmp-commands-info.hx | 13 + hmp.c| 9 + hmp.h| 1 + qapi-schema.json | 20 stubs/Makefile.objs | 1 +

[Qemu-devel] [PATCH v4 2/9] linker-loader: Add new 'allocate and return address' cmd

2017-01-24 Thread ben
From: Ben Warren <b...@skyportsystems.com> This adds a new linker-loader command to instruct the guest to allocate memory for a fw_cfg file and write the address back into another writeable fw_cfg file. Knowing this address, QEMU can then write into guest memory at runtime. Signed-off-b

[Qemu-devel] [PATCH v4 9/9] tests: Add unit tests for the VM Generation ID feature

2017-01-24 Thread ben
From: Ben Warren <b...@skyportsystems.com> The following tests are implemented: * test that a GUID passed in by command line is propagated to the guest. * test that changing the GUID at runtime via the monitor is reflected in the guest. * test that the "auto" argument to th

[Qemu-devel] [PATCH v4 4/9] ACPI: Add Virtual Machine Generation ID support

2017-01-24 Thread ben
From: Ben Warren <b...@skyportsystems.com> This implements the VM Generation ID feature by passing a 128-bit GUID to the guest via a fw_cfg blob. Any time the GUID changes, and ACPI notify event is sent to the guest The user interface is a simple device with one parameter: - guid (string

[Qemu-devel] [PATCH v4 3/9] docs: VM Generation ID device description

2017-01-24 Thread ben
From: Ben Warren <b...@skyportsystems.com> This patch is based off an earlier version by Gal Hammer (gham...@redhat.com) Signed-off-by: Gal Hammer <gham...@redhat.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> --- docs/specs/vmgenid.txt | 40 +

[Qemu-devel] [PATCH v4 0/9] Add support for VM Generation ID

2017-01-24 Thread ben
From: Ben Warren <b...@skyportsystems.com> This patch set adds support for passing a GUID to Windows guests. It is a re-implementation of previous patch sets written by Igor Mammedov et al, but this time passing the GUID data as a fw_cfg blob. This patch set has dependencies on new

[Qemu-devel] [PATCH v4 7/9] PC: Support dynamic sysbus on pc_i440fx

2017-01-24 Thread ben
From: Ben Warren <b...@skyportsystems.com> This allows pc_i440fx-based machines to add new devices such as VM Generation ID directly to the sysbus. Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hw/i386/pc_piix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/i386

[Qemu-devel] [PATCH v7 4/8] ACPI: Add Virtual Machine Generation ID support

2017-02-15 Thread ben
From: Ben Warren <b...@skyportsystems.com> This implements the VM Generation ID feature by passing a 128-bit GUID to the guest via a fw_cfg blob. Any time the GUID changes, an ACPI notify event is sent to the guest The user interface is a simple device with one parameter: - guid (string

[Qemu-devel] [PATCH v7 7/8] tests: Add unit tests for the VM Generation ID feature

2017-02-15 Thread ben
From: Ben Warren <b...@skyportsystems.com> The following tests are implemented: * test that a GUID passed in by command line is propagated to the guest. Read the GUID both from guest memory and from the monitor * test that the "auto" argument to the GUID generates a valid

[Qemu-devel] [PATCH v7 3/8] ACPI: Add vmgenid blob storage to the build tables

2017-02-15 Thread ben
From: Ben Warren <b...@skyportsystems.com> This allows them to be centrally initialized and destroyed The "AcpiBuildTables.vmgenid" array will be used to construct the "etc/vmgenid_guid" fw_cfg blob. Its contents will be linked into fw_cfg after being bu

[Qemu-devel] [PATCH v8 0/8] Add support for VM Generation ID

2017-02-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> This patch set adds support for passing a GUID to Windows guests. It is a re-implementation of previous patch sets written by Igor Mammedov et al, but this time passing the GUID data as a fw_cfg blob. This patch set has dependencies on new

[Qemu-devel] [PATCH v8 4/8] ACPI: Add Virtual Machine Generation ID support

2017-02-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> This implements the VM Generation ID feature by passing a 128-bit GUID to the guest via a fw_cfg blob. Any time the GUID changes, an ACPI notify event is sent to the guest The user interface is a simple device with one parameter: - guid (string

[Qemu-devel] [PATCH v8 7/8] tests: Add unit tests for the VM Generation ID feature

2017-02-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> The following tests are implemented: * test that a GUID passed in by command line is propagated to the guest. Read the GUID from guest memory * test that the "auto" argument to the GUID generates a valid GUID, as seen by the guest. *

[Qemu-devel] [PATCH v8 6/8] tests: Move reusable ACPI code into a utility file

2017-02-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> Also usable by upcoming VM Generation ID tests Signed-off-by: Ben Warren <b...@skyportsystems.com> --- MAINTAINERS | 2 + tests/Makefile.include | 2 +- tests/acpi-utils.c | 65 +++ tests/

[Qemu-devel] [PATCH v8 1/8] linker-loader: Add new 'write pointer' command

2017-02-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> This is similar to the existing 'add pointer' functionality, but instead of instructing the guest (BIOS or UEFI) to patch memory, it instructs the guest to write the pointer back to QEMU via a writeable fw_cfg file. Signed-off-by: Ben War

[Qemu-devel] [PATCH v8 8/8] MAINTAINERS: Add VM Generation ID entries

2017-02-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> Reviewed-by: Laszlo Ersek <ler...@redhat.com> --- MAINTAINERS | 9 + 1 file changed, 9 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 81d4baf..8f5dd35 100644

[Qemu-devel] [PATCH v8 2/8] docs: VM Generation ID device description

2017-02-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> This patch is based off an earlier version by Gal Hammer (gham...@redhat.com) Requirements section, ASCII diagrams and overall help provided by Laszlo Ersek (ler...@redhat.com) Signed-off-by: Gal Hammer <gham...@redhat.com> Signed-off-by: B

[Qemu-devel] [PATCH v8 3/8] ACPI: Add vmgenid blob storage to the build tables

2017-02-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> This allows them to be centrally initialized and destroyed The "AcpiBuildTables.vmgenid" array will be used to construct the "etc/vmgenid_guid" fw_cfg blob. Its contents will be linked into fw_cfg after being bu

[Qemu-devel] [PATCH v8 5/8] qmp/hmp: add query-vm-generation-id and 'info vm-generation-id' commands

2017-02-16 Thread ben
gt; Reviewed-by: Eric Blake <ebl...@redhat.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> Reviewed-by: Laszlo Ersek <ler...@redhat.com> Tested-by: Laszlo Ersek <ler...@redhat.com> --- hmp-commands-info.hx | 14 ++ hmp.c| 9 +

[Qemu-devel] [PATCH v6 7/7] tests: Add unit tests for the VM Generation ID feature

2017-02-14 Thread ben
From: Ben Warren <b...@skyportsystems.com> The following tests are implemented: * test that a GUID passed in by command line is propagated to the guest. * test that changing the GUID at runtime via the monitor is reflected in the guest. * test that the "auto" argument to th

[Qemu-devel] [PATCH v6 3/7] ACPI: Add vmgenid blob storage to the build tables

2017-02-14 Thread ben
From: Ben Warren <b...@skyportsystems.com> This allows them to be centrally initialized and destroyed The "AcpiBuildTables.vmgenid" array will be used to construct the "etc/vmgenid" fw_cfg blob. Its contents will be linked into fw_cfg after being built on the pc_ma

[Qemu-devel] [PATCH v6 1/7] linker-loader: Add new 'write pointer' command

2017-02-14 Thread ben
From: Ben Warren <b...@skyportsystems.com> This is similar to the existing 'add pointer' functionality, but instead of instructing the guest (BIOS or UEFI) to patch memory, it instructs the guest to write the pointer back to QEMU via a writeable fw_cfg file. Signed-off-by: Ben War

[Qemu-devel] [PATCH v6 4/7] ACPI: Add Virtual Machine Generation ID support

2017-02-14 Thread ben
From: Ben Warren <b...@skyportsystems.com> This implements the VM Generation ID feature by passing a 128-bit GUID to the guest via a fw_cfg blob. Any time the GUID changes, an ACPI notify event is sent to the guest The user interface is a simple device with one parameter: - guid (string

[Qemu-devel] [PATCH v2 1/6] docs: vm generation id device's description

2017-01-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> Cc: Gal Hammer <gham...@redhat.com> --- docs/specs/vmgenid.txt | 38 ++ 1 file changed, 38 insertions(+) create mode 100644 docs/specs/vmgen

[Qemu-devel] [PATCH v2 6/6] PC: Support dynamic sysbus on pc_i440fx

2017-01-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hw/i386/pc_piix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index a54a468..8ac894c 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix

[Qemu-devel] [PATCH v2 0/6] Add support for VM Generation ID

2017-01-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> This patch set adds support for passing a GUID to Windows guests. It is a re-implementation of previous patch sets written by Igor Mammedov et al, but this time passing the GUID data as a fw_cfg blob. This is not yet fully functional because th

[Qemu-devel] [PATCH v2 5/6] qmp/hmp: add set-vm-generation-id commands

2017-01-16 Thread ben
d1d1-4bf6-bf41-b9bb6c91fb87" } } HMP command example: set-vm-generation-id guid=324e6eaf-d1d1-4bf6-bf41-b9bb6c91fb87 Signed-off-by: Ben Warren <b...@skyportsystems.com> Cc: Igor Mammedov <imamm...@redhat.com> Cc: Eric Blake <ebl...@redhat.com> --- hmp-

[Qemu-devel] [PATCH v2 3/6] ACPI: Add Virtual Machine Generation ID support

2017-01-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> This implements the VM Generation ID feature by passing a 128-bit GUID to the guest via a fw_cfg blob. Any time the GUID changes, and ACPI notify event is sent to the guest The user interface is a simple device with one parameters: - guid (string

[Qemu-devel] [PATCH v2 2/6] ACPI: Add a function for building named qword entries

2017-01-16 Thread ben
From: Ben Warren <b...@skyportsystems.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hw/acpi/aml-build.c | 28 include/hw/acpi/aml-build.h | 4 2 files changed, 32 insertions(+) diff --git a/hw/acpi/aml-build.c b/hw/acpi/aml-b

[Qemu-devel] [PATCH v2 4/6] qmp/hmp: add query-vm-generation-id and 'info vm-generation-id' commands

2017-01-16 Thread ben
gt; Reviewed-by: Eric Blake <ebl...@redhat.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hmp-commands-info.hx | 13 + hmp.c| 9 + hmp.h| 1 + qapi-schema.json | 20 stubs/Makefile.objs | 1 +

[Qemu-devel] [PATCH 4/5] qmp/hmp: add query-vm-generation-id and 'info vm-generation-id' commands

2016-12-19 Thread ben
gt; Reviewed-by: Eric Blake <ebl...@redhat.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hmp-commands-info.hx | 13 + hmp.c| 9 + hmp.h| 1 + qapi-schema.json | 20 stubs/Makefile.objs | 1 +

[Qemu-devel] [PATCH 0/5] RFC: Add support for VM Generation ID

2016-12-19 Thread ben
From: Ben Warren <b...@skyportsystems.com> This patch set adds support for passing a GUID to Windows guests. It is a re-implementation of previous patch sets written by Igor Mammedov et al, but this time passing the GUID data as a fw_cfg blob. This has been tested to work with Windows 2

[Qemu-devel] [PATCH 1/5] docs: vm generation id device's description

2016-12-19 Thread ben
From: Ben Warren <b...@skyportsystems.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> Cc: Gal Hammer <gham...@redhat.com> --- docs/specs/vmgenid.txt | 39 +++ 1 file changed, 39 insertions(+) create mode 100644 docs/specs/vmgen

[Qemu-devel] [PATCH 5/5] qmp/hmp: add set-vm-generation-id commands

2016-12-19 Thread ben
"guid": "324e6eaf-d1d1-4bf6-bf41-b9bb6c91fb87" } } HMP command example: set-vm-generation-id changed=true guid=324e6eaf-d1d1-4bf6-bf41-b9bb6c91fb87 Signed-off-by: Ben Warren <b...@skyportsystems.com> Cc: Igor Mammedov <imamm...@redhat.com> Cc:

[Qemu-devel] [PATCH 2/5] ACPI: Add a function for building named qword entries

2016-12-19 Thread ben
From: Ben Warren <b...@skyportsystems.com> Signed-off-by: Ben Warren <b...@skyportsystems.com> --- hw/acpi/aml-build.c | 28 include/hw/acpi/aml-build.h | 4 2 files changed, 32 insertions(+) diff --git a/hw/acpi/aml-build.c b/hw/acpi/aml-b

[Qemu-devel] [PATCH 3/5] ACPI: Add Virtual Machine Generation ID support

2016-12-19 Thread ben
From: Ben Warren <b...@skyportsystems.com> This implements the VM Generation ID feature by passing a 128-bit GUID to the guest via a fw_cfg blob. The user interface is a simple device with two parameters: - guid (string, must be in UUID format ----) - c

[Qemu-devel] [PATCH] Bugfix: Handle error if VM Generation ID device not present

2017-03-02 Thread ben
From: Ben Warren <b...@skyportsystems.com> This was crashing due to NULL-pointer dereference QMP Test case: == (QEMU) query-vm-generation-id {"error": {"class": "GenericError", "desc": "VM Generation ID device not found"}} HM

Re: [Qemu-devel] [ovs-dev] [PATCH v2] OVS: update INSTALL.KVM

2013-05-28 Thread Ben Pfaff
On Tue, May 28, 2013 at 03:50:25PM +0800, zwu.ker...@gmail.com wrote: From: Zhi Yong Wu wu...@linux.vnet.ibm.com When i played with OVS again today, i found that the argument of ovs-dpctl show is not correct, so INSTALL.KVM need to be updated accordingly. Signed-off-by: Zhi Yong Wu

Re: [Qemu-devel] Solaris (9 and 10) supported on 0.6.1?

2005-04-21 Thread Ben Taylor
an empty log file was created on /tmp. Is there any alternative to provide more information about this issue? stop qemu, add the log entries from the monitor, and continue? Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org

[Qemu-devel] [PATCH] qemu-0.7.0 Solaris Host patch

2005-04-28 Thread Ben Taylor
in front of a standard solaris path, so just use the full path if you go this route. On solaris, from above the qemu-0.7.0 directory, type gpatch -p0 qemu-0.7.0-solaris-patch Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org

Re: Re: [Qemu-devel] Windows Laptop Idea

2005-04-29 Thread Ben Taylor
, to put it mildly. Which is why I was wondering about the bios signature. If I could swap it or set it at runtime, I could probably install the rescue disks. Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman

[Qemu-devel] Interaction between snapshot and savevm/loadvm

2005-05-01 Thread Ben Taylor
badly, I don't lose my original image. Thoughts? Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

Re: Re: [Qemu-devel] Windows Laptop Idea

2005-05-01 Thread Ben Taylor
can reinstall them from there, on to the XPHome, but that's a lot extra work. Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

Re: Re: [Qemu-devel] loadvm keyboard weirdness

2005-05-02 Thread Ben Taylor
Oliver Gerlich [EMAIL PROTECTED] wrote: Ben Taylor wrote: However, once I am booting the debian off the hard disk, customize the image and save it, the problem I see is when I reload the image using the command line parameter -loadvm knoppix-save.vm. I get the screen back exactly

Re: Re: [Qemu-devel] [PATCH] qemu-0.7.0 Solaris Host patch (Real)

2005-05-06 Thread Ben Taylor
gas to do this correctly? Blastwave's gcc uses sun's as and ld. Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

Re: Re: [Qemu-devel] [PATCH] qemu-0.7.0 Solaris Host patch (Real)

2005-05-06 Thread Ben Taylor
to not be set. When I added the flag back in to config-host.mak, the compile went the way it should have. At least I know what to look for now. Thanks, Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu

Re: Re: [Qemu-devel] user networking - win xp quest, amd64 linux host

2005-05-08 Thread Ben Taylor
Adrian Smarzewski [EMAIL PROTECTED] wrote Ben Taylor wrote: From: Adrian Smarzewski [EMAIL PROTECTED] Date: 2005/05/08 Sun PM 06:22:27 EDT To: qemu-devel@nongnu.org Subject: [Qemu-devel] user networking - win xp quest, amd64 linux host When I set 10.0.2.15 for win xp guest I can ping

Re: Re: [Qemu-devel] Dynamic bridging

2005-05-18 Thread Ben Taylor
Paul Brook [EMAIL PROTECTED] wrote: On Wednesday 18 May 2005 01:52, Ben Taylor wrote: I was trying to get the bridging working (with the help of pbrook and nox- on the irc #qemu channel) and eventually got it working under Sun JDS/3 (Suse 9.1) after adding the bridge-util's rpm

Re: Re: [Qemu-devel] Re: xen is not working with qemu0.7/kqemu

2005-06-13 Thread Ben Taylor
From: Ishwar Rattan [EMAIL PROTECTED] wrote: Why would anyone want run an emulator in another emulator.. because, AFAIK, xen doesn't run windows under a linux host with xen. Using qemu/kqemu, you could (assuming it actually works) run a windows session under qemu in a xen session. If qemu

[Qemu-devel] Growing qcow images

2005-06-23 Thread Ben Taylor
, with the obvious implications that you also have to grow the file system that is in the image, or add another partition. Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

Re: Re: [Qemu-devel] usb and qemu

2005-08-10 Thread Ben Taylor
server) to share it to the window's guest? Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

[Qemu-devel] compiling qemu-0.7.2 on Solaris express (gcc-3.4.4)

2005-09-05 Thread Ben Taylor
Testing the new qemu-0.7.2 on Solaris Express (11) using gcc-3.4.4. I'm getting a couple of weird errors I can't seem to get my hands around. in qemu-0.7.2/hw/apic.c gcc -Wall -O2 -g -fno-strict-aliasing -fomit-frame-pointer -I. -I/export/src/qemu-05-18-05/test/qemu-0.7.2/target-i386

Re: [Qemu-devel] linux-test image for user-net?

2005-11-15 Thread Ben Taylor
. Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

Re: [Qemu-devel] user-net -redir working?

2005-11-22 Thread Ben Taylor
. On my Solaris host with a linux guest, the packet arriving showed up as 127.0.0.1, which ended up with the same behavior as you're describing. Ben ethereal.guest.log Description: Binary data ethereal.host.log Description: Binary data ___ Qemu-devel

Re: [Qemu-devel] multiple instances of qemu process?

2005-12-02 Thread Ben Taylor
, you are using Tun/Tap, might you have to consider the IP address of the qemu Guest client. HTH, Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

[Qemu-devel] Patch to compile qemu-cvs under Solaris

2006-04-13 Thread Ben Taylor
before the next release. Comments? Ben qemu-snapshot-2006-04-12_23-solaris.patch Description: Binary data ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

[Qemu-devel] Patch to make configure /bin/sh compatible

2006-04-14 Thread Ben Taylor
This is a patch to make configure truly /bin/sh compatible, as well as changing some logic to remove echo -n for output to files, as echo -n is not consistent among environments. This is against the latest cvs branch, and I appreciate any feedback. Ben --- configure.ORIG 2006-04-14 10:26

[Qemu-devel] Update: Patch to make configure /bin/sh compatible

2006-04-14 Thread Ben Taylor
Here's a replacement patch to configure to make it /bin/sh and echo compatible. The other patch had some typos and one big mistake (the sdl_libs and cflags). Please review and let me know if you have any problems with the patch. Again, this is off the cvs head. Ben --- configure.ORIG 2006-04

Re: Re: [Qemu-devel] Patch to make configure /bin/sh compatible

2006-04-14 Thread Ben Taylor
Thiemo Seufer [EMAIL PROTECTED] Ben Taylor wrote: This is a patch to make configure truly /bin/sh compatible, as well as changing some logic to remove echo -n for output to files, as echo -n is not consistent among environments. This is against the latest cvs branch, and I

Re: [Qemu-devel] qemu ./qemu-doc.texi ./vl.c slirp/bootp.c slirp...

2006-04-16 Thread Ben Taylor
listed. Thanks for all your support (and putting up with my tpyos) Regards, Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

[Qemu-devel] PATCH: patch to qemu CVS-head for compiling under Solaris 10

2006-04-16 Thread Ben Taylor
qemu-0.7.0. Please let me know there are any issues. Thanks Ben diff -ruN qemu/Makefile qemu-solaris/Makefile --- qemu/Makefile 2006-04-16 08:41:07.0 -0400 +++ qemu-solaris/Makefile 2006-04-16 13:20:18.0 -0400 @@ -4,6 +4,9 @@ ifdef CONFIG_DARWIN CFLAGS+= -mdynamic-no-pic endif

[Qemu-devel] Patch for kqemu-1.3.0pre5 on Fedora Core 4 x86_64

2006-04-25 Thread Ben Dailey
/kernels/2.6.16-1.2096_FC4-smp-x86_64' make: *** [kqemu.ko] Error 2 -- Thank You, Ben Dailey [EMAIL PROTECTED] Asst. Technology Director Bluffton Harrison MSD www.bhmsd.k12.in.us --- kqemu-1.3.0pre5_pre/kqemu-linux.c 2006-03-27 15:58:01.0 -0500 +++ kqemu-1.3.0pre5/kqemu-linux.c 2006-04-25

Re: [Qemu-devel] [PATCH] fpu/softfloat-native.h incorrectly includes missing header (gnu-c99-math.h) in latest CVS

2006-04-26 Thread Ben Taylor
to isolate that file for Solaris only. Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

Re: [Qemu-devel] gnu-c99-math.h file

2006-04-26 Thread Ben Taylor
Sylvain Petreolle [EMAIL PROTECTED] wrote: --- Ben Taylor [EMAIL PROTECTED] a écrit : Apologies. That should have been isolated with a #ifdef __sun__ #include gnu-c99-math.h #endif correct. I rechecked the patch I sent to Fabrice and the gnu-c99-math.h file

[Qemu-devel] updated fpu/softfloat-native.h patch

2006-04-26 Thread Ben Taylor
The ammended version of fpu/softfloat-native.h patch. botched the flags when I posted it last night (no more 3am patching for me). This should be the correct fix. Ben --- softfloat-native.h.ORIG 2006-04-26 10:58:51.426224000 -0400 +++ softfloat-native.h 2006-04-26 10:59:01.255441000

[Qemu-devel] Where is this change coming from?

2006-04-26 Thread Ben Taylor
) Am I missing something? There are many cascading errors due to lo not defined in this environment, and I'm not really sure if it's a bug, or some problem in my environment. Ideas? Thanks, Ben ___ Qemu-devel mailing list Qemu-devel@nongnu.org http

[Qemu-devel] updated fpu/softfloat-native.h patch

2006-04-27 Thread Ben Taylor
Here is an updated patch that collapses the hackery need to get Solaris compiling with changes to fpu/softfloat-native.h apologies if the patch ends up mangled. The new webmail interface has been mangling attachments. Ben diff -ruN qemu/configure qemu-2/configure --- qemu/configure 2006

[Qemu-devel] corrected fpu/softfloat-native.h patch

2006-04-27 Thread Ben Taylor
Here is a corrected version of the patch. Fixed an else missing a #, and changed the logic to do some defines for Solaris 8/9 as it doesn't seem to like doing an #if defined(X) (X =Y) patch works on Solaris 9 and 10. diff -ruN qemu/configure qemu-2/configure --- qemu/configure 2006-04-26

PATCH: was Re: [Qemu-devel] Where is this change coming from?

2006-04-27 Thread Ben Taylor
This patch fixes correctly the size of the string (which happens to explain why all of the functions in op.h had the exact same format ) as well as fixes a stack adjustment that op_pavgb_xmm exceeds. Ben Ben Taylor [EMAIL PROTECTED] wrote: Compile environment - Solaris 9/Ultra 10

[Qemu-devel] PATCH: Solaris softfloat

2006-04-28 Thread Ben Taylor
This is an updated patch to modify configure and files in the fpu directory to allow qemu to compile on Solaris. This patch has been extensively tested with Solaris 10 on X86 and Solaris 9 on Sparc. diff -ruN qemu/configure qemu-solaris/configure --- qemu/configure 2006-04-27

[Qemu-devel] PATCH: solaris sparc and hw patch

2006-04-28 Thread Ben Taylor
This patch adds support for compiling/running on Solaris SPARC (9 and 10) This patch allows qemu to compile on Solaris X86 and SPARC, under Solaris 9, 10 and Solaris express.. This should apply against the current CVS tree. Comments? Ben diff -ruN qemu/Makefile qemu-solaris/Makefile

Re: [Qemu-devel] PATCH: solaris sparc and hw patch

2006-04-28 Thread Ben Taylor
Ben Taylor [EMAIL PROTECTED] wrote: This patch adds support for compiling/running on Solaris SPARC (9 and 10) This patch allows qemu to compile on Solaris X86 and SPARC, under Solaris 9, 10 and Solaris express.. This should apply against the current CVS tree. But will require

[Qemu-devel] Updated PATCH: solaris-softloat.diff

2006-04-28 Thread Ben Taylor
After figuring out there was some typos in fpu/softfloat-native.h, this patch has been reworked to more closely mirror the BSD structure. This is against the current CVS post pbrook's patching of fpu/softfloat-native.h Bendiff -ruN qemu/configure qemu-solaris/configure --- qemu/configure

[Qemu-devel] Solaris SPARC host patch

2006-04-28 Thread Ben Taylor
This patch is to allow Solaris Hardware host a qemu session. This is a current patch requires CVS plus the latest current solaris-softfloat.diff patch diff -ruN qemu/Makefile qemu-solaris/Makefile --- qemu/Makefile 2006-04-23 13:57:59.0 -0400 +++ qemu-solaris/Makefile 2006-04-28

[Qemu-devel] Bios Bug?

2006-04-28 Thread Ben Dailey
project and keep up the wonderful work. -- Thank You, Ben Dailey [EMAIL PROTECTED] Asst. Technology Director Bluffton Harrison MSD www.bhmsd.k12.in.us ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel

[Qemu-devel] Qemu cleanup

2006-04-28 Thread Ben Taylor
This is just a cosmetic patch to move declarations to the begining of functions, and change things like int x=(rand(y)) to int x; x=(rand(y)); As always, this is against the current CVS archive. Ben Reporting-MTA: dns; eastrmmtao04.cox.net Arrival-Date: Fri, 28 Apr 2006 14:54:59 -0400

Re: [Qemu-devel] hw/ide.c patch

2006-04-28 Thread Ben Taylor
Hetz Ben Hamo [EMAIL PROTECTED] wrote: Solaris for Sparc on X86? Solaris for X86, on X86. Prior attempts with a known working DVD failed when it tried to read the catalog off the disk. Ben ___ Qemu-devel mailing list Qemu-devel

  1   2   3   4   5   6   7   >