search for: store_mfn

Displaying 20 results from an estimated 88 matches for "store_mfn".

2007 Feb 26
2
[PATCH 0 of 2] Parse image elfnotes, write them to xenstore, save and load via image sxpr
Here are two patches that let xm create, save and restore extract and preserve elfnotes read by the domain builder. This is handy for a few things. In particular, I''d like it so that xm can decide whether or not guest domains support fast resume (if save fails, or for checkpointing). _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com
2005 Aug 08
4
[PATCH] Fix TypeError when starting VMX domains
...e, evtchn, path)) TypeError: int argument required --- a/tools/python/xen/xend/XendDomainInfo.py Mon Aug 8 20:22:16 2005 +++ b/tools/python/xen/xend/XendDomainInfo.py Mon Aug 8 15:00:19 2005 @@ -239,7 +239,7 @@ self.channel = None self.store_channel = None - self.store_mfn = None + self.store_mfn = 0 self.controllers = {} _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 May 31
0
[PATCH] Store page and evtchn in start_info_t
...,9 @@ const char *cmdline, unsigned int control_evtchn, unsigned long flags, - unsigned int vcpus); + unsigned int vcpus, + unsigned int store_evtchn, + unsigned long *store_mfn); int xc_plan9_build (int xc_handle, diff -ur xen-unstable/tools/libxc/xc_linux_build.c xen-unstable-working/tools/libxc/xc_linux_build.c --- xen-unstable/tools/libxc/xc_linux_build.c 2005-05-24 13:10:24.000000000 +1000 +++ xen-unstable-working/tools/libxc/xc_linux_build.c 2005-05-31 17:44:08.0...
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...5 >+++ b/tools/libxc/xc_linux_build.c Tue Aug 30 16:14:53 2005 >@@ -335,7 +335,8 @@ > unsigned int control_evtchn, > unsigned long flags, > unsigned int vcpus, >- unsigned int store_evtchn, unsigned long *store_mfn) >+ unsigned int store_evtchn, unsigned long *store_mfn, >+ unsigned int console_evtchn, unsigned long *console_mfn) > { > unsigned long *page_array = NULL; > unsigned long count, i; >@@ -358,6 +359,8 @@ > unsigned long vstartinfo_end; > unsig...
2011 Dec 14
9
[PATCH 0 of 2] Support for VM generation ID save/restore and migrate
This patch series adds support for preservation of the VM generation ID buffer address in xenstore across save/restore and migrate, and also code to increment the value in all cases except for migration. The vast majority of the code is in second patch. The first patch merely changes the xenstore key name used by hvmloader to store the buffer address.
2007 Jan 26
5
HVM restore broken?
I got latest (13601) yesterday evening. This doesn''t seem to work to do Restore (at least of the Windows test-image that I''ve been using for testing previously). The VM restores reasonably OK, but it jumps to an invalid address shortly after restoring, giving a D1 blue-screen error (DRIVER_IRQL_LESS_OR_EQUAL), which turns out to be "page-fault in driver" after I
2008 Feb 14
5
On an eight cpu system domU ''cap'' can only be set to 100
...(backend 0) (dev sda1:disk) (uname phy:server/dev-services-root) (mode w) ) ) (state -b----) (shutdown_reason poweroff) (cpu_time 5.184650252) (online_vcpus 1) (up_time 1186.54874301) (start_time 1202999946.85) (store_mfn 628537) (console_mfn 628536) ) _______________________________________________________________________ Jetzt neu! Schützen Sie Ihren PC mit McAfee und WEB.DE. 30 Tage kostenlos testen. http://www.pc-sicherheit.web.de/startseite/?mc=022220 _______________________________________________ Xen-us...
2007 Jan 11
0
[PATCH 6/8] HVM save restore: guest memory handling
...unsigned long shared_page_nr; + + unsigned long mfn, pfn; + unsigned int prev_pc, this_pc; + int verify = 0; + + /* Types of the pfns in the current region */ + unsigned long region_pfn_type[MAX_BATCH_SIZE]; + + /* hvm guest mem size (Mb) */ + memsize = (unsigned long long)*store_mfn; + v_end = memsize << 20; + + DPRINTF("xc_hvm_restore:dom=%d, nr_pfns=0x%lx, store_evtchn=%d, *store_mfn=%ld, console_evtchn=%d, *console_mfn=%ld, pae=%u, apic=%u.\n", + dom, nr_pfns, store_evtchn, *store_mfn, console_evtchn, *console_mfn, pae, apic); + + max_pf...
2011 Dec 14
18
[PATCH 0 of 3] Support for VM generation ID save/restore and migrate
This patch series adds support for preservation of the VM generation ID buffer address in xenstore across save/restore and migrate, and also code to increment the value in all cases except for migration. The first patch modifies creation of the hvmloader key in xenstore and adds creation of a new read/write hvmloader/generation-id-addr key. The second patch changes hvmloader to use the new key (as
2008 Aug 26
0
[PATCH] xen: wrap load_cr3() in manage.c for ia64 support.
...index 2a234db..ac139a2 100644 --- a/arch/x86/xen/suspend.c +++ b/arch/x86/xen/suspend.c @@ -10,6 +10,11 @@ #include "xen-ops.h" #include "mmu.h" +void xen_pre_device_suspend(void) +{ + load_cr3(swapper_pg_dir); +} + void xen_pre_suspend(void) { xen_start_info->store_mfn = mfn_to_pfn(xen_start_info->store_mfn); diff --git a/drivers/xen/manage.c b/drivers/xen/manage.c index a5bc91a..c7f2953 100644 --- a/drivers/xen/manage.c +++ b/drivers/xen/manage.c @@ -39,8 +39,7 @@ static int xen_suspend(void *data) BUG_ON(!irqs_disabled()); - load_cr3(swapper_pg_dir); -...
2011 Dec 16
13
[PATCH 0 of 4] Support for VM generation ID save/restore and migrate
This patch series adds support for preservation of the VM generation ID buffer address in xenstore across save/restore and migrate, and also code to increment the value in all cases except for migration. Patch 1 modifies the guest ro and rw node creation to an open coding style and cleans up some extraneous node creation. Patch 2 modifies creation of the hvmloader key in xenstore and adds
2006 May 31
0
Bug#368417: xen-hypervisor-3.0-i386: cannot start NetBSD-HEAD
...img'], ['mode', 'w']]], ['state', '----c-'], ['shutdown_reason', 'crash'], ['cpu_time', 0.19995147399999999], ['online_vcpus', 1], ['up_time', '2.05223917961'], ['start_time', '1147406085.46'], ['store_mfn', 1001578], ['console_mfn', 1001577]]) [2006-05-11 23:54:47 xend.XendDomainInfo] DEBUG (XendDomainInfo:284) parseConfig: config is ['domain', ['domid', 4], ['uuid', '4a3c1cf7-f131-283a-42fd-626773934961'], ['ssidref', 0], ['vcpus', 1], [...
2006 May 31
0
[pakrat@private.neotoma.org: xen-hypervisor-3.0-i386: cannot start NetBSD-HEAD]
...img'], ['mode', 'w']]], ['state', '----c-'], ['shutdown_reason', 'crash'], ['cpu_time', 0.19995147399999999], ['online_vcpus', 1], ['up_time', '2.05223917961'], ['start_time', '1147406085.46'], ['store_mfn', 1001578], ['console_mfn', 1001577]]) [2006-05-11 23:54:47 xend.XendDomainInfo] DEBUG (XendDomainInfo:284) parseConfig: config is ['domain', ['domid', 4], ['uuid', '4a3c1cf7-f131-283a-42fd-626773934961'], ['ssidref', 0], ['vcpus', 1], [...
2006 Mar 30
2
Problem with reboot of domU''s
...[''shutdown_reason'', ''reboot''], [''cpu_time'', 6 3.367343194], [''online_vcpus'', 1], [''up_time'', ''78572.956449''], [''start_time'', ''1143640525.92''], [''store_mfn'', 24172], [''con sole_mfn'', 24171]]) [2006-03-30 13:44:58 xend.XendDomainInfo] DEBUG (XendDomainInfo:282) parseConfig: config is [''domain'', [''domid'', 5], [''uuid'' , ''1d7f1bb2-eaa8-f7ff-bc2a-92097a3ac24e'...
2011 Nov 29
18
[PATCH 0 of 6] Add support for a VM generation ID virtual device (v2)
The following is a revised patch series to add support for a VM generation ID virtual device for HVM guests. The basic requirements of this device are as follows: - It must be exposed somewhere in ACPI namespace with a _CID of "VM_Gen_Counter". - It must also include a _DDN of "VM_Gen_Counter". - It must contain a _HID object but no particular value is required. - It must
2008 Apr 12
0
Problems with xm migrate --live
...#39;poweroff''], [''cpu_time'', ''1.213463491''], [''online_vcpus'', ''1''], [''up_time'', ''-81398.7237072''], [''start_time'', ''1208048492.91''], [''store_mfn'', ''1618905''], [''console_mfn'', ''1618606'']])[2008-04-12 21:20:58 xend.XendDomainInfo 9579] DEBUG (XendDomainInfo:306) parseConfig: config is [''domain'', [''domid'', ''5''], [''...
2007 Sep 27
0
Migration failing (xen 3.0.3 on RHEL 5) with "not a valid guest state file: pfn count read"
...39;'poweroff''], [''cpu_time'', ''30.657009805''], [''online_vcpus'', ''1''], [''up_time'', ''103.057826042''], [''start_time'', ''1190888774.28''], [''store_mfn'', ''134135'']]) [2007-09-27 09:32:01 xend.XendDomainInfo 27175] DEBUG (XendDomainInfo:296) parseConfig: config is [''domain'', [''domid'', ''11''], [''uuid'', ''b9527e38-a857-aa8f-3e81-97c2e92c8ef5'...
2006 Mar 19
14
Detecting deadlocks with hypervisor..
Hello, I am trying to see if the hypervisor can be used to detect deadlocks in the guest VMs. My goal is to detect if a guest OS is deadlocked, and if it is, then create a clone of the deadlocked OS without the locking condition, and letting the clone run. While the clone runs I am hoping to generate some hints that could tell me what caused the deadlock. I simulated a deadlock/hang
2012 Jan 05
1
[PATCH] add feature flag to xenstore for XS_RESET_WATCHES
...acd tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -1770,6 +1770,7 @@ class XendDomainInfo: f(''store/port'', self.store_port) f(''store/ring-ref'', self.store_mfn) + f(''control/platform-feature-xs_reset_watches'', True) if arch.type == "x86": f(''control/platform-feature-multiprocessor-suspend'', True)
2005 Nov 19
1
vif interface creation problem with xen unstable
...39;') (vcpus 1) ( vcpus 1) (boot c))) (device (vbd (uname phy:/dev/space/xen-0-16-swap-0) (dev hda) (mode w))) (device (vbd (uname phy:/dev/space/xen-0-16-tmp) (dev hdb) (mode w))) (device (vif)) (state \''??????\'') (vcpus 1) (up_time 1.18859601021) (start_time 1132385531.19) (store_mfn 898242) (cons ole_mfn 898241))", 708, 0) = 708 ... === The vif device looks wrong. Here''s the changeset I am using: Latest ChangeSet: Wed Nov 16 19:33:23 2005 +0100 7854:3f39f030fa89 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.c...