From 3b8b683f8aa017642a04c4c446cb76a65ca97170 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Tue, 8 Sep 2020 15:07:49 +0200 Subject: [PATCH] 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. --- src/nm-l3cfg.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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) {