Displaying 20 results from an estimated 2000 matches similar to: "set resources without xm and libvirt"
2005 Oct 17
2
libxenstat python bindings
Hi
I seem to be having a little trouble with libxenstat, and was wondering
if the xenstat guys might be able to help.
I''ve pulled the xen-unstable.hg tree and done a somewhat clean install
(ie, post-make uninstall, as well as deleting the relevant libxenstat
libraries).
Next, I entered the tools/xenstat/libxenstat directory and modified the
Makefile so that the shared libraries would
2012 Jan 09
1
[PATCH] xenstat: Correct copy of network device name
When xenstat library parse /proc/net/dev, it uses strpbrk function to get pointer
to device name. However, it miss capital letters in the array of valid characters
so it get incorrect name in case device name starts with capital letters or even
segfault if it contains only capital letters.
This patch adds missing characters to strpbrk call.
Signed-off-by: Miroslav Rezanina
2006 Jul 31
1
[PATCH 5/6] xen, tools: calculate nr_cpus via num_online_cpus
Once Xen calculates nr_nodes properly, all nr_cpu calculations based on
nr_nodes * sockets_per_node * cores_per_socket * threads_per_core are
broken. The easy fix is to replace those calculations with a new field,
nr_cpus in physinfo which is calculated by num_online_cpus(). This
patch does so and attempts to change all users over to nr_cpus field in
physinfo. This patch touches
2012 Mar 22
5
Regarding xenstat [test.c:3:24: fatal error: xenstat.h: No such file or directory]
Hi
I am using xen4.0.3 in Opensuse11.4. I need to do the monitoring of VM''s
and on that basis take the migration decision so I am trying to write my
own xentop like program. But I am facing trouble while using xenstat.h in
my C program.
test.c:3:24: fatal error: xenstat.h: No such file or directory
But my xentop is working fine. What to do in this case. How to use
libxenstat library in my
2006 Sep 29
4
[PATCH 4/6] xen: export NUMA topology in physinfo hcall
This patch modifies the physinfo hcall to export NUMA CPU and Memory
topology information. The new physinfo hcall is integrated into libxc
and xend (xm info specifically). Included in this patch is a minor
tweak to xm-test''s xm info testcase. The new fields in xm info are:
nr_nodes : 4
mem_chunks : node0:0x0000000000000000-0x0000000190000000
2008 Nov 27
1
Xguests 1.1.0 released
Hi,
We''re happy to announce the 1.1.0 release of xguests, which uses Xenstat
internals to print guest information in a variety of formats. Most of
the information in ''xm top'' is exported.
Formats include:
* XML 1.0
* PHP Arrays
* BASH arrays
* Perl
* CSV
* Easy to scrape text
* The standard ''xm list'' style format
Sample output of the program
2006 Nov 01
1
iteration option for xentop?
Hello to all,
Does anyone know if there is an iteration option planned for xentop
(similar to top) to make it easier for simple shell scripts to scrape
the output?
I don''t see one in tools/xenstat/xentop/xentop.c , but I''ve been meaning
to play with stuff in libxenstat anyway. If its going to be added soon
I''ll tinker much later than sooner.
TIA :)
Best,
-Tim
2005 Oct 27
2
[PATCH] Enable xenstat to use xenstore & fix bugzilla #311
Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
--
Jerone Young
IBM Linux Technology Center
jyoung5@us.ibm.com
512-838-1157 (T/L: 678-1157)
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2006 Oct 17
0
[PATCH] Fixes for linking on Solaris
# HG changeset patch
# User john.levon@sun.com
# Date 1161090130 25200
# Node ID afeef751f9dafa771726bcfb00b29a10b0baeabd
# Parent 7147e57f18552bbb8d25155cc1c635315283ee31
On Solaris, GCC is configured to use Sun''s LD. Fix the build to use the correct
flags, and link against libsocket where necessary.
Signed-off-by: John Levon <john.levon@sun.com>
diff --git a/config/Linux.mk
2005 Oct 31
0
[PATCH] wild pointer in xenstat.c
There is an error in xenstat, such that a wild pointer is being
dereferenced and written to.
Signed-off-by: Charles Coffing <ccoffing@novell.com>
--- xen-unstable.orig/tools/xenstat/libxenstat/src/xenstat.c
+++ xen-unstable/tools/xenstat/libxenstat/src/xenstat.c
@@ -704,7 +704,7 @@ static char *xenstat_get_domain_name(xen
{
char path[80];
char *name;
- unsigned int
2010 May 19
0
[PATCH] xentop: fix sigsegv
On my system, I''m getting SIGSEGVs in xentop because xenstat_node_domain()
is returning NULL. Skip the loop if it does rather than crashing.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
diff -r 9dda78d7af3b -r 5895ad758076 tools/xenstat/libxenstat/src/xenstat_linux.c
--- a/tools/xenstat/libxenstat/src/xenstat_linux.c Tue May 18 15:38:36 2010 -0700
+++
2006 Oct 17
4
[PATCH] Fix tools build on Solaris
# HG changeset patch
# User john.levon@sun.com
# Date 1161090606 25200
# Node ID c6bfe43048f3becda6966deceb7b70baea833b7c
# Parent 03d4223c846b14fc415cfd05d970c7b4d688fddb
Many of the tools use C99 features such as bool, or expect certain functions.
Fix the CFLAGS to enable these on Solaris.
Signed-off-by: John Levon <john.levon@sun.com>
diff --git a/config/SunOS.mk b/config/SunOS.mk
---
2007 Oct 19
4
[PATCH] nr_cpus calculation problem due to incorrect sockets_per_node
Testing on an 8-node 128-way NUMA machine has exposed a problem with
Xen''s nr_cpus calculation. In this case, since Xen cuts off recognized
CPUs at 32, the machine appears to have 16 CPUs on the first and second
nodes and none on the remaining nodes. Given this asymmetry, the
calculation of sockets_per_node (which is later used to calculate
nr_cpus) is incorrect:
2009 Jul 06
8
[PATCH] Fix xentop on pv-ops domain0
Xentop encounters error in pv-ops domain0, because the VBD path in sysfs changes to "/sys/devices"
Also delete the macro in xenstat_netbsd.c, because it is not used.
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Best Regards,
-- Dongxiao
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
2008 Jan 24
5
Can''t boot from ISO image...
Hi,
I''ve been trying to boot from a RHEL4 install iso without much luck
(the xen way).
The Host is:
RHEL 5.1
xen-3.0.3-41.el5
Here is my guest config:
# -*- mode: python; -*-
#============================================================================
# Python configuration setup for ''xm create''.
# This script sets the parameters used when a domain is created using
2013 Jul 12
16
preparing for 4.2.3 and 4.1.6
Aiming at a release some time in August, I''d like to cut RC1-s by
Thursday next week (as I''ll be on a two week vacation starting
Friday).
Please indicate any bug fixes that so far may have been missed
in the backports already done. A few fixes are currently stuck in
master''s staging branch (or pending to make it there) - these
don''t need to be named explicitly,
2013 Oct 01
1
Bug#725082: libxen-dev: missing libraries
Package: libxen-dev
Version: 4.1.4-3+deb7u1
Severity: wishlist
Dear Maintainer,
I want to make some fine monitoring of my xen machines and the xentop utility does not exactly fits my needs
I saw in the sources that it uses some kind of library named libxenstat wich seems very acurate.
This library is already built to make the xentop utility but the debian package does not makes it available as
2007 Apr 18
2
Libxenstat to be considered as stable?
Hello All,
As I''m going to write some kind of a monitoring sensor, which will use the
same information "xentop" currently provides, I would like to know if
libxenstat can be considered as stable? Will libxenstat be supported in
future versions of Xen?
Or is it rather advisable to get this information from the Xen Management
API, which maybe provide the same data?
The sensor
2008 May 19
7
Simple Query on PCI passthrough I/O
Hi,
I want to perform pass through I/O from my domU. I guess I would need an
additional network card for the same.
Is there any preference on the second network card I should get or any one
is fine? I have a x86_64 machine
with Cent OS 4.4 running. Are there any additional considerations that I
cannot see - Kindly let me know.
Thanks,
Asim
_______________________________________________
2008 Mar 31
2
Xen and Fedora 7
I recently installed Fedora 7, Xen with Windows Vista in a VM using the
Virtual Machine Manager tool. Everything has worked great but now I can not
get the VM to start during Linux boot. I made sure xend and xendomain are
started using chkconfig.
Everything I have read talked about placing a .hvm file in the /etc/xen/auto
directory. The Virtual Machine Manager tool did not create a .hvm file