Blame SOURCES/1001-device-fix-reapply-of-MTU-rh1702657.patch

a31528
From 89af6353940018621493764927a3f10335084628 Mon Sep 17 00:00:00 2001
a31528
From: Beniamino Galvani <bgalvani@redhat.com>
a31528
Date: Fri, 26 Apr 2019 10:49:21 +0200
a31528
Subject: [PATCH] device: fix reapply of MTU
a31528
a31528
When we set the MTU on the link we remember its previous source
a31528
(ip-config, parent-device or connection profile) and don't change it
a31528
again afterwards to avoid interfering with user's manual changes. The
a31528
only exceptions when we change it again are (1) if the parent device
a31528
MTU changes and (2) if the new MTU has higher priority than the one
a31528
previously set.
a31528
a31528
To allow a live reapply of the MTU property we also need to clear the
a31528
saved source, or the checks described above will prevent setting the
a31528
new value.
a31528
a31528
Fixes: 2f8917237fdf ('device: rework mtu priority handling')
a31528
a31528
https://bugzilla.redhat.com/show_bug.cgi?id=1702657
a31528
(cherry picked from commit 4ed72fa658c03790700ba9084e9328fe38afdee9)
a31528
(cherry picked from commit e738479bdd714f754aa311bada3315147efab376)
a31528
---
a31528
 src/devices/nm-device.c | 3 +++
a31528
 1 file changed, 3 insertions(+)
a31528
a31528
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
a31528
index b909f0ddf..8ae64b968 100644
a31528
--- a/src/devices/nm-device.c
a31528
+++ b/src/devices/nm-device.c
a31528
@@ -11312,6 +11312,9 @@ check_and_reapply_connection (NMDevice *self,
a31528
 	s_ip6_old = nm_connection_get_setting_ip6_config (con_old);
a31528
 	s_ip6_new = nm_connection_get_setting_ip6_config (con_new);
a31528
 
a31528
+	/* Allow reapply of MTU */
a31528
+	priv->mtu_source = NM_DEVICE_MTU_SOURCE_NONE;
a31528
+
a31528
 	nm_device_reactivate_ip4_config (self, s_ip4_old, s_ip4_new);
a31528
 	nm_device_reactivate_ip6_config (self, s_ip6_old, s_ip6_new);
a31528
 
a31528
-- 
a31528
2.20.1
a31528