summaryrefslogtreecommitdiff
path: root/src/device.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/device.c')
-rw-r--r--src/device.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/device.c b/src/device.c
index 957bc2d6b5..b36bfc1ad1 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;