From: Lennart Poettering Date: Thu, 27 Jun 2013 22:41:24 +0000 (+0200) Subject: unit: make sure the dropins we write are high-priority X-Git-Tag: v205~61 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=241da3287d0c16f79e2f415f17543599b3e73c85;hp=74c964d369b11bbf465c140c3f2dfcde2c7f5977 unit: make sure the dropins we write are high-priority --- diff --git a/TODO b/TODO index c34f1dab0..c72921507 100644 --- a/TODO +++ b/TODO @@ -28,6 +28,8 @@ Fedora 19: Features: +* make BlockIODeviceWeight=, BlockIODeviceBandwidth= runtime settable + * split up BlockIOWeight= and BlockIODeviceWeight= * how to reset dynamically changed attributes sanely? diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c index 353cb2286..c51226590 100644 --- a/src/core/dbus-manager.c +++ b/src/core/dbus-manager.c @@ -178,8 +178,8 @@ " \n" \ " \n" \ " \n" \ - " \n" \ - " \n" \ + " \n" \ + " \n" \ " \n" \ " \n" \ " \n" \ diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c index 1611da017..b3724b679 100644 --- a/src/core/dbus-unit.c +++ b/src/core/dbus-unit.c @@ -783,7 +783,6 @@ int bus_unit_set_properties(Unit *u, DBusMessageIter *iter, UnitSetPropertiesMod return -EINVAL; dbus_message_iter_recurse(iter, &sub); - for (;;) { DBusMessageIter sub2, sub3; const char *name; @@ -830,7 +829,7 @@ int bus_unit_set_properties(Unit *u, DBusMessageIter *iter, UnitSetPropertiesMod if (n > 0 && UNIT_VTABLE(u)->bus_commit_properties) UNIT_VTABLE(u)->bus_commit_properties(u); - return 0; + return n; } const BusProperty bus_unit_properties[] = { diff --git a/src/core/dbus-unit.h b/src/core/dbus-unit.h index 2fd56f25c..1b42757b4 100644 --- a/src/core/dbus-unit.h +++ b/src/core/dbus-unit.h @@ -62,7 +62,7 @@ " \n" \ " \n" \ " \n" \ - " \n" \ + " \n" \ " \n" \ " \n" \ " \n" \ diff --git a/src/core/unit.c b/src/core/unit.c index 211704e23..afeb15c15 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2675,7 +2675,7 @@ static int drop_in_file(Unit *u, UnitSetPropertiesMode mode, const char *name, c if (!p) return -ENOMEM; - q = strjoin(p, "/50-", name, ".conf", NULL); + q = strjoin(p, "/90-", name, ".conf", NULL); if (!q) { free(p); return -ENOMEM; @@ -2733,9 +2733,9 @@ int unit_remove_drop_in(Unit *u, UnitSetPropertiesMode mode, const char *name) { r = drop_in_file(u, mode, name, &p, &q); if (unlink(q) < 0) - r = -errno; + r = errno == ENOENT ? 0 : -errno; else - r = 0; + r = 1; rmdir(p); return r;