diff options
author | Maria Matejka <mq@ucw.cz> | 2023-04-04 16:41:55 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2023-04-04 17:00:58 +0200 |
commit | b8a230e478d41def757344bbe1eee7fa886682e5 (patch) | |
tree | 6d6c907275ef2d61884bf3edb7f2b2ac8a6d584d /proto/babel | |
parent | a26d307eabc9d670c8a39ade3b540cabde5851a3 (diff) |
Interface subsystem locking
Diffstat (limited to 'proto/babel')
-rw-r--r-- | proto/babel/babel.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/proto/babel/babel.c b/proto/babel/babel.c index c2de7599..86306180 100644 --- a/proto/babel/babel.c +++ b/proto/babel/babel.c @@ -1944,9 +1944,7 @@ babel_reconfigure_iface(struct babel_proto *p, struct babel_iface *ifa, struct b static void babel_reconfigure_ifaces(struct babel_proto *p, struct babel_config *cf) { - struct iface *iface; - - WALK_LIST(iface, iface_list) + IFACE_WALK(iface) { if (p->p.vrf && p->p.vrf != iface->master) continue; |