Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:dirkmueller:acdc:as_python3_module
libvirt.11701
67c56f6e-libxl-logfd-leak-fix.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 67c56f6e-libxl-logfd-leak-fix.patch of Package libvirt.11701
commit 67c56f6e65b9cd2681ef1bc61d8b51cbc543fa42 Author: Jim Fehlig <jfehlig@suse.com> Date: Thu May 31 15:41:37 2018 -0600 libxl: fix leaking logfile fds Per-domain log files were introduced in commit a30b08b7179. The FILE objects associated with these log files are stored in a hash table using domid as a key. When a domain is shutdown, destroyed, or otherwise powered-off, the FILE object is removed from the hash table, where the free function will close the FILE. Unfortunately the call to remove the FILE from the hash table occurs after setting domid=-1 in the libxlDomainCleanup() function. The object is never removed from the hash table, the free function is never called, and the underlying fd is leaked. Fix by removing the FILE object from the hash table before setting domid=-1. Signed-off-by: Jim Fehlig <jfehlig@suse.com> Reviewed-by: Ján Tomko <jtomko@redhat.com> Index: libvirt-4.0.0/src/libxl/libxl_domain.c =================================================================== --- libvirt-4.0.0.orig/src/libxl/libxl_domain.c +++ libvirt-4.0.0/src/libxl/libxl_domain.c @@ -763,6 +763,7 @@ libxlDomainCleanup(libxlDriverPrivatePtr VIR_WARN("Unable to release lease on %s", vm->def->name); VIR_DEBUG("Preserving lock state '%s'", NULLSTR(priv->lockState)); + libxlLoggerCloseFile(cfg->logger, vm->def->id); vm->def->id = -1; if (priv->deathW) { @@ -817,8 +818,6 @@ libxlDomainCleanup(libxlDriverPrivatePtr VIR_FREE(xml); } - libxlLoggerCloseFile(cfg->logger, vm->def->id); - virDomainObjRemoveTransientDef(vm); virObjectUnref(cfg); }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor