socket: disable GC for pre-allocated per-connection service until it is used

This commit is contained in:
Lennart Poettering
2010-08-11 02:07:59 +02:00
parent 4927fcae48
commit 6c073082e7
3 changed files with 8 additions and 0 deletions

View File

@@ -165,6 +165,7 @@ static int socket_instantiate_service(Socket *s) {
if (r < 0)
return r;
u->meta.no_gc = true;
s->service = SERVICE(u);
return 0;
}
@@ -1202,6 +1203,8 @@ static void socket_enter_running(Socket *s, int cfd) {
s->service = NULL;
s->n_accepted ++;
service->meta.no_gc = false;
unit_choose_id(UNIT(service), name);
free(name);

View File

@@ -236,6 +236,9 @@ bool unit_check_gc(Unit *u) {
if (UNIT_VTABLE(u)->no_gc)
return true;
if (u->meta.no_gc)
return true;
if (u->meta.job)
return true;

View File

@@ -208,6 +208,8 @@ struct Meta {
bool in_gc_queue:1;
bool sent_dbus_new_signal:1;
bool no_gc:1;
};
#include "service.h"