]> git.puffer.fish Git - matthieu/frr.git/commitdiff
zebra: Ignore cleanup for now
authorStephen Worley <sworley@cumulusnetworks.com>
Tue, 14 May 2019 23:12:53 +0000 (16:12 -0700)
committerStephen Worley <sworley@cumulusnetworks.com>
Fri, 25 Oct 2019 15:13:40 +0000 (11:13 -0400)
Ignore the cleanup for now until we get the timing
figured out without using the kernel nexthop object API.

Signed-off-by: Stephen Worley <sworley@cumulusnetworks.com>
zebra/zebra_nhg.c

index 26db14036e41c6fc3ad0c8c437328416626b2fc1..2d9ed8f69f6b6f2b7005ba5e54684e65385208ab 100644 (file)
@@ -1664,6 +1664,9 @@ static void zebra_nhg_uninstall_created(struct hash_bucket *bucket, void *arg)
  */
 void zebra_nhg_cleanup_tables(void)
 {
+       // TODO: These should only be uninstalled via route cleanup
+       // path?
+       return;
        hash_iterate(zrouter.nhgs, zebra_nhg_uninstall_created, NULL);
 }