Fixes flushing of device routes.
This commit is contained in:
parent
ab188fb76d
commit
e14bd38087
1 changed files with 4 additions and 9 deletions
|
@ -575,18 +575,13 @@ krt_flush_routes(struct krt_proto *p)
|
|||
{
|
||||
net *n = (net *) f;
|
||||
rte *e = n->routes;
|
||||
if (e)
|
||||
{
|
||||
rta *a = e->attrs;
|
||||
if ((n->n.flags & KRF_INSTALLED) &&
|
||||
a->source != RTS_DEVICE && a->source != RTS_INHERIT)
|
||||
if (e && (n->n.flags & KRF_INSTALLED))
|
||||
{
|
||||
/* FIXME: this does not work if gw is changed in export filter */
|
||||
krt_replace_rte(p, e->net, NULL, e, NULL);
|
||||
n->n.flags &= ~KRF_INSTALLED;
|
||||
}
|
||||
}
|
||||
}
|
||||
FIB_WALK_END;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue