mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-12 09:17:44 +03:00
parent
3f6aef0d02
commit
0da812036f
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user