[systemd-commits] src/unit.c

Michal Schmidt michich at kemper.freedesktop.org
Mon Dec 5 15:54:34 PST 2011


 src/unit.c |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 9a46fc3b9014de1bf0ed1f3004a536b08a19ebb3
Author: Michal Schmidt <mschmidt at redhat.com>
Date:   Tue Dec 6 00:47:28 2011 +0100

    unit: garbage collect units with load error
    
    Units that failed to load were never cleaned up. It was possible to
    reach the 128K limit of units by attempting to load a bunch of nonsense.
    
    Bug observed by Reartes Guillermo in
    https://bugzilla.redhat.com/show_bug.cgi?id=680122

diff --git a/src/unit.c b/src/unit.c
index 2a549e2..018e986 100644
--- a/src/unit.c
+++ b/src/unit.c
@@ -858,6 +858,7 @@ fail:
         u->meta.load_state = UNIT_ERROR;
         u->meta.load_error = r;
         unit_add_to_dbus_queue(u);
+        unit_add_to_gc_queue(u);
 
         log_debug("Failed to load configuration for %s: %s", u->meta.id, strerror(-r));
 



More information about the systemd-commits mailing list