forked from pool/systemd
6a62c05e32
- Add upstream patches as real fixes 0001-activate-fix-fd-leak-in-do_accept.patch 0002-analyze-avoid-a-null-dereference.patch 0003-analyze-fix-mem-leak.patch 0004-backlight-Avoid-error-when-state-restore-is-disabled.patch 0005-bus-avoid-using-m-kdbus-after-freeing-it.patch 0006-bus-unref-buscreds-on-failure.patch 0007-core-fix-a-potential-mem-leak.patch 0008-core-smack-setup-Actually-allow-for-succesfully-load.patch 0009-journal-do-not-leak-mmaps-on-OOM.patch 0010-manager-use-correct-cleanup-function.patch - Intergrate the work of Robert and rename the patch 1068-udev-remove-userspace-firmware-loading-support.patch to 1078-udev-remove-userspace-firmware-loading-support.patch Also add patch 1079-udev-remove-userspace-firmware-loading-support.patch to apply the same change for opensuse 13.2 and above - Add upstream patch 0001-systemctl-allow-to-change-the-default-target-without.patch to allow to override default target without --force (bnc#896664) - Add upstream patches for udev 1068-udev-net_setup_link-export-the-.link-filename-applie.patch 1069-rules-net-setup-link-preserve-ID_NET_LINK_FILE-and-I.patch 1070-rules-net-setup-link-remove-stray-linebreak.patch 1071-udev-import-the-full-db-on-MOVE-events-for-devices-w.patch 1072-udev-netif_rename-don-t-log-to-kmsg.patch 1073-udev-drop-print_kmsg.patch 1074-udev-fix-copy-paste-error-in-log-message.patch OBS-URL: https://build.opensuse.org/request/show/249581 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemd?expand=0&rev=206
55 lines
2.1 KiB
Diff
55 lines
2.1 KiB
Diff
From b081b27e1433cdc7ac72b25ae8b4db887d79187f Mon Sep 17 00:00:00 2001
|
|
From: Tom Gundersen <teg@jklm.no>
|
|
Date: Tue, 9 Sep 2014 12:23:19 +0200
|
|
Subject: [PATCH] udev: import the full db on MOVE events for devices without
|
|
dev_t
|
|
|
|
---
|
|
rules/80-net-setup-link.rules | 2 --
|
|
src/udev/udev-event.c | 16 ++++++++++++++++
|
|
2 files changed, 16 insertions(+), 2 deletions(-)
|
|
|
|
diff --git rules/80-net-setup-link.rules rules/80-net-setup-link.rules
|
|
index 4207694..6e411a9 100644
|
|
--- rules/80-net-setup-link.rules
|
|
+++ rules/80-net-setup-link.rules
|
|
@@ -4,8 +4,6 @@ SUBSYSTEM!="net", GOTO="net_setup_link_end"
|
|
|
|
IMPORT{builtin}="path_id"
|
|
|
|
-ACTION=="move", IMPORT{db}="ID_NET_DRIVER", IMPORT{db}="ID_NET_LINK_FILE", IMPORT{db}="ID_NET_NAME"
|
|
-
|
|
ACTION!="add", GOTO="net_setup_link_end"
|
|
|
|
IMPORT{builtin}="net_setup_link"
|
|
diff --git src/udev/udev-event.c src/udev/udev-event.c
|
|
index 00cd6d4..18b92ca 100644
|
|
--- src/udev/udev-event.c
|
|
+++ src/udev/udev-event.c
|
|
@@ -805,6 +805,22 @@ void udev_event_execute_rules(struct udev_event *event,
|
|
udev_watch_end(event->udev, event->dev_db);
|
|
}
|
|
|
|
+ if (major(udev_device_get_devnum(dev)) == 0 &&
|
|
+ streq(udev_device_get_action(dev), "move")) {
|
|
+ struct udev_list_entry *entry;
|
|
+
|
|
+ for ((entry = udev_device_get_properties_list_entry(event->dev_db)); entry; entry = udev_list_entry_get_next(entry)) {
|
|
+ const char *key, *value;
|
|
+ struct udev_list_entry *property;
|
|
+
|
|
+ key = udev_list_entry_get_name(entry);
|
|
+ value = udev_list_entry_get_value(entry);
|
|
+
|
|
+ property = udev_device_add_property(event->dev, key, value);
|
|
+ udev_list_entry_set_num(property, true);
|
|
+ }
|
|
+ }
|
|
+
|
|
udev_rules_apply_to_event(rules, event, timeout_usec, sigmask);
|
|
|
|
/* rename a new network interface, if needed */
|
|
--
|
|
1.7.9.2
|
|
|