Re: bgpd replace rib_entry prefix list with tailq

2022-03-22 Thread Claudio Jeker
On Tue, Mar 22, 2022 at 11:40:12AM +0100, Theo Buehler wrote: > On Tue, Mar 22, 2022 at 10:55:48AM +0100, Claudio Jeker wrote: > > As mentioned I need a TAILQ for the list of prefixes that belong to a rib > > entry. Mainly because I need TAILQ_PREV. This diff does this replacement. > > I did not ch

Re: bgpd replace rib_entry prefix list with tailq

2022-03-22 Thread Theo Buehler
On Tue, Mar 22, 2022 at 10:55:48AM +0100, Claudio Jeker wrote: > As mentioned I need a TAILQ for the list of prefixes that belong to a rib > entry. Mainly because I need TAILQ_PREV. This diff does this replacement. > I did not change the nexhtop LIST of prefixes to a TAILQ. Maybe something > to con

bgpd replace rib_entry prefix list with tailq

2022-03-22 Thread Claudio Jeker
As mentioned I need a TAILQ for the list of prefixes that belong to a rib entry. Mainly because I need TAILQ_PREV. This diff does this replacement. I did not change the nexhtop LIST of prefixes to a TAILQ. Maybe something to consider but there is no real need for that. This is mostly a mechanical