[systemd-commits] 2 commits - TODO src/libsystemd
Lennart Poettering
lennart at kemper.freedesktop.org
Fri Jan 17 09:34:46 PST 2014
TODO | 4 ++++
src/libsystemd/bus-message.c | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
New commits:
commit 1ffee377ee6d7ad0d365368b5461748f580296d7
Author: Lukasz Skalski <l.skalski at partner.samsung.com>
Date: Fri Jan 17 18:11:07 2014 +0100
bus: Fix read_word_le() function
diff --git a/src/libsystemd/bus-message.c b/src/libsystemd/bus-message.c
index 0c8604c..1a2039b 100644
--- a/src/libsystemd/bus-message.c
+++ b/src/libsystemd/bus-message.c
@@ -1935,7 +1935,7 @@ static size_t read_word_le(void *p, size_t sz) {
return le16toh(x.u16);
else if (sz == 4)
return le32toh(x.u32);
- else if (sz == 4)
+ else if (sz == 8)
return le64toh(x.u64);
assert_not_reached("unknown word width");
commit 47c94a96df29080f8b3a97e7362df4e9c6ba3265
Author: Lennart Poettering <lennart at poettering.net>
Date: Tue Nov 5 11:53:09 2013 +0100
update TODO
diff --git a/TODO b/TODO
index bb07d92..926c26f 100644
--- a/TODO
+++ b/TODO
@@ -32,6 +32,8 @@ External:
Features:
+* New service property: maximum CPU and wallclock runtime for a service
+
* introduce bus call FreezeUnit(s, b), as well as "systemctl freeze
$UNIT" and "systemctl thaw $UNIT" as wrappers around this. The calls
should SIGSTOP all unit processes in a loop until all processes of
@@ -64,6 +66,8 @@ Features:
* code cleanup
- we probably should replace the left-over uses of strv_append() and replace them by strv_push() or strv_extend()
+* Automatically configure swap partition to use for hibernation by looking for largest swap partition on the root disk?
+
* when we detect low battery and no AC on boot, show pretty splash and refuse boot
* move libasyncns into systemd as libsystemd-asyncns
More information about the systemd-commits
mailing list