[systemd-commits] 2 commits - configure.ac Makefile.am src/device.c TODO

Lennart Poettering lennart at kemper.freedesktop.org
Fri Jan 7 17:53:31 PST 2011


 Makefile.am  |    3 +--
 TODO         |    4 ++++
 configure.ac |    2 +-
 src/device.c |    6 ++++--
 4 files changed, 10 insertions(+), 5 deletions(-)

New commits:
commit c292c495fbf67c86a89685b879bd13d7d56b333c
Author: Lennart Poettering <lennart at poettering.net>
Date:   Sat Jan 8 02:34:55 2011 +0100

    build-sys: prepare v16

diff --git a/Makefile.am b/Makefile.am
index 3c10167..91bcb0f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -633,8 +633,7 @@ test_env_replace_LDADD = \
 
 test_strv_SOURCES = \
 	src/test-strv.c \
-	src/specifier.c \
-	src/specifier.h
+	src/specifier.c
 
 test_strv_CFLAGS = \
 	$(AM_CFLAGS)
diff --git a/configure.ac b/configure.ac
index 3127579..e4520e7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@
 
 AC_PREREQ(2.63)
 
-AC_INIT([systemd],[15],[systemd-devel at lists.freedesktop.org])
+AC_INIT([systemd],[16],[systemd-devel at lists.freedesktop.org])
 AC_CONFIG_SRCDIR([src/main.c])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_HEADERS([config.h])

commit 47ae6e6760301ecae086e984b0b23f2db9663b28
Author: Lennart Poettering <lennart at poettering.net>
Date:   Sat Jan 8 02:30:07 2011 +0100

    device: don't warn if we cannot bump the socket buffer

diff --git a/TODO b/TODO
index fd9acdb..8d49810 100644
--- a/TODO
+++ b/TODO
@@ -1,3 +1,7 @@
+* figure out what happened to bluez patch
+
+* in pam_systemd: add option to kill normal user sessions on logout but only those with uid != 0
+
 * introduce StandardOutput=syslog+console and StandardOutput=kmsg+console to support fsck output at boot
 
 * Patch systemd-fsck to use -C and pass console fd to it
diff --git a/src/device.c b/src/device.c
index 957bc2d..b36bfc1 100644
--- a/src/device.c
+++ b/src/device.c
@@ -468,8 +468,10 @@ static int device_enumerate(Manager *m) {
                         goto fail;
                 }
 
-                if (udev_monitor_set_receive_buffer_size(m->udev_monitor, 128*1024*1024) < 0)
-                        log_error("Failed to set udev event buffer size.");
+                /* This will fail if we are unprivileged, but that
+                 * should not matter much, as user instances won't run
+                 * during boot. */
+                udev_monitor_set_receive_buffer_size(m->udev_monitor, 128*1024*1024);
 
                 if (udev_monitor_filter_add_match_tag(m->udev_monitor, "systemd") < 0) {
                         r = -ENOMEM;



More information about the systemd-commits mailing list