search for: acpi_en

Displaying 12 results from an estimated 12 matches for "acpi_en".

Did you mean: acpi_gen
2011 Nov 18
2
[PATCH 0 of 2] Add configuration options to selectively disable S3 and S4 (V3)
This patch series adds the ability to selectively disable the S3 and S4 ACPI power states for HVM guests. Since there is a general move towards retiring the hvm_info_table structure, the first patch moves the acpi_enabled flag out of the hvm_info_table and into a xenstore key (platform/acpi). The second patch then introduces the acpi_s3 and acpi_s4 configuration parameters to the xl config file (default=1). These result in population of new platform/acpi_s3 and platform/acpi_s4 xenstore keys. hvmloader then rea...
2007 Aug 16
0
Using OHCI to replace UHCI can improve the USB performance dramatically under windows
...s/ioemu/hw/pc.c . --- pc.c.original 2007-08-14 14:04:33.000000000 +0800 +++ pc.c 2007-08-08 08:57:33.000000000 +0800 @@ -897,7 +897,9 @@ pci_piix4_acpi_init(pci_bus, piix3_devfn + 2); if (pci_enabled && usb_enabled) { - usb_uhci_init(pci_bus, piix3_devfn + (acpi_enabled ? 3 : 2)); + //usb_uhci_init(pci_bus, piix3_devfn + (acpi_enabled ? 3 : 2)); + //usb_ohci_init(pci_bus, 3, -1); + usb_ohci_init(pci_bus, 3,piix3_devfn + (acpi_enabled ? 3 : 2)); } #ifndef CONFIG_DM There are some issues forLinux guest OS. I am trying to fix...
2013 Sep 06
5
Bug#710650: Bug#718767: transition: ocaml 4.00.1
...:197:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] > int domid = (int) arg; > ^ > xenguest_stubs.c: In function 'hvm_build_set_params': > xenguest_stubs.c:360:8: error: 'struct hvm_info_table' has no member named 'acpi_enabled' > va_hvm->acpi_enabled = f.acpi; > ^ > xenguest_stubs.c: At top level: > xenguest_stubs.c:470:3: warning: initialization from incompatible pointer type [enabled by default] > .postcopy = switch_qemu_logdirty, > ^ > [...] On the other hand, there is...
2013 Sep 24
0
Bug#710650: Bug#718767: transition: ocaml 4.00.1
...:197:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] > int domid = (int) arg; > ^ > xenguest_stubs.c: In function 'hvm_build_set_params': > xenguest_stubs.c:360:8: error: 'struct hvm_info_table' has no member named 'acpi_enabled' > va_hvm->acpi_enabled = f.acpi; > ^ > xenguest_stubs.c: At top level: > xenguest_stubs.c:470:3: warning: initialization from incompatible pointer type [enabled by default] > .postcopy = switch_qemu_logdirty, > ^ > xenguest_stubs.c:470:3: warning: (...
2013 Sep 24
2
Bug#710650: Bug#718767: transition: ocaml 4.00.1
On 09/24/2013 10:04 PM, St?phane Glondu wrote: > Le 24/09/2013 15:48, St?phane Glondu a ?crit : >> If I remove all binary packages of xen-api from testing, the following >> new packages are broken: xcp-guest-templates, nova-xcp-plugins, >> nova-compute-xen. >> >> xcp-guest-templates is built by guest-templates which seems to be a leaf >> package and could be
2013 Sep 06
0
Bug#710650: Bug#718767: transition: ocaml 4.00.1
...: cast from pointer to integer of different size [-Wpointer-to-int-cast] >> int domid = (int) arg; >> ^ >> xenguest_stubs.c: In function 'hvm_build_set_params': >> xenguest_stubs.c:360:8: error: 'struct hvm_info_table' has no member named 'acpi_enabled' >> va_hvm->acpi_enabled = f.acpi; >> ^ >> xenguest_stubs.c: At top level: >> xenguest_stubs.c:470:3: warning: initialization from incompatible pointer type [enabled by default] >> .postcopy = switch_qemu_logdirty, >> ^ >> [...]...
2012 Feb 10
6
[PATCH v2 0/3] hvmloader: Make ROM dependencies optional
This patch set mainly allows the user to build a seabios or rombios only version of hvmloader. In addition, when building a seabios only hvmloader, Option ROMs like vgabios and etherboot are no longer required, and therefore can be disabled from the build. Dependency on the bcc compiler can also be avoided the same way. v2: Separate patches for separate issues Introduced config option to
2012 Feb 11
14
[PATCH v3 0/5] hvmloader: Make ROM dependencies optional
This patch set mainly allows the user to build a seabios or rombios only version of hvmloader. In addition, when building a seabios only hvmloader, Option ROMs like vgabios and etherboot are no longer required, and therefore can be disabled from the build. Dependency on the bcc compiler can also be avoided the same way. v2: Separate patches for separate issues Introduced config option to
2012 Feb 08
28
[PATCH v3 0/6] initial suspend support
This patch series makes suspend support in qemu alot more useful. Right now the guest can put itself into s3, but qemu will wakeup the guest instantly. With this patch series applied the guest will stay suspended instead and there are a few events which can kick the guest out of suspend state: A monitor command, ps/2 input, serial input, rtc. Not much yet, but it''s a start with the
2011 Jul 07
6
Xen unstable on NetBSD
Hello, I''m trying to compile Xen unstable on NetBSD, I''ve aplied the patches from http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/sysutils/xentools41/patches/?only_with_tag=MAIN and copied the blk files from http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/sysutils/xentools41/files/?only_with_tag=MAIN (I don''t know which of these patches have been applied to xen unstable, so
2010 Aug 12
59
[PATCH 00/15] RFC xen device model support
Hi all, this is the long awaited patch series to add xen device model support in qemu; the main author is Anthony Perard. Developing this series we tried to come up with the cleanest possible solution from the qemu point of view, limiting the amount of changes to common code as much as possible. The end result still requires a couple of hooks in piix_pci but overall the impact should be very
2007 Mar 28
2
[PATCH 2/3] User-space grant table device - main driver
A character device for accessing (in user-space) pages that have been granted by other domains. Signed-off-by: Derek Murray <Derek.Murray@cl.cam.ac.uk> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel