[systemd-commits] 2 commits - TODO src/core

Lennart Poettering lennart at kemper.freedesktop.org
Tue May 19 07:04:02 PDT 2015


 TODO            |    8 --------
 src/core/unit.h |    2 +-
 2 files changed, 1 insertion(+), 9 deletions(-)

New commits:
commit f8a30ce524df4e2b71c2e3362e2cc83a8dcf41bf
Author: Lennart Poettering <lennart at poettering.net>
Date:   Tue May 19 16:03:01 2015 +0200

    core: use bitfield where possible

diff --git a/src/core/unit.h b/src/core/unit.h
index e0e76e5..3c9a64f 100644
--- a/src/core/unit.h
+++ b/src/core/unit.h
@@ -239,7 +239,7 @@ struct Unit {
         bool cgroup_subtree_mask_valid:1;
 
         /* Did we already invoke unit_coldplug() for this unit? */
-        bool coldplugged;
+        bool coldplugged:1;
 };
 
 struct UnitStatusMessageFormats {

commit 6b83b5e8d4502b459f209b91f130bf0a226adbf8
Author: Lennart Poettering <lennart at poettering.net>
Date:   Tue May 19 16:02:51 2015 +0200

    update TODO

diff --git a/TODO b/TODO
index 83545df..e84c229 100644
--- a/TODO
+++ b/TODO
@@ -19,10 +19,6 @@ External:
 
 * Fedora: add an rpmlint check that verifies that all unit files in the RPM are listed in %systemd_post macros.
 
-* Fedora: move kernel image to /usr/lib/modules/, kernel-install will take care of populating /boot
-
-* Fedora: remove /etc/resolv.conf tmpfiles hack
-
 * wiki: update journal format documentation for lz4 additions
 
 * When lz4 gets an API for lz4 command output, make use of it to
@@ -37,10 +33,6 @@ Before 220:
 * timer units triggering services with failing conditions run busy:
   http://lists.freedesktop.org/archives/systemd-devel/2015-April/030095.html
 
-* whe should apply a stop limit (similar to the existing start limit),
-  so that we don't enter unbounded umount loops:
-  http://lists.freedesktop.org/archives/systemd-devel/2015-April/030224.html
-
 Features:
 
 * logind: follow PropertiesChanged state more closely, to deal with quick logouts and relogins



More information about the systemd-commits mailing list