summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-09-08 15:07:49 +0200
committerThomas Haller <thaller@redhat.com>2020-09-11 16:18:34 +0200
commit3b8b683f8aa017642a04c4c446cb76a65ca97170 (patch)
tree3811698f9b8f2256fc9fc208890de56fa56c6341
parent16e59cc37c2e66afb1e638d14e306343ca5b54a4 (diff)
downloadNetworkManager-3b8b683f8aa017642a04c4c446cb76a65ca97170.tar.gz
l3cfg: add nm_l3cfg_get_pllink() helper
NML3Cfg already keeps track of the current NMPlatformLink object. Allow accessing it directly from an NML3Cfg instance, which saves a cache lookup from NMPlatform.
-rw-r--r--src/nm-l3cfg.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/nm-l3cfg.h b/src/nm-l3cfg.h
index 4a3bab1111..13830073a2 100644
--- a/src/nm-l3cfg.h
+++ b/src/nm-l3cfg.h
@@ -87,6 +87,28 @@ nm_l3cfg_get_ifname (const NML3Cfg *self)
return nmp_object_link_get_ifname (self->priv.pllink);
}
+static inline const NMPObject *
+nm_l3cfg_get_plobj (const NML3Cfg *self)
+{
+ if (!self)
+ return NULL;
+
+ nm_assert (NM_IS_L3CFG (self));
+
+ return self->priv.pllink;
+}
+
+static inline const NMPlatformLink *
+nm_l3cfg_get_pllink (const NML3Cfg *self)
+{
+ if (!self)
+ return NULL;
+
+ nm_assert (NM_IS_L3CFG (self));
+
+ return NMP_OBJECT_CAST_LINK (self->priv.pllink);
+}
+
static inline NMNetns *
nm_l3cfg_get_netns (const NML3Cfg *self)
{