import NetworkManager-1.40.0-2.el8_7
This commit is contained in:
parent
658542abfe
commit
150055e042
@ -0,0 +1,59 @@
|
|||||||
|
From e6e54f331776f7832e2a359658e8740bffab60ad Mon Sep 17 00:00:00 2001
|
||||||
|
From: Beniamino Galvani <bgalvani@redhat.com>
|
||||||
|
Date: Tue, 27 Sep 2022 15:58:10 +0200
|
||||||
|
Subject: [PATCH] Revert "device: restart DHCP when the MAC changes"
|
||||||
|
|
||||||
|
The commit causes problems with bridges. When a new port is attached
|
||||||
|
the MAC of the bridge possibly changes and if we restart DHCP the
|
||||||
|
bridge will get a different IP address.
|
||||||
|
|
||||||
|
Revert the change until a better solution to the original problem is
|
||||||
|
found.
|
||||||
|
|
||||||
|
This reverts commit 905adabdba033bbfc33013d0ad203bd444131dc5.
|
||||||
|
|
||||||
|
https://bugzilla.redhat.com/show_bug.cgi?id=2124443
|
||||||
|
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1401
|
||||||
|
(cherry picked from commit 98197386078a471ed993d009e34e08a6aa7c22d9)
|
||||||
|
(cherry picked from commit f9db4f4604e26ff0f769b56b9bef8f7d991d23d9)
|
||||||
|
---
|
||||||
|
src/core/devices/nm-device.c | 9 +++------
|
||||||
|
1 file changed, 3 insertions(+), 6 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/core/devices/nm-device.c b/src/core/devices/nm-device.c
|
||||||
|
index d63b902b16..7585acf4d3 100644
|
||||||
|
--- a/src/core/devices/nm-device.c
|
||||||
|
+++ b/src/core/devices/nm-device.c
|
||||||
|
@@ -6646,7 +6646,6 @@ device_link_changed(gpointer user_data)
|
||||||
|
NMDeviceClass *klass = NM_DEVICE_GET_CLASS(self);
|
||||||
|
NMDevicePrivate *priv = NM_DEVICE_GET_PRIVATE(self);
|
||||||
|
gboolean ip_ifname_changed = FALSE;
|
||||||
|
- gboolean hw_addr_changed;
|
||||||
|
nm_auto_nmpobj const NMPObject *pllink_keep_alive = NULL;
|
||||||
|
const NMPlatformLink *pllink;
|
||||||
|
const char *str;
|
||||||
|
@@ -6693,9 +6692,9 @@ device_link_changed(gpointer user_data)
|
||||||
|
if (ifindex == nm_device_get_ip_ifindex(self))
|
||||||
|
_stats_update_counters_from_pllink(self, pllink);
|
||||||
|
|
||||||
|
- had_hw_addr = (priv->hw_addr != NULL);
|
||||||
|
- hw_addr_changed = nm_device_update_hw_address(self);
|
||||||
|
- got_hw_addr = (!had_hw_addr && priv->hw_addr);
|
||||||
|
+ had_hw_addr = (priv->hw_addr != NULL);
|
||||||
|
+ nm_device_update_hw_address(self);
|
||||||
|
+ got_hw_addr = (!had_hw_addr && priv->hw_addr);
|
||||||
|
nm_device_update_permanent_hw_address(self, FALSE);
|
||||||
|
|
||||||
|
if (pllink->name[0] && !nm_streq(priv->iface, pllink->name)) {
|
||||||
|
@@ -6746,8 +6745,6 @@ device_link_changed(gpointer user_data)
|
||||||
|
/* Update DHCP, etc, if needed */
|
||||||
|
if (ip_ifname_changed)
|
||||||
|
nm_device_update_dynamic_ip_setup(self, "IP interface changed");
|
||||||
|
- else if (hw_addr_changed)
|
||||||
|
- nm_device_update_dynamic_ip_setup(self, "hw-address changed");
|
||||||
|
|
||||||
|
was_up = priv->up;
|
||||||
|
priv->up = NM_FLAGS_HAS(pllink->n_ifi_flags, IFF_UP);
|
||||||
|
--
|
||||||
|
2.37.3
|
||||||
|
|
@ -6,7 +6,7 @@
|
|||||||
%global epoch_version 1
|
%global epoch_version 1
|
||||||
%global real_version 1.40.0
|
%global real_version 1.40.0
|
||||||
%global rpm_version %{real_version}
|
%global rpm_version %{real_version}
|
||||||
%global release_version 1
|
%global release_version 2
|
||||||
%global snapshot %{nil}
|
%global snapshot %{nil}
|
||||||
%global git_sha %{nil}
|
%global git_sha %{nil}
|
||||||
%global bcond_default_debug 0
|
%global bcond_default_debug 0
|
||||||
@ -195,7 +195,7 @@ Patch2: 0002-firewall-Default-to-iptables-backend-to-preserve-behavior.patch
|
|||||||
Patch3: 0003-order-ipv6-addresses.patch
|
Patch3: 0003-order-ipv6-addresses.patch
|
||||||
|
|
||||||
# Bugfixes that are only relevant until next rebase of the package.
|
# Bugfixes that are only relevant until next rebase of the package.
|
||||||
# Patch1001: 1001-some.patch
|
Patch1001: 1001-revert-restart-DHCP-when-MAC-changes-rh2124443.patch
|
||||||
|
|
||||||
Requires(post): systemd
|
Requires(post): systemd
|
||||||
%if 0%{?fedora} || 0%{?rhel} >= 8
|
%if 0%{?fedora} || 0%{?rhel} >= 8
|
||||||
@ -1231,6 +1231,9 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 20 2022 Beniamino Galvani <bgalvani@redhat.com> - 1:1.40.0-2
|
||||||
|
- Don't restart DHCP when MAC changes, to avoid that the IP changes (rh #2124443)
|
||||||
|
|
||||||
* Fri Aug 26 2022 Ana Cabral <acabral@redhat.com> - 1:1.40.0-1
|
* Fri Aug 26 2022 Ana Cabral <acabral@redhat.com> - 1:1.40.0-1
|
||||||
- Update to 1.40.0 release
|
- Update to 1.40.0 release
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user