search for: xenstoreds

Displaying 20 results from an estimated 1180 matches for "xenstoreds".

Did you mean: xenstored
2015 Sep 08
3
Report on Xen-4.6rc2 from virt7-xen-46-candidate
Hi I gave the new Xen-4.6rc2 a spin on a CentOS 7 virtualisation guest (nested-xen). I haven't yet started testing guests, but rather looked at the install itself. One issue, I found, was with xenstored.service and the corresponding unit-file: [root at xencen7ws ~]# systemctl status xenstored xenstored.service - The Xen xenstore Loaded: loaded
2011 Dec 13
12
[PATCH 0 of 4 V2] oxenstored fixes -- fixes recent pvops kernel hang
Currently PVHVM Linux guests after ddacf5ef684a "xen/pv-on-hvm kexec: add xs_reset_watches to shutdown watches from old kernel" hang when run against oxenstored because it does not handle the unknown XS_RESET_WATCHES operation and does not reply. The symptom of this issue is a hang during boot at this point: cpu 1 spinlock event irq 70 CPU 1 irqstacks, hard=dec94000
2011 Mar 30
2
[PATCH] xenstore-stat v2
The entries in xenstore have permission attributes. The attributes can be easily altered by xenstore-chmod, however, I cannot find a easy way to see them. I''ve modified xenstore_client.c to raise a new utility. The utility checks the permission and makes an easy-look output. Please tell me any suggestions. Thanks. Signed-off-by: Frank Pan <frankpzh@gmail.com> ---
2010 Jul 12
0
xenstore-write segfault
Hi All , I am using xen 3.2.0 which i have built form source ,I could initially boot Dom 0 and some DomUs. But today when i tried to boot a DomU with birdge enabled it didnt work giving an error .... Error: Device 0 (vif) could not be connected. Hotplug scripts not working. After that I checked my var/log/messages and It gave lots of xenstore-write
2008 Oct 07
3
Creating a custom directory tree inside Xenstore
Is it possible to create a custom directory tree inside Xenstore using any of the Xenstore-utilities?? For example, "/local/domain/0/Customdir". Thx, Venkat _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2012 Jul 09
1
Bug#666135: Multiple "Domain-0", slow libvirt
In our case, this seems to be some kind of bug with xenstored. For example, let's take our servers "vm7" and "vm10" into consideration, which are configured exactly the same, Debian Squeeze vanilla, no backports. "vm7", as stated below, has more Domain-0 entries, but executes virsh commands (f.e. virsh pwd, virsh list etc) faster (under a second) than
2023 May 23
2
Bug#1036601: xenstore-utils: missing Depends: xen-utils-common
Package: xenstore-utils Version: 4.17.0+74-g3eac216e6e-1 Severity: serious User: debian-qa at lists.debian.org Usertags: piuparts Hi, during a test with piuparts I noticed your package ships (or creates) a broken symlink: 0m15.9s ERROR: FAIL: Broken symlinks: /usr/bin/xenstore-control -> ../lib/xen-common/bin/xen-utils-wrapper (xenstore-utils) cheers, Andreas
2007 Nov 26
5
xenstored
Hi , Are there any options with xenstored to access xenstore ? Can I look up contents of xenstore ? Thanks, Sanket _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Nov 26
5
xenstored
Hi , Are there any options with xenstored to access xenstore ? Can I look up contents of xenstore ? Thanks, Sanket _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2015 Sep 09
0
Report on Xen-4.6rc2 from virt7-xen-46-candidate
On Tue, Sep 8, 2015 at 11:25 PM, T.Weyergraf <T.Weyergraf at virtfinity.de> wrote: > Hi > > I gave the new Xen-4.6rc2 a spin on a CentOS 7 virtualisation guest > (nested-xen). I haven't yet started testing guests, but rather looked at the > install itself. > > One issue, I found, was with xenstored.service and the corresponding > unit-file: > > [root at
2019 Feb 12
2
[PATCH 08/13] xen init script: rewrite xenstored start logic
...ed" -- \ > + $XENSTORED_ARGS --pid-file="$XENSTORED_PIDFILE" I really don't like the way all of this is open-coded. There are two almost-identical runes here. How about this: case "$XENSTORED" in /*) USER_XENSTORED="$XENSTORED" ; try_xenstoreds=USER_XENSTORED ;; ?*) USER_XENSTORED="$ROOT"/bin/$XENSTORED ; try_xenstoreds=USER_XENSTORED ;; '') USER_XENSTORED="" ; try_xenstoreds='OXENSTORED CXENSTORED' ;; esac and then for try_xenstored_var in $try_xenstoreds; do eval "try_xenstored=\...
2006 Aug 02
0
[PATCH] xenstore-chmod
Hello, I''ve modified tools/xenstore/xenstore_client.c to include a new utility, xenstore-chmod. This utility permits developers and administrators to manually change the permissions on arbitrary locations in XenStore from the command line. This is often helpful if you''re trying to debug an application that relies on XenStore and is encountering difficulties with permissions.
2012 Nov 14
2
Bug#693217: Removal of xenstore tdb file before xenstored daemon
Package: xen-utils-common Version: 4.0.0-1 Consider removal of xenstored tdb file (located at /var/lib/xenstored/tdb) before start of xenstored daemon during the boot (or removal during the shutdown/reboot of the server) as proposed by Ian Campbell during our discussions [1]. [1] http://lists.xen.org/archives/html/xen-users/2012-11/msg00111.html -- Peter Viskup
2007 Dec 17
16
How to configure default NIC when creating Guest
Hi All, I have a machine with three network cards, and the third card(named e1000g2) is in use now. I want to use e1000g2 as default NIC when I create Guest. How can I change the default NIC? I can override the default value of config/default-nic property of svc:/system/xvm/xend. But xend still use e1000g0 when creating Guest. BTW, I can explicitly set "bridge=e1000g2" when creating
2019 Feb 12
2
[PATCH 08/13] xen init script: rewrite xenstored start logic
...case "$?" in > 0|1) ;; > *) log_end_msg 1; exit ;; > esac > > I mean, why torture the reader of the code with counter intuitive 1 > values that mean success... I agree. Madness. > > for try_xenstored_var in $try_xenstoreds; do > > eval "try_xenstored=\$$try_xenstored_var" > > ... > > Yes, that way the two start-stop-daemon can be one instead, nice! > > And do you agree that exploding when an explicit choice has been made by > the user + that binary can't be started i...
2006 Dec 07
6
problem restarting xenstored
As any other daemon, I''d assume it should be possible to restart xenstored (i.e. if it crashed or if, during development, a fix was made to it that needs to be tested). However, as I learned after over a day of digging, things don''t work anymore after doing so: Since the watches are transient, they''re lost with the daemon going away. Right now I specifically need this in
2011 Oct 31
3
[PATCH] xenstored: Fix processing of zero-length messages
When a message with zero length is sent to xenstore, the body of the message was not processed until the socket or ring had more data to read; this will cause deadlocks if the requestor is waiting on a response to continue. Signed-off-by: Daniel De Graaf <dgdegra@tycho.nsa.gov> --- tools/xenstore/xenstored_core.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git
2006 Oct 12
4
xend / xenstored performance & scalability issues
I''ve been trying to track down just why talking to XenD is resulting in so much CPU time being comsumed by both xend & xenstored. As a test case, I''m running ''virsh dominfo demo'' which results in a single HTTP request to Xend to fetch domain info, eg ''GET /xend/domains/demo'' Run this in a tight loop & I''ll see xenstored
2013 Jul 06
1
[PATCH 1/2] xenstore: don't die on access-denied child nodes in 'xenstore ls'
Signed-off-by: Matthew Daley <mattjd@gmail.com> --- tools/xenstore/xenstore_client.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/tools/xenstore/xenstore_client.c b/tools/xenstore/xenstore_client.c index 3ac214b..996ee64 100644 --- a/tools/xenstore/xenstore_client.c +++ b/tools/xenstore/xenstore_client.c @@ -134,8 +134,13 @@ static void do_ls(struct
2012 Aug 24
2
Bug#666135: XenStore tdb vs. reboot
Hello, I noticed a strace delay when running "virsh list" on my Xen-4.1.3 test server. On further investigation I noticed that in XenStore there were multiple /vm/$UUID entries suffixed by -$VERSION, especially I hat 16 entries for my dom0. For each reboot of the host I get a new entry. After disabling Xend I get the following output after a reboot: > root at xen5:~# xenstore-ls