2010-02-23 00:01:34 +00:00
|
|
|
*#*#
|
|
|
|
*.#*#
|
2008-10-28 17:47:12 +00:00
|
|
|
*.a
|
2012-02-03 21:30:06 +00:00
|
|
|
*.cov
|
2010-04-29 03:36:03 +00:00
|
|
|
*.exe
|
2010-06-09 18:35:49 +00:00
|
|
|
*.gcda
|
|
|
|
*.gcno
|
|
|
|
*.gcov
|
2012-02-03 21:30:06 +00:00
|
|
|
*.html
|
|
|
|
*.i
|
Prevent crash from dlclose() of libvirt.so
When libvirt calls virInitialize it creates a thread local
for the virErrorPtr storage, and registers a callback to
cleanup memory when a thread exits. When libvirt is dlclose()d
or otherwise made non-resident, the callback function is
removed from memory, but the thread local may still exist
and if a thread later exists, it will invoke the callback
and SEGV. There may also be other thread locals with callbacks
pointing to libvirt code, so it is in general never safe to
unload libvirt.so from memory once initialized.
To allow dlclose() to succeed, but keep libvirt.so resident
in memory, link with '-z nodelete'. This issue was first
found with the libvirt CIM provider, but can potentially
hit many of the dynamic language bindings which all ultimately
involve dlopen() in some way, either on libvirt.so itself,
or on the glue code for the binding which in turns links
to libvirt
* configure.ac, src/Makefile.am: Ensure libvirt.so is linked
with -z nodelete
* cfg.mk, .gitignore, tests/Makefile.am, tests/shunloadhelper.c,
tests/shunloadtest.c: A test case to unload libvirt while
a thread is still running.
2011-09-01 16:57:06 +00:00
|
|
|
*.la
|
|
|
|
*.lo
|
2012-02-03 21:30:06 +00:00
|
|
|
*.loT
|
2008-10-28 17:47:12 +00:00
|
|
|
*.o
|
2010-02-23 00:01:34 +00:00
|
|
|
*.orig
|
2012-02-03 21:30:06 +00:00
|
|
|
*.pyc
|
2010-02-23 00:01:34 +00:00
|
|
|
*.rej
|
2012-02-03 21:30:06 +00:00
|
|
|
*.s
|
2008-10-28 17:47:12 +00:00
|
|
|
*~
|
2012-02-03 21:30:06 +00:00
|
|
|
.deps
|
2008-10-17 10:03:15 +00:00
|
|
|
.git
|
2009-07-10 08:01:04 +00:00
|
|
|
.git-module-status
|
2012-02-03 21:30:06 +00:00
|
|
|
.libs
|
2011-03-17 02:35:17 +00:00
|
|
|
.lvimrc
|
2012-02-03 21:30:06 +00:00
|
|
|
.memdump
|
2010-04-21 15:55:03 +00:00
|
|
|
.sc-start-sc_*
|
2010-11-16 19:29:09 +00:00
|
|
|
/ABOUT-NLS
|
|
|
|
/COPYING
|
|
|
|
/ChangeLog
|
2010-02-23 00:01:34 +00:00
|
|
|
/GNUmakefile
|
2010-11-16 19:29:09 +00:00
|
|
|
/INSTALL
|
|
|
|
/NEWS
|
|
|
|
/aclocal.m4
|
|
|
|
/autom4te.cache
|
2011-01-04 02:37:17 +00:00
|
|
|
/build-aux
|
2010-11-16 19:29:09 +00:00
|
|
|
/build-aux/
|
2010-04-30 14:52:54 +00:00
|
|
|
/build/
|
2010-11-16 19:29:09 +00:00
|
|
|
/config.cache
|
|
|
|
/config.guess
|
|
|
|
/config.h
|
|
|
|
/config.h.in
|
|
|
|
/config.log
|
|
|
|
/config.rpath
|
|
|
|
/config.status
|
|
|
|
/config.sub
|
|
|
|
/configure
|
|
|
|
/configure.lineno
|
2011-05-16 17:13:11 +00:00
|
|
|
/daemon/*_dispatch.h
|
2012-02-03 21:30:06 +00:00
|
|
|
/daemon/libvirt_qemud
|
|
|
|
/daemon/libvirtd
|
|
|
|
/daemon/libvirtd*.logrotate
|
|
|
|
/daemon/libvirtd.8
|
|
|
|
/daemon/libvirtd.8.in
|
2012-04-13 08:55:15 +00:00
|
|
|
/daemon/libvirtd.init
|
2012-02-03 21:30:06 +00:00
|
|
|
/daemon/libvirtd.pod
|
2012-04-13 08:55:15 +00:00
|
|
|
/daemon/libvirtd.service
|
Autogenerate augeas test case from default config files
When adding new config file parameters, the corresponding
additions to the augeas lens' are constantly forgotten.
Also there are augeas test cases, these don't catch the
error, since they too are never updated.
To address this, the augeas test cases need to be auto-generated
from the example config files.
* build-aux/augeas-gentest.pl: Helper to generate an
augeas test file, substituting in elements from the
example config files
* src/Makefile.am, daemon/Makefile.am: Switch to
auto-generated augeas test cases
* daemon/test_libvirtd.aug, daemon/test_libvirtd.aug.in,
src/locking/test_libvirt_sanlock.aug,
src/locking/test_libvirt_sanlock.aug.in,
src/lxc/test_libvirtd_lxc.aug,
src/lxc/test_libvirtd_lxc.aug.in,
src/qemu/test_libvirtd_qemu.aug,
src/qemu/test_libvirtd_qemu.aug.in: Remove example
config file data, replacing with a ::CONFIG:: placeholder
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2012-05-25 10:14:15 +00:00
|
|
|
/daemon/test_libvirtd.aug
|
2012-04-27 16:05:12 +00:00
|
|
|
/docs/apibuild.py.stamp
|
2012-02-03 21:30:06 +00:00
|
|
|
/docs/devhelp/libvirt.devhelp
|
2011-05-16 15:33:56 +00:00
|
|
|
/docs/hvsupport.html.in
|
2012-02-03 21:30:06 +00:00
|
|
|
/docs/libvirt-api.xml
|
2011-09-14 15:30:33 +00:00
|
|
|
/docs/libvirt-qemu-*.xml
|
2012-02-03 21:30:06 +00:00
|
|
|
/docs/libvirt-refs.xml
|
|
|
|
/docs/todo.html.in
|
|
|
|
/examples/domain-events/events-c/event-test
|
|
|
|
/examples/dominfo/info1
|
|
|
|
/examples/domsuspend/suspend
|
|
|
|
/examples/hellolibvirt/hellolibvirt
|
|
|
|
/examples/openauth/openauth
|
2011-07-28 12:55:21 +00:00
|
|
|
/gnulib/lib/*
|
|
|
|
/gnulib/m4/*
|
|
|
|
/gnulib/tests/*
|
2012-02-03 21:30:06 +00:00
|
|
|
/include/libvirt/libvirt.h
|
2010-11-16 19:29:09 +00:00
|
|
|
/libtool
|
|
|
|
/libvirt-*.tar.gz
|
2010-05-19 22:16:47 +00:00
|
|
|
/libvirt-[0-9]*
|
2010-11-16 19:29:09 +00:00
|
|
|
/libvirt.pc
|
|
|
|
/libvirt.spec
|
|
|
|
/ltconfig
|
|
|
|
/ltmain.sh
|
2011-04-05 19:06:31 +00:00
|
|
|
/m4/*
|
2010-02-23 00:01:34 +00:00
|
|
|
/maint.mk
|
2012-06-15 16:13:11 +00:00
|
|
|
/mingw-libvirt.spec
|
2010-11-16 19:29:09 +00:00
|
|
|
/mkinstalldirs
|
2011-04-05 19:06:31 +00:00
|
|
|
/po/*
|
2010-11-09 10:45:14 +00:00
|
|
|
/proxy/
|
2012-02-03 21:30:06 +00:00
|
|
|
/python/generated.stamp
|
2011-07-19 13:34:34 +00:00
|
|
|
/python/generator.py.stamp
|
2012-02-03 21:30:06 +00:00
|
|
|
/python/libvirt-export.c
|
2011-09-14 15:30:33 +00:00
|
|
|
/python/libvirt-qemu-export.c
|
|
|
|
/python/libvirt-qemu.[ch]
|
2012-02-03 21:30:06 +00:00
|
|
|
/python/libvirt.[ch]
|
|
|
|
/python/libvirt.py
|
2011-09-14 15:30:33 +00:00
|
|
|
/python/libvirt_qemu.py
|
2011-08-18 23:03:26 +00:00
|
|
|
/sc_*
|
2012-02-03 21:30:06 +00:00
|
|
|
/src/esx/*.generated.*
|
2011-07-13 15:05:19 +00:00
|
|
|
/src/hyperv/*.generated.*
|
2012-02-03 21:30:06 +00:00
|
|
|
/src/libvirt*.def
|
|
|
|
/src/libvirt.syms
|
|
|
|
/src/libvirt_*.stp
|
|
|
|
/src/libvirt_*helper
|
2012-05-25 02:43:43 +00:00
|
|
|
/src/libvirt_*probes.h
|
2012-02-03 21:30:06 +00:00
|
|
|
/src/libvirt_lxc
|
2011-08-15 20:42:43 +00:00
|
|
|
/src/locking/qemu-sanlock.conf
|
Autogenerate augeas test case from default config files
When adding new config file parameters, the corresponding
additions to the augeas lens' are constantly forgotten.
Also there are augeas test cases, these don't catch the
error, since they too are never updated.
To address this, the augeas test cases need to be auto-generated
from the example config files.
* build-aux/augeas-gentest.pl: Helper to generate an
augeas test file, substituting in elements from the
example config files
* src/Makefile.am, daemon/Makefile.am: Switch to
auto-generated augeas test cases
* daemon/test_libvirtd.aug, daemon/test_libvirtd.aug.in,
src/locking/test_libvirt_sanlock.aug,
src/locking/test_libvirt_sanlock.aug.in,
src/lxc/test_libvirtd_lxc.aug,
src/lxc/test_libvirtd_lxc.aug.in,
src/qemu/test_libvirtd_qemu.aug,
src/qemu/test_libvirtd_qemu.aug.in: Remove example
config file data, replacing with a ::CONFIG:: placeholder
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2012-05-25 10:14:15 +00:00
|
|
|
/src/locking/test_libvirt_sanlock.aug
|
|
|
|
/src/lxc/test_libvirtd_lxc.aug
|
|
|
|
/src/qemu/test_libvirtd_qemu.aug
|
2011-05-06 13:11:32 +00:00
|
|
|
/src/remote/*_client_bodies.h
|
|
|
|
/src/remote/*_protocol.[ch]
|
2011-09-22 10:51:55 +00:00
|
|
|
/src/rpc/virkeepaliveprotocol.[ch]
|
2010-12-06 17:03:10 +00:00
|
|
|
/src/rpc/virnetprotocol.[ch]
|
2012-05-29 21:49:13 +00:00
|
|
|
/src/test_libvirt*.aug
|
2011-07-21 07:32:34 +00:00
|
|
|
/src/util/virkeymaps.h
|
2012-02-03 21:30:06 +00:00
|
|
|
/src/virt-aa-helper
|
2010-11-16 19:29:09 +00:00
|
|
|
/tests/*.log
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/*.pid
|
|
|
|
/tests/*xml2*test
|
|
|
|
/tests/commandhelper
|
2012-02-06 17:27:40 +00:00
|
|
|
/tests/commandtest
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/conftest
|
2010-12-01 23:48:19 +00:00
|
|
|
/tests/cputest
|
2011-09-22 20:29:00 +00:00
|
|
|
/tests/domainsnapshotxml2xmltest
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/esxutilstest
|
|
|
|
/tests/eventtest
|
2011-04-18 15:30:49 +00:00
|
|
|
/tests/hashtest
|
2011-06-30 18:13:51 +00:00
|
|
|
/tests/jsontest
|
2012-04-13 08:55:15 +00:00
|
|
|
/tests/libvirtdconftest
|
2011-06-24 21:30:00 +00:00
|
|
|
/tests/networkxml2argvtest
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/nodeinfotest
|
2010-11-16 19:29:09 +00:00
|
|
|
/tests/nwfilterxml2xmltest
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/object-locking
|
|
|
|
/tests/object-locking-files.txt
|
|
|
|
/tests/object-locking.cm[ix]
|
2011-05-31 17:35:32 +00:00
|
|
|
/tests/openvzutilstest
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/qemuargv2xmltest
|
|
|
|
/tests/qemuhelptest
|
2012-02-26 00:48:02 +00:00
|
|
|
/tests/qemumonitortest
|
2011-10-19 19:49:59 +00:00
|
|
|
/tests/qemuxmlnstest
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/qparamtest
|
|
|
|
/tests/reconnect
|
|
|
|
/tests/secaatest
|
|
|
|
/tests/seclabeltest
|
|
|
|
/tests/sexpr2xmltest
|
Prevent crash from dlclose() of libvirt.so
When libvirt calls virInitialize it creates a thread local
for the virErrorPtr storage, and registers a callback to
cleanup memory when a thread exits. When libvirt is dlclose()d
or otherwise made non-resident, the callback function is
removed from memory, but the thread local may still exist
and if a thread later exists, it will invoke the callback
and SEGV. There may also be other thread locals with callbacks
pointing to libvirt code, so it is in general never safe to
unload libvirt.so from memory once initialized.
To allow dlclose() to succeed, but keep libvirt.so resident
in memory, link with '-z nodelete'. This issue was first
found with the libvirt CIM provider, but can potentially
hit many of the dynamic language bindings which all ultimately
involve dlopen() in some way, either on libvirt.so itself,
or on the glue code for the binding which in turns links
to libvirt
* configure.ac, src/Makefile.am: Ensure libvirt.so is linked
with -z nodelete
* cfg.mk, .gitignore, tests/Makefile.am, tests/shunloadhelper.c,
tests/shunloadtest.c: A test case to unload libvirt while
a thread is still running.
2011-09-01 16:57:06 +00:00
|
|
|
/tests/shunloadtest
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/sockettest
|
|
|
|
/tests/ssh
|
|
|
|
/tests/statstest
|
|
|
|
/tests/utiltest
|
2012-03-23 22:04:18 +00:00
|
|
|
/tests/virauthconfigtest
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/virbuftest
|
2012-05-25 02:43:43 +00:00
|
|
|
/tests/virdrivermoduletest
|
2012-01-25 16:38:37 +00:00
|
|
|
/tests/virhashtest
|
2012-03-23 22:04:18 +00:00
|
|
|
/tests/virkeyfiletest
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/virnet*test
|
|
|
|
/tests/virshtest
|
2012-02-06 17:27:40 +00:00
|
|
|
/tests/virtimetest
|
2012-03-23 22:04:18 +00:00
|
|
|
/tests/viruritest
|
2012-02-03 21:30:06 +00:00
|
|
|
/tests/vmx2xmltest
|
|
|
|
/tests/xencapstest
|
|
|
|
/tests/xmconfigtest
|
|
|
|
/tools/*.[18]
|
|
|
|
/tools/libvirt-guests.init
|
2012-06-26 16:13:46 +00:00
|
|
|
/tools/libvirt-guests.service
|
2012-02-03 21:30:06 +00:00
|
|
|
/tools/virsh
|
|
|
|
/tools/virsh-*-edit.c
|
|
|
|
/tools/virt-*-validate
|
|
|
|
/tools/virt-sanlock-cleanup
|
2010-11-16 19:29:09 +00:00
|
|
|
/update.log
|
2008-10-17 10:03:15 +00:00
|
|
|
Makefile
|
2008-10-28 17:47:12 +00:00
|
|
|
Makefile.in
|
2010-12-01 23:48:19 +00:00
|
|
|
TAGS
|
2008-10-28 17:47:12 +00:00
|
|
|
coverage
|
2009-07-03 14:32:17 +00:00
|
|
|
cscope.files
|
|
|
|
cscope.out
|
2008-10-28 17:47:12 +00:00
|
|
|
results.log
|
|
|
|
stamp-h
|
|
|
|
stamp-h.in
|
|
|
|
stamp-h1
|
2011-07-28 12:55:21 +00:00
|
|
|
!/gnulib/lib/Makefile.am
|
|
|
|
!/gnulib/tests/Makefile.am
|
2011-04-05 19:06:31 +00:00
|
|
|
!/m4/virt-*.m4
|
|
|
|
!/po/*.po
|
|
|
|
!/po/POTFILES.in
|
|
|
|
!/po/libvirt.pot
|