Displaying 20 results from an estimated 553 matches for "sxp".
Did you mean:
smp
2005 Aug 11
0
[PATCH][VT][1/15] Fix config file parsing for VMX domains.
...', ''serial'', ''macaddr'', ''stdvga'', ''isa'' ]
+ ''localtime'', ''serial'', ''stdvga'', ''isa'' ]
ret = []
for a in dmargs:
v = sxp.child_value(self.vm.config, a)
@@ -312,20 +312,25 @@
ret.append("-%s" % a)
ret.append("%s" % v)
- # Handle hd img related options
+ # Handle disk/network related options
devices = sxp.children(self.vm.config, ''device'')
fo...
2012 Jun 09
2
[patch] NFSv4/ZFS ACLs
This is a PoC patch for NFSv4/ZFS ACLs.
The objective of the patch is that rsync --acls support NFSv4/ZFS ACLs
without requiring a new command line option
NFSv4 ACLs can't be represented using POSIX draft ACLs, if an NFSv4 ACL is
present a separate POSIX draft ACL will not be present and there are new
APIs
to access NFSv4 ACLs. So we need to distinguish between NFSv4 ACLs and
POSIX
ACLs in
2010 Aug 10
4
[PATCH] Values of cpu_weight and cpu_cap are lost after xend restart
...# Parent 8992134dcfd0b9e1e86f4111e68a8aa48bd33c3c
Values of cpu_weight and cpu_cap are lost after xend restart
For managed domains in state ''halted'' I always get default values
for cpu_cap / cpu_weight after xend restart.
This is because the names of parameters differ between a SXP file to
create a VM (here the parameter names are cpu_cap / cpu_weight) and
a SXP file of a managed VM (here vcpus_params (cap 0) (weight 0)).
But XendConfig.py reads only cpu_cap / cpu_weight and if not found,
default values are used.
The patch reads first vcpus_params (cap, weight), if not found...
2010 May 08
0
Tool to generate a domu.sxp from a running DomU
Hi,
i had the problem, if i migrate a domU to another Dom0, i have to copy
the sxp file tool (and the same problem in a few other scenarios too).
For an easier solution, i created a tool to generate a domU-sxp-file
from/for a running DomU.
If anyone need it too, it is available here (compiled for amd64):
http://www.xncore.com/download/stuff/xntool-running2sxp.gz
Usage:
xntool-...
2023 May 17
1
[PATCH] Add --omit-{device,special}-times options
...times;
extern int omit_dir_times;
extern int omit_link_times;
+extern int omit_device_times;
+extern int omit_special_times;
extern int delete_mode;
extern int delete_before;
extern int delete_during;
@@ -482,7 +484,12 @@ int unchanged_attrs(const char *fname, struct file_struct *file, stat_x *sxp)
return 0;
#endif
} else {
- if (preserve_mtimes && any_time_differs(sxp, file, fname))
+ int keep_time = !preserve_mtimes ? 0
+ : S_ISDIR(file->mode) ? !omit_dir_times
+ : IS_DEVICE(file->mode) ? !omit_device_times
+ : IS_SPECIAL(file->mode) ? !omit_special...
2008 Mar 02
3
congrats!
Thanks Wayne and everybody,
This is a huge boost to have a modern rsync for OSX. We're all
grateful. Rob D
PS I did notice that we lost the bsd flags test in 3.0. It was ok in
pre10.... thanks again
bbouncer
Verifying: basic-permissions ... ok
Verifying: timestamps ...
Sub-test: modification time ... ok
ok
Verifying: symlinks ... ok
Verifying:
2013 Jul 04
2
[PATCH] [Backport 4.2.x] Fix issue with 'xl list -l' showing domids as -1 when using SXP
During investigation of other issues, it came to light that in at least
4.2.2, "xl list -l" displays domain ids as -1 when using SXP, irrespective
of actual value. Ian C identified that this issue was likely fixed in the
upcoming 4.3 release but the commit responsible for the fix
(a73a7a0c647a9a5e30d8bc473c0a1e8648817183) was not likely a candidate for
backporting in its entirety.
Therefore, this patch is just an isolation of t...
2007 Nov 21
3
Xen 3.1.0 and openSuse 10.3 - xenbr0 won''t dissapear
Hello,
I use xen for a few months now and I upgraded to opensuse 10.3 with xen
3.1 (64bit versions) recently.
Everything works fine, but there is a problem when I change
xend-config.sxp to use my own network script (it''s slightly modified
version of network-virtual scripts from
http://en.opensuse.org/Xen3_yet_another_Virtual_Network_Concept )
instead of default network-bridge script. The problem is, that after
restarting xend (and yes, I tried also a complete reboot o...
2019 Mar 07
1
[PATCH] Bug fix for file comparison
...sted.
Florian
diff --git a/generator.c b/generator.c
index a112da6..2df1b28 100644
--- a/generator.c
+++ b/generator.c
@@ -876,26 +876,22 @@ static int try_dests_reg(struct file_struct *file, char *fname, int ndx,
pathjoin(cmpbuf, MAXPATHLEN, basis_dir[j], fname);
if (link_stat(cmpbuf, &sxp->st, 0) < 0 || !S_ISREG(sxp->st.st_mode))
continue;
- switch (match_level) {
- case 0:
+ if (match_level < 1) {
best_match = j;
match_level = 1;
- /* FALL THROUGH */
- case 1:
- if (!unchanged_file(cmpbuf, file, &sxp->st))
- continue;
+ }
+ if (!unchanged...
2008 Apr 21
1
Bug#477237: xen-utils-common: typo in /etc/xen/xend-config.sxp for xmlrpc configuration
Package: xen-utils-common
Version: 3.2.0-1~bpo4+1
Severity: minor
I use the version from backports, but it's still present in sid.
In /etc/xen/xend-config-sxp :
#(xen-tcp-xmlrpc-server-address 'localhost')
#(xen-tcp-xmlrpc-server-port 8006)
should be
#(xend-tcp-xmlrpc-server-address 'localhost')
#(xend-tcp-xmlrpc-server-port 8006)
Small typo in a commented line, but believe me,
I spent quite some time to find it, including on irc
w...
2006 Aug 10
3
Bug: xend-relocation-hosts-allow in xend-config.sxp
Comparing my last know working configuration with the current one, it
appears to be gagging on the new localhost\.localdomain that is in the
configuration file. I don''t know if this got added by my machine when
compiling.
diff -ur xen-3.0-testing.hg/install/etc/xen/xend-config.sxp
xen-unstable.hg/install/etc/xen/xend-config.sxp
--- xen-3.0-testing.hg/install/etc/xen/xend-config.sxp 2006-08-07
18:53:36.000000000 -0600
+++ xen-unstable.hg/install/etc/xen/xend-config.sxp 2006-08-09
23:23:46.000000000 -0600
@@ -54,7 +54,7 @@
# (xend-relocation-hosts-allow ''...
2007 Dec 02
5
HA Xen cluster live migration
Hello,
We have successfully implemented a 2-node HA Xen cluster with DRBD, LVM
and heartbeat, that can do live migration.
I wrote up some details here:
http://te.to/~ts1/xen_cluster.html
I''d like to say thank you to all the people writing these great software.
--
Takeshi
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
2007 Dec 02
5
HA Xen cluster live migration
Hello,
We have successfully implemented a 2-node HA Xen cluster with DRBD, LVM
and heartbeat, that can do live migration.
I wrote up some details here:
http://te.to/~ts1/xen_cluster.html
I''d like to say thank you to all the people writing these great software.
--
Takeshi
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
2013 Jun 30
18
Xen 4.2.2 /etc/init.d/xendomains save and restore of domains does not work
Hello,
in the last days I switched from Xen 4.2.1 to Xen 4.2.2 (source from git
repository tag 4.2.2)
commit a125ec6a4a2f028f97f0bdd8946d347a36dbe76b
Author: Jan Beulich <jbeulich@suse.com>
Date: Tue Apr 23 18:42:55 2013 +0200
update Xen version to 4.2.2
My "base system" is a debian squeeze. For Xen I use the xl toolstack.
Since updating to 4.2.2 the autosave and
2007 Nov 25
10
How are you getting your Vista and XP VMs to work?
...either a Vista or XP VM up and running.
XP:
I''ve created an ISO from my WinXP SP 1a CD. The VM seems to be created fine. It boots then installs the OS. On the second setup boot after copying over the OS files, it brings up a box that says:
The file ''asms'' on WindowsXP Home Edition Service Pack 1 CD is needed.
Then wants me to provide the path to where it thinks it should be. I''ve tried making ISOs out of several of my Windows XP CDs I have around here, and they all do the same thing.
For Vista:
The VM is created, Vista starts to boot from the insta...
2014 Dec 02
1
missing xend-config.sxp
Hi!
New installation (debian jessie) -> missing of /etc/xen/xend-config.sxp
file.
Package: xen-utils-common (4.4.1-3)
--
(O__ ------------------------------------------------------
//\ / Varosi Csokonai Konyvtar
// ) | Tel.: 59/503-152
V__/_ szistvan at tux.hu \ szistvan at mail.vcsk.hu
2011 Aug 11
0
migrating from old config file format to sxp
Hi folks,
is there a tool to convert a vm''s classic config file to sxp? I tried
"xm create OLDCONF -n" and pasted the output in a config file at
/var/lib/xend/domains/SOMEFOLDER/config.sxp, but that did not make virsh
recognize the vm at all (although I restrarted xend, which helps for
example after virt-clone).
I am trying this on Xen4 using Debian6....
2007 Mar 27
0
[PATCH] [Bug 936] Fix "cpus" in config.sxp
Hi,
I fixed the Xen bugzilla 936.
http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=936
Currently, "cpus" output to config.sxp is the following form.
Therefore _parse_sxp() cannot convert ''[1'' to integer.
e.g. (cpus ''[1, 2]'') --- string
This patch changes output form of "cpus". The form is as follows.
e.g. (cpus (1 2))
However, the bug cannot be solved only by the...
2009 Mar 13
0
xm list --long and SXP
xm list --long says it outputs the server details in SXP, what is SXP, i
want to parse this output using perl.
~Shaun
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2007 Jan 05
10
[PATCH 1/7] Fix pygrub path on Solaris
...s/python/xen/xend/XendDomainInfo.py
--- a/tools/python/xen/xend/XendDomainInfo.py
+++ b/tools/python/xen/xend/XendDomainInfo.py
@@ -37,7 +37,7 @@ from xen.util.blkif import blkdev_uname_
from xen.util.blkif import blkdev_uname_to_file
from xen.util import security
-from xen.xend import balloon, sxp, uuid, image, arch
+from xen.xend import balloon, sxp, uuid, image, arch, osdep
from xen.xend import XendOptions, XendNode, XendConfig
from xen.xend.XendConfig import scrub_password
@@ -1547,7 +1547,7 @@ class XendDomainInfo:
else:
# Boot using bootloader
if n...