search for: num_disk

Displaying 16 results from an estimated 16 matches for "num_disk".

Did you mean: num_disks
2009 Jul 05
2
[PATCH node-image] Fix create-ovirt-iso-nodes to allow manual specification of network bridge to use
...:$last_mac \ --vnc --accelerate --hvm --noautoconsole \ --os-type=linux --os-variant=$os_variant \ --force --noreboot @@ -78,8 +78,9 @@ usage() { case $# in 1) warn "$1"; try_h; exit 1;; esac cat <<EOF Usage: $ME [-d image_dir] [-n node.iso] [-c num_disks] [-s start-stop] - [-v vcpus] [-r ram] [-x] + [-v vcpus] [-r ram] [-x] [-b network] -n: node.iso to boot (default: $NODEIMG_DEFAULT) + -b: network name (default: $NET_DEFAULT) -d: directory to place virtual disk (default: $IMGDIR_DEFAULT) -c: number of disks per fake...
2012 Apr 04
10
[PATCH 0 of 2] libxl: add libxl_domain_config_init
The following series implements libxl_domain_config_init as per the libxl API requirement that each type has an init function. The first function does this in an open coded manner and is proposed for Xen 4.2. The second function is RFC only since it moves the definition of this type into the IDL and makes the required infrastructure updates to enable this. I think this is more 4.3 material at
2007 Feb 07
2
Problems Generating Scaffolding
...(name, version) ) WITHOUT OIDS; CREATE TABLE licensed ( name character varying(30) NOT NULL, version character varying(10) NOT NULL, publisher character varying(15) NOT NULL, serial character varying(25) NOT NULL, lm boolean NOT NULL, license_file text, licenses integer NOT NULL, num_disks smallint NOT NULL DEFAULT 1, CONSTRAINT licensed_pkey PRIMARY KEY (name, version, publisher) ) WITHOUT OIDS; I have no trouble with the scaffolding for sites, computers, and technicians but it throws up on the others. Please forgive me if this is obvious. This is my first time trying to use r...
2012 Feb 09
7
[PATCH V2 0/3] Set VNC password to QEMU upstream
Anthony PERARD (3): libxl_qmp: Use GC instead of CTX as parameter for _initialize. Provide dm_vnc() as a in libxl helper. libxl: Set VNC password through QMP tools/libxl/libxl_create.c | 2 +- tools/libxl/libxl_dm.c | 32 ++++++++++++++---------- tools/libxl/libxl_internal.h | 7 ++++- tools/libxl/libxl_qmp.c | 55 ++++++++++++++++++++++++++++++----------- 4 files
2012 Sep 21
8
PATCH [base vtpm and libxl patches 4/6] add iomem support to libxl
...omem[i].number) != 2) { + fprintf(stderr, + "xl: Invalid argument parsing iomem: %s\n", buf); + exit(1); + } + } + } + + + if (!xlu_cfg_get_list (config, "disk", &vbds, 0, 0)) { d_config->num_disks = 0; d_config->disks = NULL; _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
2007 Feb 07
5
Problems Generating Scaffolding
...MARY KEY (name, version) ) WITHOUT OIDS; CREATE TABLE licensed ( name character varying(30) NOT NULL, version character varying(10) NOT NULL, publisher character varying(15) NOT NULL, serial character varying(25) NOT NULL, lm boolean NOT NULL, license_file text, licenses integer NOT NULL, num_disks smallint NOT NULL DEFAULT 1, CONSTRAINT licensed_pkey PRIMARY KEY (name, version, publisher) ) WITHOUT OIDS; I have no trouble with the scaffolding for sites, computers, and technicians but it throws up on the others. Please forgive me if this is obvious. This is my first time trying to use ra...
2009 Oct 14
4
Refactor ovirt-node-image code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Removed ks files, now in ovirt-node-recipe, which is subpackage of ovirt-node. Removed tools, these are now in ovirt-node-recipe which is subpackage of ovirt-node.
2012 Aug 31
2
[PATCH V2] libxl/xl: implement support for guest iooprt and irq permissions
...if (ul > UINT32_MAX) { + fprintf(stderr, "xl: irq %lx too big\n", ul); + exit(1); + } + b_info->irqs[i] = ul; + } + } + if (!xlu_cfg_get_list (config, "disk", &vbds, 0, 0)) { d_config->num_disks = 0; d_config->disks = NULL;
2009 Nov 18
6
[PATCH 1/3] libxenlight: Clean up logging arrangements
* Introduce new variants of the logging functions which include errno values (converted using strerror) in the messages passed to the application''s logging callback. * Use the new errno-including logging functions everywhere where appropriate. In general, xc_... functions return errno values or 0; xs_... functions return 0 or -1 (or some such) setting errno. * When
2012 Sep 27
18
[PATCH 09/11] add iomem support to libxl
...omem[i].number) != 2) { + fprintf(stderr, + "xl: Invalid argument parsing iomem: %s\n", buf); + exit(1); + } + } + } + + + if (!xlu_cfg_get_list (config, "disk", &vbds, 0, 0)) { d_config->num_disks = 0; d_config->disks = NULL; -- 1.7.9.5
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe. Removes old sub packages form ovirt-node, stateless, logos, selinux. Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221 Added License file.
2013 Jan 10
10
[PATCH v2 1/2] xenconsoled: use grant references instead of map_foreign_range
Grant references for the xenstore and xenconsole shared pages exist, but currently only xenstore uses these references. Change the xenconsole daemon to prefer using the grant reference over map_foreign_range when mapping the shared console ring. This allows xenconsoled to be run in a domain other than dom0 if set up correctly - for libxl, the xenstore path /tool/xenconsoled/domid specifies the
2012 May 17
8
[PATCH] libxl: do not overwrite user supplied config when running bootloader
...fo->u.pv.ramdisk); + libxl__file_reference_unmap(&state->pv_kernel); + libxl__file_reference_unmap(&state->pv_ramdisk); } esave = errno; @@ -625,16 +627,21 @@ static void initiate_domain_create(libxl libxl_device_disk *bootdisk = d_config->num_disks > 0 ? &d_config->disks[0] : NULL; - if (restore_fd < 0 && bootdisk) { + if (restore_fd >= 0) { + LOG(DEBUG, "restoring, not running bootloader\n"); + domcreate_bootloader_done(egc, &dcs->bl, 0); + } else { + LOG(DEBUG, &quot...
2010 Aug 12
0
[PATCH, v2]: xl: Implement per-API-call garbage-collection lifetime
...4,6 +729,7 @@ int libxl_domain_shutdown(libxl_ctx *ctx } } } + libxl_free_all(&gc); return 0; } @@ -705,7 +751,8 @@ int libxl_wait_for_domain_death(libxl_ct int libxl_wait_for_disk_ejects(libxl_ctx *ctx, uint32_t guest_domid, libxl_device_disk *disks, int num_disks, libxl_waiter *waiter) { - int i; + libxl_gc gc = LIBXL_INIT_GC(ctx); + int i, rc = -1; uint32_t domid = libxl_get_stubdom_id(ctx, guest_domid); if (!domid) @@ -713,14 +760,17 @@ int libxl_wait_for_disk_ejects(libxl_ctx for (i = 0; i < num_disks; i++) { if...
2011 Jun 02
48
[PATCH 0/9] libxl: disk configuration handling
This is v3 of my disk series. What were previously patches 01-06 have been applied. These are the tested and updated remainder, addressing the previous comments. 1 Preparatory work. 2-4 The new parser and its documentation. 5-6 Replace old parsers with calls to the new one. 7-8 Two features, one of them essential. 9 Basic test suite for disk string parsing, as adhoc script.
2010 Aug 18
16
[PATCH 00 of 16] libxl: autogenerate type definitions and destructor functions
The series introduces auto-generation of the type definitions used in the libxl interface followed by auto-generation of a destructor function for each type. In the future it may be possible to use the related data structures for other purposes, for example auto-generation of the functions to marshal between C and language binding data types. tools/_libxl_types.h should be identical both before