mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-07 12:44:55 +00:00
bgpd: Remove extra lock on interior table node
If the radix tree creates an extra interior node in bgp_node_get(), it locks the interior node even though this node is not returned to the caller, so it may never be unlocked. The lock prevents this node from being deleted. * bgpd/bgp_table.c: (bgp_node_get) Remove lock on interior node which prevents proper node deletion
This commit is contained in:
parent
c099baf6f0
commit
25ff1e88bb
@ -350,7 +350,6 @@ bgp_node_get (struct bgp_table *const table, struct prefix *p)
|
|||||||
if (new->p.prefixlen != p->prefixlen)
|
if (new->p.prefixlen != p->prefixlen)
|
||||||
{
|
{
|
||||||
match = new;
|
match = new;
|
||||||
bgp_lock_node (match);
|
|
||||||
new = bgp_node_set (table, p);
|
new = bgp_node_set (table, p);
|
||||||
set_link (match, new);
|
set_link (match, new);
|
||||||
table->count++;
|
table->count++;
|
||||||
|
Loading…
Reference in New Issue
Block a user