70c63e98f9
- mark more subpackages as !bootstrap for systemd-mini usage. - spec : remove --with-firmware-path, firmware loader was removed in v217 - spec: remove --disable-multi-seat-x, gone.(fixed in xorg) - spec: Do not enable systemd-readahead-collect.service and systemd-readahead-replay.service as these do not exist anymore. - spec: drop timedate-add-support-for-openSUSE-version-of-etc-sysconfig.patch Yast was fixed to write all timezone changes exactly how timedated expects things to be done. - spec: remove handle-etc-HOSTNAME.patch, since late 2014 the netcfg package handles the migration from /etc/HOSTNAME to /etc/hostname and owns both files. -spec: remove boot.udev and systemd-journald.init as they currently serve no purpose. - suse-sysv-bootd-support.diff: Remove HAVE_SYSVINIT conditions, we are in sysvcompat-only codepath, also remove the code targetting other distributions, never compiled as the TARGET_$DISTRO macros are never defined. - systemd-powerd-initctl-support.patch guard with HAVE_SYSV_COMPAT - set-and-use-default-logconsole.patch: fix HAVE_SYSV_COMPAT guards - insserv-generator.patch: Only build when sysvcompat is enabled - vhangup-on-all-consoles.patch add a comment indicating this is a workaround for a kernel bug. - spec: Add option to allow disabling sysvinit compat at build time. - spec: Add option to enable resolved at build time. - spec: Remove all %ifs for !factory products, current systemd releases can neither be built nor installed in older products without upgrading several components of the base system. (removed: 1008-add-msft-compability-rules.patch was only for =< 13.1) - spec: remove all dummy "aliases" to /etc/init.d, that made sense only when those init scripts still existed. (dummy localfs.service source: gone) OBS-URL: https://build.opensuse.org/request/show/286653 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemd?expand=0&rev=215
78 lines
2.8 KiB
Diff
78 lines
2.8 KiB
Diff
From: Robert Milasan <rmilasan@suse.com>
|
|
Cc: Werner Fink <werner@suse.de>
|
|
Subject: udev always rename network
|
|
|
|
Date: Thu, 28 Mar 2013 09:24:43 +0000
|
|
udev: ensure that the network interfaces are renamed even if they exist (bnc#809843).
|
|
|
|
Date: Tue, 4 Mar 2014 10:29:21 +0000
|
|
Port the patch of Robert to systemd v210 and test it out.
|
|
|
|
---
|
|
src/udev/udev-event.c | 41 +++++++++++++++++++++++++++++++++++++----
|
|
1 file changed, 37 insertions(+), 4 deletions(-)
|
|
|
|
|
|
Index: systemd-218/src/udev/udev-event.c
|
|
===================================================================
|
|
--- systemd-218.orig/src/udev/udev-event.c
|
|
+++ systemd-218/src/udev/udev-event.c
|
|
@@ -767,20 +767,53 @@ out:
|
|
static int rename_netif(struct udev_event *event) {
|
|
struct udev_device *dev = event->dev;
|
|
char name[IFNAMSIZ];
|
|
+ char interim[IFNAMSIZ], *ptr = &interim[0];
|
|
const char *oldname;
|
|
- int r;
|
|
+ int r, loop;
|
|
|
|
oldname = udev_device_get_sysname(dev);
|
|
|
|
strscpy(name, IFNAMSIZ, event->name);
|
|
|
|
r = rtnl_set_link_name(&event->rtnl, udev_device_get_ifindex(dev), name);
|
|
- if (r < 0)
|
|
+ if (r == 0) {
|
|
+ log_info("renamed network interface %s to %s\n", oldname, name);
|
|
+ return r;
|
|
+ } else if (r != -EEXIST) {
|
|
return log_error_errno(r, "Error changing net interface name '%s' to '%s': %m", oldname, name);
|
|
+ }
|
|
|
|
- log_debug("renamed network interface '%s' to '%s'", oldname, name);
|
|
+ /* free our own name, another process may wait for us */
|
|
+ strpcpyf(&ptr, IFNAMSIZ, "rename%u", udev_device_get_ifindex(dev));
|
|
|
|
- return 0;
|
|
+ r = rtnl_set_link_name(&event->rtnl, udev_device_get_ifindex(dev), interim);
|
|
+ if (r < 0) {
|
|
+ log_error("error changing net interface name %s to %s: %s",
|
|
+ oldname, interim, strerror(-r));
|
|
+ return r;
|
|
+ }
|
|
+
|
|
+ /* log temporary name */
|
|
+ log_info("renamed network interface %s to %s\n", oldname, interim);
|
|
+
|
|
+ loop = 90 * 20;
|
|
+ while (loop--) {
|
|
+ const struct timespec duration = { 0, 1000 * 1000 * 1000 / 20 };
|
|
+ nanosleep(&duration, NULL);
|
|
+
|
|
+ r = rtnl_set_link_name(&event->rtnl, udev_device_get_ifindex(dev), name);
|
|
+ if (r == 0) {
|
|
+ log_info("renamed network interface %s to %s\n", interim, name);
|
|
+ break;
|
|
+ }
|
|
+
|
|
+ if (r != -EEXIST) {
|
|
+ log_error("error changing net interface name %s to %s: %s",
|
|
+ interim, name, strerror(-r));
|
|
+ break;
|
|
+ }
|
|
+ }
|
|
+ return r;
|
|
}
|
|
|
|
void udev_event_execute_rules(struct udev_event *event,
|