diff options
author | Tom Gundersen <teg@jklm.no> | 2014-02-18 00:10:08 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-02-18 11:21:22 +0100 |
commit | 4fb7242cbbed0d865eb343548b8f0ee0fee71d85 (patch) | |
tree | b85d087cd059d195e0796cc0cda94140067d8c49 /src/network/networkd-link.c | |
parent | c0c5af00bec95567435bdfb818c69b2b669adfed (diff) |
sd-rtnl-message: store reference to the bus in the message
This mimics the sd-bus api, as we may need it in the future.
Diffstat (limited to 'src/network/networkd-link.c')
-rw-r--r-- | src/network/networkd-link.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c index 9aca1b6477..ec283d5b7b 100644 --- a/src/network/networkd-link.c +++ b/src/network/networkd-link.c @@ -435,7 +435,8 @@ static int link_set_mtu(Link *link, uint32_t mtu) { log_debug_link(link, "setting MTU: %" PRIu32, mtu); - r = sd_rtnl_message_new_link(RTM_SETLINK, link->ifindex, &req); + r = sd_rtnl_message_new_link(link->manager->rtnl, RTM_SETLINK, + link->ifindex, &req); if (r < 0) { log_error_link(link, "Could not allocate RTM_SETLINK message"); return r; @@ -794,7 +795,8 @@ static int link_up(Link *link) { log_debug_link(link, "bringing link up"); - r = sd_rtnl_message_new_link(RTM_SETLINK, link->ifindex, &req); + r = sd_rtnl_message_new_link(link->manager->rtnl, RTM_SETLINK, + link->ifindex, &req); if (r < 0) { log_error_link(link, "Could not allocate RTM_SETLINK message"); return r; @@ -961,7 +963,8 @@ static int link_get(Link *link) { log_debug_link(link, "requesting link status"); - r = sd_rtnl_message_new_link(RTM_GETLINK, link->ifindex, &req); + r = sd_rtnl_message_new_link(link->manager->rtnl, RTM_GETLINK, + link->ifindex, &req); if (r < 0) { log_error_link(link, "Could not allocate RTM_GETLINK message"); return r; |