summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2022-09-01 10:42:31 +0200
committerLubomir Rintel <lkundrak@v3.sk>2022-11-28 08:51:44 +0100
commit130691daffddb24043ef81d54d882ea1fe4d5066 (patch)
tree90e7b782a3818bdc529afb6f846ea2b86af114ed
parent25f9adb19e5d741128509deff395efc2aa0d26f4 (diff)
team: trivial: use a variable instead of nm_device_get_ip_iface() calls
This reads a little better and performs marginally better. https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/1361 (cherry picked from commit 38251ad59f41ea2b5ec66febeb82948e15f10dbb)
-rw-r--r--src/core/devices/team/nm-device-team.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/core/devices/team/nm-device-team.c b/src/core/devices/team/nm-device-team.c
index e6d34266b1..65caec887a 100644
--- a/src/core/devices/team/nm-device-team.c
+++ b/src/core/devices/team/nm-device-team.c
@@ -885,8 +885,9 @@ attach_port(NMDevice *device,
static void
detach_port(NMDevice *device, NMDevice *port, gboolean configure)
{
- NMDeviceTeam *self = NM_DEVICE_TEAM(device);
- NMDeviceTeamPrivate *priv = NM_DEVICE_TEAM_GET_PRIVATE(self);
+ NMDeviceTeam *self = NM_DEVICE_TEAM(device);
+ NMDeviceTeamPrivate *priv = NM_DEVICE_TEAM_GET_PRIVATE(self);
+ const char *port_iface = nm_device_get_ip_iface(port);
gboolean do_release, success;
NMSettingTeamPort *s_port;
int ifindex_port;
@@ -902,36 +903,34 @@ detach_port(NMDevice *device, NMDevice *port, gboolean configure)
ifindex_port = nm_device_get_ip_ifindex(port);
if (ifindex_port <= 0) {
- _LOGD(LOGD_TEAM, "team port %s is already detached", nm_device_get_ip_iface(port));
+ _LOGD(LOGD_TEAM, "team port %s is already detached", port_iface);
} else if (do_release) {
success = nm_platform_link_release(nm_device_get_platform(device),
nm_device_get_ip_ifindex(device),
ifindex_port);
if (success)
- _LOGI(LOGD_TEAM, "detached team port %s", nm_device_get_ip_iface(port));
+ _LOGI(LOGD_TEAM, "detached team port %s", port_iface);
else
- _LOGW(LOGD_TEAM, "failed to detach team port %s", nm_device_get_ip_iface(port));
+ _LOGW(LOGD_TEAM, "failed to detach team port %s", port_iface);
/* Kernel team code "closes" the port when releasing it, (which clears
* IFF_UP), so we must bring it back up here to ensure carrier changes and
* other state is noticed by the now-released port.
*/
if (!nm_device_bring_up(port, TRUE, NULL)) {
- _LOGW(LOGD_TEAM,
- "detached team port %s could not be brought up",
- nm_device_get_ip_iface(port));
+ _LOGW(LOGD_TEAM, "detached team port %s could not be brought up", port_iface);
}
nm_clear_g_source(&priv->teamd_read_timeout);
priv->teamd_read_timeout = g_timeout_add_seconds(5, teamd_read_timeout_cb, self);
} else
- _LOGI(LOGD_TEAM, "team port %s was detached", nm_device_get_ip_iface(port));
+ _LOGI(LOGD_TEAM, "team port %s was detached", port_iface);
/* Delete any port configuration we previously set */
if (configure && priv->tdc
&& (s_port = nm_device_get_applied_setting(port, NM_TYPE_SETTING_TEAM_PORT))
&& (nm_setting_team_port_get_config(s_port)))
- teamdctl_port_config_update_raw(priv->tdc, nm_device_get_ip_iface(port), "{}");
+ teamdctl_port_config_update_raw(priv->tdc, port_iface, "{}");
}
static gboolean