search for: store_evtchn

Displaying 20 results from an estimated 136 matches for "store_evtchn".

2005 May 31
0
[PATCH] Store page and evtchn in start_info_t
...005-05-31 17:36:49.000000000 +1000 @@ -252,7 +252,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/tool...
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...ild.c Tue Aug 30 08:47:51 2005 >+++ 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 vsta...
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 Oct 12
1
[PATCH] Restore, comment, correct memory barriers in xenstored.
.../ + mb(); + memcpy(dst, data, avail); data += avail; len -= avail; + + /* Other side must not see new header until data is there. */ + wmb(); update_output_chunk(out, avail); + + /* This implies mb() before other side sees interrupt. */ notify_remote_via_evtchn(xen_start_info->store_evtchn); } while (len != 0); @@ -171,7 +181,6 @@ wait_event_interruptible(xb_waitq, xs_input_avail()); - mb(); h = *in; if (!check_buffer(&h)) return -EIO; @@ -183,13 +192,21 @@ avail = len; was_full = !output_avail(&h); + /* We must read header before we read data....
2007 Feb 27
3
freebsd domu 14, bad address
...vcpus=1 [2007-02-27 12:46:59 xend 9551] DEBUG (image:194) domid = 21 [2007-02-27 12:46:59 xend 9551] DEBUG (image:195) memsize = 512 [2007-02-27 12:46:59 xend 9551] DEBUG (image:196) image = /xenvm/fbsd/freebsd-XENU_INSTALL [2007-02-27 12:46:59 xend 9551] DEBUG (image:197) store_evtchn = 1 [2007-02-27 12:46:59 xend 9551] DEBUG (image:198) console_evtchn = 2 [2007-02-27 12:46:59 xend 9551] DEBUG (image:199) cmdline = boot_verbose,boot_single,vfs.root.mountfrom=ufs:/dev/md0,kern.hz=100 [2007-02-27 12:46:59 xend 9551] DEBUG (image:200) ramdisk = [2007-02-27 12:46:59...
2006 May 31
0
Bug#368417: xen-hypervisor-3.0-i386: cannot start NetBSD-HEAD
...129; done. [2006-05-11 23:39:31 xend] INFO (image:135) buildDomain os=linux dom=1 vcpus=1 [2006-05-11 23:39:31 xend] DEBUG (image:173) dom = 1 [2006-05-11 23:39:31 xend] DEBUG (image:174) image = /boot/vmlinuz-2.6.16-1-xen-vserver-686 [2006-05-11 23:39:31 xend] DEBUG (image:175) store_evtchn = 1 [2006-05-11 23:39:31 xend] DEBUG (image:176) console_evtchn = 2 [2006-05-11 23:39:31 xend] DEBUG (image:177) cmdline = ip=:1.2.3.4:::10-1-1-138:eth0:on root=/dev/hda1 3 [2006-05-11 23:39:31 xend] DEBUG (image:178) ramdisk = [2006-05-11 23:39:31 xend] DEBUG (image:179) vcpus...
2006 May 31
0
[pakrat@private.neotoma.org: xen-hypervisor-3.0-i386: cannot start NetBSD-HEAD]
...129; done. [2006-05-11 23:39:31 xend] INFO (image:135) buildDomain os=linux dom=1 vcpus=1 [2006-05-11 23:39:31 xend] DEBUG (image:173) dom = 1 [2006-05-11 23:39:31 xend] DEBUG (image:174) image = /boot/vmlinuz-2.6.16-1-xen-vserver-686 [2006-05-11 23:39:31 xend] DEBUG (image:175) store_evtchn = 1 [2006-05-11 23:39:31 xend] DEBUG (image:176) console_evtchn = 2 [2006-05-11 23:39:31 xend] DEBUG (image:177) cmdline = ip=:1.2.3.4:::10-1-1-138:eth0:on root=/dev/hda1 3 [2006-05-11 23:39:31 xend] DEBUG (image:178) ramdisk = [2006-05-11 23:39:31 xend] DEBUG (image:179) vcpus...
2005 Jun 16
9
Re: dom0 bootstrap for xenstore
...ore/linux-2.6.11-xen-sparse/drivers/xen/privcmd/privcmd.c 2005-06-16 15:12:49.000000000 +1000 @@ -196,6 +196,34 @@ static int privcmd_ioctl(struct inode *i } break; + case IOCTL_PRIVCMD_INITDOMAIN_STORE: + { + extern int do_xenbus_probe(void*); + + if (xen_start_info.store_evtchn != 0) { + ret = -EINVAL; + break; + } + + /* Allocate page. */ + xen_start_info.store_page = get_zeroed_page(GFP_KERNEL); + if (!xen_start_info.store_page) { + ret = -ENOMEM; + break; + } + + /* Initial connect. Setup channel and page. */ + xen_start_info.store_evtchn = data; + ret...
2013 May 16
7
[PATCH V4 0/2] xenbus: Fix S3 frontend resume when xenstored is not running
Hi, This patch series fixes the S3 resume of a domain running xenstored and a frontend over xenbus (xen-netfront in my use case). As device resume is happening before process resume, the xenbus frontend resume is hanging if xenstored is not running, thus causing a deadlock. This patch series is fixing that issue by deferring the xenbus frontend resume when we are running xenstored in that same
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
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.
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
2009 Jan 19
2
Error on xm create: VmError: (38, ''Function not implemented'')
...66) buildDomain os=linux dom=13 vcpus=1 [2009-01-19 17:17:41 21486] DEBUG (image:631) domid = 13 [2009-01-19 17:17:41 21486] DEBUG (image:632) memsize = 256 [2009-01-19 17:17:41 21486] DEBUG (image:633) image = /boot/vmlinuz-xen [2009-01-19 17:17:41 21486] DEBUG (image:634) store_evtchn = 1 [2009-01-19 17:17:41 21486] DEBUG (image:635) console_evtchn = 2 [2009-01-19 17:17:41 21486] DEBUG (image:636) cmdline = root=/dev/xvda1 console=xvc0 [2009-01-19 17:17:41 21486] DEBUG (image:637) ramdisk = /boot/initrd-xen [2009-01-19 17:17:41 21486] DEBUG (image:638) vcpus...
2005 Nov 12
0
NFS root on problem on Xen Debian
...7mig memory=31744 [2005-11-11 23:53:02 xend] INFO (image:130) buildDomain os=linux dom=1033 vcpus=1 [2005-11-11 23:53:02 xend] DEBUG (image:175) dom = 1033 [2005-11-11 23:53:02 xend] DEBUG (image:176) image = /boot/vmlinuz-2.6.12-xenU [2005-11-11 23:53:02 xend] DEBUG (image:177) store_evtchn = 1 [2005-11-11 23:53:02 xend] DEBUG (image:178) console_evtchn = 2 [2005-11-11 23:53:02 xend] DEBUG (image:179) cmdline = ip=10.5.144.38:10.5.144.29:10.5.144.1:255.255.240.0::eth0:off root=/dev/nfs nfsroot=10.5.144.29:/myfs1/foo 4 [2005-11-11 23:53:02 xend] DEBUG (image:180) ramdisk...
2009 Mar 19
2
New DomU on older Dom0
...9] INFO (image:136) buildDomain os=linux > dom=18 vcpus=1 > [2009-03-19 16:53:48 xend 9949] DEBUG (image:191) dom = 18 > [2009-03-19 16:53:48 xend 9949] DEBUG (image:192) image = > /var/lib/xen/tmp/vmlinuz.31cMnu > [2009-03-19 16:53:48 xend 9949] DEBUG (image:193) store_evtchn = 1 > [2009-03-19 16:53:48 xend 9949] DEBUG (image:194) console_evtchn = 2 > [2009-03-19 16:53:48 xend 9949] DEBUG (image:195) cmdline = > root=/dev/xvda1 xencons=tty clock=jiffies mem=4096m 3 > [2009-03-19 16:53:48 xend 9949] DEBUG (image:196) ramdisk = > /var/lib/x...
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 Jul 26
0
Bug in xen-utils-unstable
...-amd64' ... [xend.log] [2008-07-26 11:17:23 2890] DEBUG (image:633) domid = 13 [2008-07-26 11:17:23 2890] DEBUG (image:634) memsize = 2048 [2008-07-26 11:17:23 2890] DEBUG (image:635) image = /boot/vmlinuz-2.6.18-6-xen-amd64 [2008-07-26 11:17:23 2890] DEBUG (image:636) store_evtchn = 1 [2008-07-26 11:17:23 2890] DEBUG (image:637) console_evtchn = 2 [2008-07-26 11:17:23 2890] DEBUG (image:638) cmdline = root=/dev/ram0 ip=:127.0.255.255::::eth0:dhcp [2008-07-26 11:17:23 2890] DEBUG (image:639) ramdisk = /boot/vmlinuz-2.6.18-6-xen-amd64 ? weird ? [2...
2010 Jun 07
1
111b virt-install failure
...ildDomain os=linux dom=7 vcpus=1 [2010-06-07 23:15:57 365] DEBUG (image:204) domid          = 7 [2010-06-07 23:15:57 365] DEBUG (image:205) memsize        = 8192 [2010-06-07 23:15:57 365] DEBUG (image:206) image          = /var/tmp/virtinst-vmlinuz.l0PCWc [2010-06-07 23:15:57 365] DEBUG (image:207) store_evtchn   = 1 [2010-06-07 23:15:57 365] DEBUG (image:208) console_evtchn = 2 [2010-06-07 23:15:57 365] DEBUG (image:209) cmdline        =  method=ftp://192.168.101.120/pub/CentOS-48 [2010-06-07 23:15:57 365] DEBUG (image:210) ramdisk        = /var/tmp/virtinst-initrd.img.YPkxEy [2010-06-07 23:15:57 365] DE...
2007 Jan 11
0
[PATCH 6/8] HVM save restore: guest memory handling
...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_pfn = nr_pfns; + + if(!get_platform_info(xc_handle, dom, + &max_mfn, &hvi...
2006 Aug 08
11
architecture-specific stuff in xend
Hi Ewan, I''m almost ready to integrate some PPC-specific stuff into xend, and I was wondering if you had a plan for how that should work. First example: the device tree data structure we talked about a few weeks ago. We will need to pass the config data to PPC code, probably in XendDomainInfo.initDomain(), and then pass the resulting data structure into libxc''s xc_linux_load()