search for: xs_daemon_open_readon

Displaying 4 results from an estimated 4 matches for "xs_daemon_open_readon".

2006 Nov 10
0
Re: [Libvir] First virConnectOpen() failed
...aniel Veillard wrote: > On Thu, Nov 09, 2006 at 03:41:55PM -0500, Glen Deem wrote: >> Hi all, >> >> I''ve compiled libvirt from the head, running tests failed with: >> >> first virConnectOpen() failed >> >> I''ve traced it to a failure of xs_daemon_open_readonly() that returns 0. > > it was a test problem when running as non-root, fixed in CVS yesterday :-) > > Daniel > _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
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
2024 Feb 05
7
Bug#1063270: xen: NMU diff for 64-bit time_t transition
...-libxenstore.so.4 libxenstore4 #MINVER# - VERS_4.0 at VERS_4.0 4.16.0 - xs_check_watch at VERS_4.0 4.16.0 - xs_close at VERS_4.0 4.16.0 - xs_control_command at VERS_4.0 4.16.0 - xs_daemon_close at VERS_4.0 4.16.0 - xs_daemon_destroy_postfork at VERS_4.0 4.16.0 - xs_daemon_open at VERS_4.0 4.16.0 - xs_daemon_open_readonly at VERS_4.0 4.16.0 - xs_daemon_rundir at VERS_4.0 4.16.0 - xs_daemon_socket at VERS_4.0 4.16.0 - xs_daemon_socket_ro at VERS_4.0 4.16.0 - xs_debug_command at VERS_4.0 4.16.0 - xs_directory at VERS_4.0 4.16.0 - xs_domain_open at VERS_4.0 4.16.0 - xs_fileno at VERS_4.0 4.16.0 - xs_get_domain_path a...
2005 Aug 04
0
[PATCH 6/11] Xenstore watch rework
..." \n") == strlen(line)) + return; + if (strstarts(line, "#")) + return; + + handle = strtoul(line, &endp, 10); + if (endp != line) + memmove(line, endp+1, strlen(endp)); + else + handle = default_handle; + + if (!handles[handle]) { + if (readonly) + handles[handle] = xs_daemon_open_readonly(); + else + handles[handle] = xs_daemon_open(); + if (!handles[handle]) + barf_perror("Opening connection to daemon"); + } + command = arg(line, 0); + + if (timeout) + alarm(1); + + if (streq(command, "dir")) + do_dir(handle, arg(line, 1)); + else if (streq(command, &q...