0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-03 07:31:54 +00:00

Merge commit '5973031460372a4d695c44a9f398d516b0e5bac1' into mq-merge-step-1

This commit is contained in:
Maria Matejka 2024-01-28 14:45:04 +01:00
commit bd56a41b3a
4 changed files with 18 additions and 3 deletions

View File

@ -476,6 +476,16 @@ test-kernel-learn:
variables:
TEST_NAME: cf-kernel-learn
test-mpls-bgp:
<<: *test-base
variables:
TEST_NAME: cf-mpls-bgp
test-mpls-bgp-l3vpn:
<<: *test-base
variables:
TEST_NAME: cf-mpls-bgp-l3vpn
.build-birdlab-base: &build-birdlab-base
stage: build

View File

@ -1059,10 +1059,13 @@ mpls_announce_fec(struct mpls_fec_map *m, struct mpls_fec *fec, const rta *src)
const u32 *labels = &src->nh.label[src->nh.labels - src->nh.labels_orig];
mpls_label_stack ms;
/* Apply the hostentry with the original labelstack */
/* Reconstruct the original labelstack */
ms.len = src->nh.labels_orig;
memcpy(ms.stack, labels, src->nh.labels_orig * sizeof(u32));
rta_apply_hostentry(a, src->hostentry, &ms);
/* The same hostentry, but different dependent table */
struct hostentry *s = src->hostentry;
rta_set_recursive_next_hop(m->channel->table, a, s->owner, s->addr, s->link, &ms);
}
net_addr_mpls n = NET_ADDR_MPLS(fec->label);

View File

@ -246,7 +246,8 @@ struct hostentry {
ip_addr addr; /* IP address of host, part of key */
ip_addr link; /* (link-local) IP address of host, used as gw
if host is directly attached */
struct rtable *tab; /* Dependent table, part of key */
rtable *tab; /* Dependent table, part of key */
rtable *owner; /* Nexthop owner table */
struct hostentry *next; /* Next in hash chain */
unsigned hash_key; /* Hash key */
unsigned uc; /* Use count */

View File

@ -3477,6 +3477,7 @@ rt_get_hostentry(rtable *tab, ip_addr a, ip_addr ll, rtable *dep)
return he;
he = hc_new_hostentry(hc, tab->rp, a, link, dep, k);
he->owner = tab;
rt_update_hostentry(tab, he);
return he;
}