forked from pool/systemd
Frederic Crozat
66d91c199e
- version 206 , highlights: * Unit files now understand the new %v specifier which resolves to the kernel version string as returned by "uname-r". * "journalctl -b" may now be used to look for boot output of a specific boot. Try "journalctl -b -1" * Creation of "dead" device nodes has been moved from udev into kmod and tmpfiles. * The udev "keymap" data files and tools to apply keyboard specific mappings of scan to key codes, and force-release scan code lists have been entirely replaced by a udev "keyboard" builtin and a hwdb data file. - remove patches now in upstream - systemd now requires libkmod >=14 and cryptsetup >= 1.6.0 - systemd now require the kmod tool in addition to the library. - version 206 , highlights: * Unit files now understand the new %v specifier which resolves to the kernel version string as returned by "uname-r". * "journalctl -b" may now be used to look for boot output of a specific boot. Try "journalctl -b -1" * Creation of "dead" device nodes has been moved from udev into kmod and tmpfiles. * The udev "keymap" data files and tools to apply keyboard specific mappings of scan to key codes, and force-release scan code lists have been entirely replaced by a udev "keyboard" builtin and a hwdb data file. - remove patches now in upstream - systemd now requires libkmod >=14 and cryptsetup >= 1.6.0 - systemd now require the kmod tool in addition to the library. (forwarded request 184035 from elvigia) OBS-URL: https://build.opensuse.org/request/show/184036 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=416
21 lines
847 B
Diff
21 lines
847 B
Diff
From: Robert Milasan <rmilasan@suse.com>
|
|
Date: Mon, 6 Aug 2012 13:35:34 +0000
|
|
Subject: udev netlink null rules
|
|
|
|
udevd race for netlink events (bnc#774646)
|
|
---
|
|
src/udev/udevd.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- systemd-206.orig/src/udev/udevd.c
|
|
+++ systemd-206/src/udev/udevd.c
|
|
@@ -1337,6 +1337,8 @@ int main(int argc, char *argv[])
|
|
dev = udev_monitor_receive_device(monitor);
|
|
if (dev != NULL) {
|
|
udev_device_set_usec_initialized(dev, now(CLOCK_MONOTONIC));
|
|
+ if (rules == NULL)
|
|
+ rules = udev_rules_new(udev, resolve_names);
|
|
if (event_queue_insert(dev) < 0)
|
|
udev_device_unref(dev);
|
|
}
|