1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-12 09:17:44 +03:00

networkd: bridge allow AgeingTimeSec to be set 0 (#7021)

Closes #7019.
This commit is contained in:
Susant Sahani 2017-10-11 12:38:05 +05:30 committed by Zbigniew Jędrzejewski-Szmek
parent 3f6aef0d02
commit 0da812036f

View File

@ -91,7 +91,7 @@ static int netdev_bridge_post_create(NetDev *netdev, Link *link, sd_netlink_mess
return log_netdev_error_errno(netdev, r, "Could not append IFLA_BR_MAX_AGE attribute: %m");
}
if (b->ageing_time > 0) {
if (b->ageing_time != USEC_INFINITY) {
r = sd_netlink_message_append_u32(req, IFLA_BR_AGEING_TIME, usec_to_jiffies(b->ageing_time));
if (r < 0)
return log_netdev_error_errno(netdev, r, "Could not append IFLA_BR_AGEING_TIME attribute: %m");
@ -169,6 +169,7 @@ static void bridge_init(NetDev *n) {
b->stp = -1;
b->default_pvid = VLANID_INVALID;
b->forward_delay = USEC_INFINITY;
b->ageing_time = USEC_INFINITY;
}
const NetDevVTable bridge_vtable = {