mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 20:58:44 +00:00
Keep al lSAs invalidated.
This commit is contained in:
parent
54a2178fd4
commit
933bfdde2a
@ -610,13 +610,18 @@ ospf_hash_get(struct top_graph *f, u32 lsa, u32 rtr, u32 type)
|
||||
e = e->next;
|
||||
if (e)
|
||||
return e;
|
||||
|
||||
e = sl_alloc(f->hash_slab);
|
||||
e->color = OUTSPF;
|
||||
e->dist = LSINFINITY;
|
||||
e->nhi = NULL;
|
||||
e->nh = ipa_from_u32(0);
|
||||
e->lsa.id = lsa;
|
||||
e->lsa.rt = rtr;
|
||||
e->lsa.type = type;
|
||||
e->lsa_body = NULL;
|
||||
e->nhi = NULL;
|
||||
e->next = *ee; /* MJ you forgot this :-) */
|
||||
e->next = *ee;
|
||||
*ee = e;
|
||||
if (f->hash_entries++ > f->hash_entries_max)
|
||||
ospf_top_rehash(f, HASH_HI_STEP);
|
||||
|
Loading…
Reference in New Issue
Block a user