summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2022-09-01 10:42:31 +0200
committerLubomir Rintel <lkundrak@v3.sk>2022-09-02 12:51:09 +0200
commit38251ad59f41ea2b5ec66febeb82948e15f10dbb (patch)
tree8a5ee42ceb97ec57f4a714e7507176ae7a49d914
parentdb88bc50905f7f4ad61c81a4b7541279e7a92cca (diff)
downloadNetworkManager-38251ad59f41ea2b5ec66febeb82948e15f10dbb.tar.gz
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
-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