search for: libxenctrl

Displaying 20 results from an estimated 76 matches for "libxenctrl".

2007 Sep 07
0
Backporting Xen 3.1 to Etch
...e.so' not recognized dpkg-shlibdeps: warning: format of `NEEDED libxenstore.so' not recognized dpkg-shlibdeps: warning: format of `NEEDED libxenstore.so' not recognized dpkg-shlibdeps: warning: format of `NEEDED libblktap.so' not recognized dpkg-shlibdeps: warning: format of `NEEDED libxenctrl.so' not recognized dpkg-shlibdeps: warning: format of `NEEDED libxenstore.so' not recognized dpkg-shlibdeps: warning: format of `NEEDED libblktap.so' not recognized dpkg-shlibdeps: warning: format of `NEEDED libxenctrl.so' not recognized dpkg-shlibdeps: warning: format of `NEEDED li...
2007 Apr 12
0
Problem with Xen3.0.4-1 ?
...start Traceback (most recent call last): File "/usr/sbin/xend", line 52, in ? from xen.xend.server import SrvDaemon File "/home/zwang/programs/xen-3.0.4_1-src/dist/install/usr/lib/python/xen/xend/server/SrvDaemon.py", line 20, in ? import xen.lowlevel.xc ImportError: libxenctrl.so.3.0: cannot handle TLS data Traceback (most recent call last): File "/usr/sbin/xend", line 52, in ? from xen.xend.server import SrvDaemon File "/home/zwang/programs/xen-3.0.4_1-src/dist/install/usr/lib/python/xen/xend/server/SrvDaemon.py", line 20, in ? import xen...
2008 May 19
1
error while static linking of libxenctrl and libxenguest
...; #include <xenctrl.h> #include <xenguest.h> int main(void) { printf("%p\n", xc_domain_resume); printf("%p\n", xc_domain_save); return 0; } gcc -static test.c -o test -lxenguest -lxenctrl -lpthread -lz we get /usr/lib/gcc/x86_64-linux-gnu/4.2.3/../../../../lib/libxenctrl.a(xc_private.o): In function `lock_pages'': /home/sthibault/xen-unstable-stubdom.hg/tools/libxc/xc_private.c:130: multiple definition of `lock_pages'' /usr/lib/gcc/x86_64-linux-gnu/4.2.3/../../../../lib/libxenguest.a(xg_private.o):/home/sthibault/xen-unstable-stubdom.hg/tools/libxc/...
2011 Mar 21
9
Build problem: note: ''xtl_createlogger_stdiostream'' is defined in DSO .. so try adding it to the linker command line... libxenctrl.so.4.0: could not read symbols: Invalid operation
.../tools/libxl/../../tools/blktap2/control -lxenlight /usr/bin/ld: xl.o: undefined reference to symbol ''xtl_createlogger_stdiostream'' /usr/bin/ld: note: ''xtl_createlogger_stdiostream'' is defined in DSO /home/konrad/ssd/xtt/xen-unstable/tools/libxl/../../tools/libxc/libxenctrl.so.4.0 so try adding it to the linker command line /home/konrad/ssd/xtt/xen-unstable/tools/libxl/../../tools/libxc/libxenctrl.so.4.0: could not read symbols: Invalid operation collect2: ld returned 1 exit status make[3]: *** [xl] Error 1 make[3]: Leaving directory `/home/konrad/ssd/xtt/xen-unstable...
2014 Mar 02
0
Bug#710650: marked as done (xen-api: FTBFS: gcc: error: /home/blank/debian/xen/releases/xen/xen-4.2.1/debian/build/build-utils_amd64/tools/ocaml/libs/xc/../../../../tools/libxc/libxenctrl.so: No such file or directory- build ocaml/xapi rrddump.opt)
...w-0004SD-Mw at franck.debian.org> and subject line Bug#740517: Removed package(s) from unstable has caused the Debian Bug report #710650, regarding xen-api: FTBFS: gcc: error: /home/blank/debian/xen/releases/xen/xen-4.2.1/debian/build/build-utils_amd64/tools/ocaml/libs/xc/../../../../tools/libxc/libxenctrl.so: No such file or directory- build ocaml/xapi rrddump.opt to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system...
2007 Apr 08
0
Bug#418244: xentrace fails - can't load libxenctrl.so
Package: xen-utils-3.0.3-1 Version: 3.0.3-0-2 Severity: normal # xentrace /usr/lib/xen-3.0.3-1/bin/xentrace: error while loading shared libraries: libxenctrl.so: cannot open shared object file: No such file or directory It seems that we need a /etc/ld.so.conf.d/xen file that includes directory /usr/lib/xen-3.0.3-1/lib . -- System Information: Debian Release: 4.0 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) She...
2007 Dec 02
2
Changes for 3.2
Hi folks Some proposed changes: * Fixiate the API/ABI of some libs, for the stable version, including - libxenctrl, - libxenstat, - libxenstore. As upstream don't know what abinames are for, roll own abinames. * Add libxenctrlX, libxenstatX, libxenstoreX, if abinames may be different or libxenX if the abinames should the same for all libs. * Add libxen-dev including - static libxenctrl, libxenstat...
2006 Feb 22
2
use case for exposing xenstore attributes via sysfs [long]
...ing in the UUID in SMBIOS that everyone will be happy with. So, if I use the xenstore UUID for both para-virtualized and fully virtualized domU''s, I need to somehow read a para-virtualized domU''s xenstore UUID in userspace on that domU. At the moment, I require libxenstore and libxenctrl in the domU. I read the ''vm'' xenstore attribute in the domU''s xenstore home directory, which is a string representation of the full path in xenstore to the domU''s entry in the "/vm" section of xenstore. That path includes the domU''s xenstore...
2013 Dec 02
3
[PATCH] libxenctrl: Fix xc_interface_close() crash if it gets NULL as an argument
xc_interface_close() crashes if it gets NULL as an argument. However, it just calls xc_interface_close_common() which is called by many others functions. It means that they are also vulnerable. So fix above mentioned issue by adding NULL check in xc_interface_close_common(). This way we fix similar issue in other functions which calls xc_interface_close_common() too. Signed-off-by: Daniel Kiper
2006 Oct 17
0
[PATCH] Fixes for linking on Solaris
...$(CC) $(CFLAGS) $^ -o $@ -L$(XEN_LIBXC) -L$(XEN_XENSTORE) \ - -lxenctrl -lxenstore + $(SOCKET_LIBS) -lxenctrl -lxenstore .PHONY: install install: $(BIN) diff --git a/tools/libxc/Makefile b/tools/libxc/Makefile --- a/tools/libxc/Makefile +++ b/tools/libxc/Makefile @@ -117,7 +117,7 @@ libxenctrl.so.$(MAJOR): libxenctrl.so.$( ln -sf $< $@ libxenctrl.so.$(MAJOR).$(MINOR): $(CTRL_PIC_OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname -Wl,libxenctrl.so.$(MAJOR) -shared -o $@ $^ + $(CC) $(CFLAGS) $(LDFLAGS) $(SONAME_LDFLAG) -Wl,libxenctrl.so.$(MAJOR) $(SHLIB_FLAGS) -o $@ $^ # libxenguest...
2006 Dec 13
5
[ANNOUNCE] Xen 3.0.4-rc1
Folks, The first release candidate for 3.0.4 is ready. Please download and test: http://xenbits.xensource.com/xen-3.0.4-testing.hg The aim is still for final release before christmas. -- Keir _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2011 Apr 15
3
[PATCHv3] libxl: Exposed Flask XSM functionality
Adds support for assigning a label to domains, obtaining and setting the current enforcing mode, and loading a policy with xl command and libxl header when the Flask XSM is in use. Adheres to the changes made by the patch to remove exposure of libxenctrl/libxenstore headers via libxl.h. tools/libxl/libxl_flask.c | 71 ++++++++++++++++++ tools/libxl/Makefile | 2 tools/libxl/libxl.c | 1 tools/libxl/libxl.h | 8 ++ tools/libxl/libxl.idl | 3 tools/libxl/xl.h | 3 tools/libxl/xl_cmdimp...
2005 Oct 11
1
gdbserver-xen crash with core file
...thread_db library "/lib/libthread_db.so.1". Core was generated by `gdbserver-xen 127.0.0.1:9999 --attach 6''. Program terminated with signal 11, Segmentation fault. warning: current_sos: Can''t read pathname for load map: Input/output error Reading symbols from /usr/lib/libxenctrl.so.3.0...done. Loaded symbols for /usr/lib/libxenctrl.so.3.0 Reading symbols from /lib/libc.so.6...done. Loaded symbols for /lib/libc.so.6 Reading symbols from /lib/ld-linux.so.2...done. Loaded symbols for /lib/ld-linux.so.2 #0 0xb7e35e35 in mallopt () from /lib/libc.so.6 (gdb) where #0 0xb7e35e3...
2008 Aug 14
11
[PATCH][TOOLS] ioemu: linking fix for *BSD
Hi, Attached patch tells the linker where to find libxenctrl.so.3.2, libxenguest.so.3.2 and libxenstore.so.3.0 when launching qemu-dm. Signed-off-by: Christoph Egger <Christoph.Egger@amd.com> -- AMD Saxony, Dresden, Germany Operating System Research Center Legal Information: AMD Saxony Limited Liability Company & Co. KG Sitz (Geschäftsanschri...
2013 May 31
3
Bug#710650: xen-api: FTBFS: gcc: error: /home/blank/debian/xen/releases/xen/xen-4.2.1/debian/build/build-utils_amd64/tools/ocaml/libs/xc/../../../../tools/libxc/libxenctrl.so: No such file or directory- build ocaml/xapi rrddump.opt
...> --- Checking for gcc... (found /usr/bin/gcc) > --- Checking for g++... (found /usr/bin/g++) > *** omake: saved .omakedb > *** omake: saved .omakedb > gcc: error: /home/blank/debian/xen/releases/xen/xen-4.2.1/debian/build/build-utils_amd64/tools/ocaml/libs/xc/../../../../tools/libxc/libxenctrl.so: No such file or directory- build ocaml/xapi rrddump.opt > + ocamlfind ocamlopt -package xenctrl,xenstore,cpuid,xml-light2,cdrom,pciutil,sexpr,log,stunnel,http-svr,rss,xen-utils,netdev,tapctl,vhd,xenstore,rpc-light -g -dtypes -thread -warn-error +a-4-6-9-27-28-29 -ccopt -fPIC -I ../idl -I ../...
2013 Jun 08
0
Bug#710650: Bug#710650: xen-api: FTBFS: gcc: error: /home/blank/debian/xen/releases/xen/xen-4.2.1/debian/build/build-utils_amd64/tools/ocaml/libs/xc/../../../../tools/libxc/libxenctrl.so: No such file or directory- build ocaml/xapi rrddump.opt
...... (found /usr/bin/gcc) > > --- Checking for g++... (found /usr/bin/g++) > > *** omake: saved .omakedb > > *** omake: saved .omakedb > > gcc: error: > /home/blank/debian/xen/releases/xen/xen-4.2.1/debian/build/build-utils_amd64/tools/ocaml/libs/xc/../../../../tools/libxc/libxenctrl.so: > No such file or directory- build ocaml/xapi rrddump.opt > > + ocamlfind ocamlopt -package > xenctrl,xenstore,cpuid,xml-light2,cdrom,pciutil,sexpr,log,stunnel,http-svr,rss,xen-utils,netdev,tapctl,vhd,xenstore,rpc-light > -g -dtypes -thread -warn-error +a-4-6-9-27-28-29 -ccopt -f...
2015 Feb 26
0
Does it still make sense to have versioned xen-hypervisor, libxen and xen-utils?
...issues were subtle. Not sure why > but using cirrus on HVM would stop updating a VNC screen as soon as the > resolution was changed. $ ldd /usr/bin/qemu-system-x86_64 | grep xen libxenstore.so.3.0 => /usr/lib/x86_64-linux-gnu/libxenstore.so.3.0 (0x00007f401610c000) libxenctrl-4.4.so => /usr/lib/x86_64-linux-gnu/libxenctrl-4.4.so (0x00007f4015ee4000) libxenguest-4.4.so => /usr/lib/x86_64-linux-gnu/libxenguest-4.4.so (0x00007f4015cb8000) Neither libvirt nor qemu are critical for the system. > So given that for above reasons moving between xen versions i...
2008 Nov 12
0
libxen-dev: multiple symbol definition
Hello. That's what I've got from ld: /usr/lib/libxenguest.a(xg_private.o): In function `unlock_pages': (.text+0x490): multiple definition of `unlock_pages' /usr/lib/libxenctrl.a(xc_private.o):(.text+0x6a0): first defined here /usr/lib/libxenguest.a(xg_private.o): In function `lock_pages': (.text+0x4d0): multiple definition of `lock_pages' /usr/lib/libxenctrl.a(xc_private.o):(.text+0x700): first defined here collect2: ld returned 1 exit status Indeed: /usr/lib$ r...
2010 Nov 25
0
xm and xend start problem
...from xen.xm import main File "/usr/lib/python2.6/dist-packages/xen/xm/main.py", line 52, in <module> from xen.xm import console File "/usr/lib/python2.6/dist-packages/xen/xm/console.py", line 19, in <module> import xen.lowlevel.xs ImportError: libxenctrl.so.3.2: cannot open shared object file: No such file or directory However, I found the libxenctrl.so under xen-4.0.1 is libxenctrl.so.4.0 I think the version of xm may be mismatch with my current xen version, How to fix this bug? cheers, Yueqiang ______________________________________________...
2008 Jul 18
0
[PATCH] stubdom: fix build dependency
...AGS)" AR_FOR_TARGET=$(AR) LD_FOR_TARGET=$(LD) RANLIB_FOR_TARGET=$(RANLIB) ../newlib-$(NEWLIB_VERSION)/configure --prefix=$(CROSS_PREFIX) --verbose --target=$(GNU_TARGET_ARCH)-xen-elf --enable-newlib-io-long-long --disable-multilib && \ @@ -206,7 +206,7 @@ .PHONY: libxc libxc: libxc/libxenctrl.a libxc/libxenguest.a -libxc/libxenctrl.a libxc/libxenguest.a:: cross-zlib mk-headers +libxc/libxenctrl.a libxc/libxenguest.a:: cross-zlib CPPFLAGS="$(TARGET_CPPFLAGS)" CFLAGS="$(TARGET_CFLAGS)" $(MAKE) -C libxc ####### @@ -214,7 +214,7 @@ ####### .PHONY: ioemu -ioemu:...