search for: kwd_list

Displaying 5 results from an estimated 5 matches for "kwd_list".

Did you mean: kw_list
2006 Aug 30
3
arch-specific xc.c code?
...Object *pyxc_domain_memory_incr return zero; } +static PyObject *pyxc_alloc_real_mode_area(XcObject *self, + PyObject *args, + PyObject *kwds) +{ + uint32_t dom; + unsigned int log; + + static char *kwd_list[] = { "dom", "log", NULL }; + + if ( !PyArg_ParseTupleAndKeywords(args, kwds, "ii", kwd_list, + &dom, &log) ) + return NULL; + + if ( xc_alloc_real_mode_area(self->xc_handle, dom, log) ) + return PyEr...
2005 Oct 10
13
[PATCH] 0/2 VCPU creation and allocation
I''ve put together two patches. The first introduces a new dom0_op, set_max_vcpus, which with an associated variable and a check in the VCPUOP handler fixes [1]bug 288. Also included is a new VCPUOP, VCPUOP_create, which handles all of the vcpu creation tasks and leaves initialization and unpausing to VCPUOP_initialize. The separation allows for build-time allocation of vcpus which
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 May 31
0
[PATCH] Store page and evtchn in start_info_t
...2005-05-31 17:40:12.000000000 +1000 @@ -261,7 +261,8 @@ u32 dom; char *image, *ramdisk = NULL, *cmdline = ""; - int control_evtchn, flags = 0, vcpus = 1; + int control_evtchn, store_evtchn = 0, flags = 0, vcpus = 1; + unsigned long store_mfn; static char *kwd_list[] = { "dom", "control_evtchn", "image", "ramdisk", "cmdline", "flags", "vcpus", @@ -272,8 +273,10 @@ &image, &ramdisk, &cmdline, &flags, &am...
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...char *image, *ramdisk = NULL, *cmdline = ""; > int flags = 0, vcpus = 1; >- int control_evtchn, store_evtchn; >+ int control_evtchn, store_evtchn, console_evtchn; > unsigned long store_mfn = 0; >+ unsigned long console_mfn = 0; > > static char *kwd_list[] = { "dom", "control_evtchn", "store_evtchn", >- "image", "ramdisk", "cmdline", "flags", >+ "console_evtchn", "image", >+ /* optiona...