Merge pull request #17005 from FRRouting/mergify/bp/stable/9.1/pr-17000

zebra: Fix crash during reconnect (backport #17000)
This commit is contained in:
Donatas Abraitis 2024-10-08 08:13:02 +03:00 committed by GitHub
commit 2ccf9f2fd7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1249,7 +1249,7 @@ static void fpm_enqueue_l3vni_table(struct hash_bucket *bucket, void *arg)
struct zebra_l3vni *zl3vni = bucket->data; struct zebra_l3vni *zl3vni = bucket->data;
fra->zl3vni = zl3vni; fra->zl3vni = zl3vni;
hash_iterate(zl3vni->rmac_table, fpm_enqueue_rmac_table, zl3vni); hash_iterate(zl3vni->rmac_table, fpm_enqueue_rmac_table, fra);
} }
static void fpm_rmac_send(struct event *t) static void fpm_rmac_send(struct event *t)