Displaying 12 results from an estimated 12 matches for "vfbs".
Did you mean:
vfb
2013 Oct 31
7
How do I get rid of vfb?
Hi all,
I’m running Xen 4.1 on a couple of NetBSD dom0s and NetBSD’s pkgsrc provides both the xl and xm tools for working with Xen 4.1. I understand that xl is the new way of doing things, but I can’t get it to create my guests the way I want and the main symptom of this is that the text console isn’t available.
When I create a guest with xl it starts up qemu-dm (which xm doesn’t do) and I get
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
2011 Jan 11
0
[PATCH, v2]: xl: move domain struct init functions to libxl
...init_net2_info(net2, d_config->num_vif2s);
+ libxl_device_net2_init(net2, d_config->num_vif2s);
for (p = strtok(buf2, ","); p; p = strtok(NULL, ",")) {
char* val;
@@ -1033,11 +887,11 @@ skip:
d_config->vfbs = (libxl_device_vfb *) realloc(d_config->vfbs, sizeof(libxl_device_vfb) * (d_config->num_vfbs + 1));
vfb = d_config->vfbs + d_config->num_vfbs;
- init_vfb_info(vfb, d_config->num_vfbs);
+ libxl_device_vfb_init(vfb, d_config->num_vfbs);...
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
2008 Mar 18
0
[PATCH] vfb: Add opengl option
...''xauthority'', ''type'', ''vncpasswd'' ]:
+ ''xauthority'', ''type'', ''vncpasswd'', ''opengl'' ]:
err("configuration option %s unknown to vfbs" % k)
config.append([k,v])
if not d.has_key("keymap"):
--- a/tools/python/xen/xm/xenapi_create.py Tue Mar 18 14:36:27 2008 +0000
+++ b/tools/python/xen/xm/xenapi_create.py Tue Mar 18 15:16:47 2008 +0000
@@ -810,7 +810,7 @@
get_child_by_name(imag...
2012 Nov 20
0
[PATCH 15 of 15] libxl: ocaml: add bindings for libxl_domain_create_new
...hadow_memkb = 0L;
+ Xenlight.Domain_build_info.rtc_timeoffset = 0L;
+ } in
+ let d_info = {
+ Xenlight.Domain_config.b_info = b_info;
+ Xenlight.Domain_config.c_info = c_info;
+ Xenlight.Domain_config.disks = [| |];
+ Xenlight.Domain_config.nics = [| |];
+ Xenlight.Domain_config.vfbs = [| |];
+ Xenlight.Domain_config.vkbs = [| |];
+ Xenlight.Domain_config.pcidevs = [| |];
+ (*Xenlight.Domain_config.on_poweroff = Xenlight.Action_on_shutdown.dESTROY;*)
+ } in
+ try
+ Xenlight.domain_create_new ctx d_info;
+ Xenlight.ctx_free ctx;
+ Xentoollog.destroy logger;
+...
2010 May 15
9
Installing CentOS as DomU on Debian Lenny (dom0) Xen
Hi,
I have searched the question which I am asking.But if some one has
mentioned on their blog or link some where they have mentioned as how
they
installed CentOS as DomU on Debian Lenny (dom0)running xen-3.2.1 and I
should have a look
Then please share it here.
--
Tapas
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
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 20
2
Remus network buffering problem
...ot;00:16:3e:c4:65:79","ip":"192.168.2.201","bridge":"xenbr0","ifname":null,"script":"vif-bridge","nictype":null,"rate_bytes_per_interval":0,"rate_interval_usecs":0}],"pcidevs":[],"vfbs":[],"vkbs":[],"on_poweroff":"destroy","on_reboot":"restart","on_watchdog":"destroy","on_crash":"restart"}}
└─(vaerivatnet@xena)─ sudo xl
info
─(00:49)
host : xena
release...
2012 Dec 12
43
[PATCH 00/37] [RFC] revamped modeset locking
Hi all,
First thing first: It works, I now no longer have a few dropped frames every 10s
on my testbox here with the pageflip i-g-t tests.
Random notes:
- New design has per-crtc locks to protect the crtc input-side (pageflip,
cursor) for r/w and the output state of the crtc (mode, dpms) as read-only. It
also required completely revamped fb lifecycle management, those are now
refcounted
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
2012 Sep 27
18
[PATCH 09/11] add iomem support to libxl
...xl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c
index 1627cac..fe8e925 100644
--- a/tools/libxl/xl_cmdimpl.c
+++ b/tools/libxl/xl_cmdimpl.c
@@ -574,8 +574,8 @@ static void parse_config_data(const char *config_source,
long l;
XLU_Config *config;
XLU_ConfigList *cpus, *vbds, *nics, *pcis, *cvfbs, *cpuids;
- XLU_ConfigList *ioports, *irqs;
- int num_ioports, num_irqs;
+ XLU_ConfigList *ioports, *irqs, *iomem;
+ int num_ioports, num_irqs, num_iomem;
int pci_power_mgmt = 0;
int pci_msitranslate = 0;
int pci_permissive = 0;
@@ -1005,6 +1005,30 @@ static void parse_co...