diff options
author | Donald Sharp <sharpd@nvidia.com> | 2022-08-09 19:09:16 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2022-08-10 13:14:43 +0200 |
commit | a310ebc114af2f211e493ec29817b3debab2561a (patch) | |
tree | fda48a45b2f41316b48488affe0e515f32417efa /zebra/zebra_router.c | |
parent | zebra: System routes should be processed the same time as kernel (diff) | |
download | frr-a310ebc114af2f211e493ec29817b3debab2561a.tar.xz frr-a310ebc114af2f211e493ec29817b3debab2561a.zip |
zebra: Combine meta_queue_free and meta_queue_vrf_free functions
These functions essentially do the same thing. Combine them
for the goodness of mankind.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_router.c')
-rw-r--r-- | zebra/zebra_router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_router.c b/zebra/zebra_router.c index 24e71b4a8..c66849863 100644 --- a/zebra/zebra_router.c +++ b/zebra/zebra_router.c @@ -239,7 +239,7 @@ void zebra_router_terminate(void) zebra_router_free_table(zrt); work_queue_free_and_null(&zrouter.ribq); - meta_queue_free(zrouter.mq); + meta_queue_free(zrouter.mq, NULL); zebra_vxlan_disable(); zebra_mlag_terminate(); |