From: Lennart Poettering Date: Mon, 1 Nov 2010 15:09:36 +0000 (+0100) Subject: manager: only minimize impact if we are in fail mode X-Git-Tag: v12~81 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=143072edeabe163377d45dedd252d173a56f6455;hp=21296d4b48d03478942f290397c57007a3c9e40e manager: only minimize impact if we are in fail mode --- diff --git a/TODO b/TODO index fcdf1b5dd..c96827240 100644 --- a/TODO +++ b/TODO @@ -74,6 +74,14 @@ * we now order plymouth after udev-trigger. Can we optimize this? +* disable respawn when we are going down anyway. + +* isolate doesn't kill pending jobs. + +* warum wird fsck-root und plymouth-start.service von bluetooth.target reingezogen? + +* drop tmp.mount + External: * patch kernel for xattr support in /dev, /proc/, /sys and /sys/fs/cgroup. diff --git a/src/manager.c b/src/manager.c index 9fa487701..afd29cf7c 100644 --- a/src/manager.c +++ b/src/manager.c @@ -1133,7 +1133,8 @@ static void transaction_minimize_impact(Manager *m) { j->type == JOB_STOP && UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(j->unit)); changes_existing_job = - j->unit->meta.job && job_type_is_conflicting(j->type, j->unit->meta.job->type); + j->unit->meta.job && + job_type_is_conflicting(j->type, j->unit->meta.job->type); if (!stops_running_service && !changes_existing_job) continue; @@ -1234,7 +1235,7 @@ static int transaction_activate(Manager *m, JobMode mode, DBusError *e) { /* Second step: Try not to stop any running services if * we don't have to. Don't try to reverse running * jobs if we don't have to. */ - if (mode != JOB_ISOLATE) + if (mode == JOB_FAIL) transaction_minimize_impact(m); /* Third step: Drop redundant jobs */