mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-08 07:37:29 +00:00
zebra: Tell rib_process to actually rethink pbr routes.
When I implemented this code change I was only testing against static routes and with one nexthop. I missed the fact that we needed to tell rib_process to actually rethink the nexthops. Ticket: CM-20274 Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
ebee2bc4c5
commit
4d96fd9feb
@ -561,10 +561,12 @@ static void zebra_rnh_process_pbr_tables(int family,
|
|||||||
* just rethink it. Yes this is a hammer, but
|
* just rethink it. Yes this is a hammer, but
|
||||||
* a small one
|
* a small one
|
||||||
*/
|
*/
|
||||||
if (o_re)
|
if (o_re) {
|
||||||
|
SET_FLAG(o_re->status, ROUTE_ENTRY_CHANGED);
|
||||||
rib_queue_add(o_rn);
|
rib_queue_add(o_rn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void zebra_rnh_process_static_routes(vrf_id_t vrfid, int family,
|
static void zebra_rnh_process_static_routes(vrf_id_t vrfid, int family,
|
||||||
|
Loading…
Reference in New Issue
Block a user