From: Donald Sharp Date: Thu, 9 May 2019 11:13:01 +0000 (-0400) Subject: zebra: Remove unused zebra_router_score_proto X-Git-Tag: base_7.2~338^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=4bc1617c0ce4232d5ce4f274737135b2a847b399;p=matthieu%2Ffrr.git zebra: Remove unused zebra_router_score_proto With the previous commit, the zebra_router_score_proto function became unnecessary, so let us remove it. Signed-off-by: Donald Sharp --- diff --git a/zebra/zebra_router.c b/zebra/zebra_router.c index 63724fc350..fec2fa21f1 100644 --- a/zebra/zebra_router.c +++ b/zebra/zebra_router.c @@ -117,19 +117,6 @@ struct route_table *zebra_router_get_table(struct zebra_vrf *zvrf, return zrt->table; } -unsigned long zebra_router_score_proto(uint8_t proto, unsigned short instance) -{ - struct zebra_router_table *zrt; - unsigned long cnt = 0; - - RB_FOREACH (zrt, zebra_router_table_head, &zrouter.tables) { - if (zrt->ns_id != NS_DEFAULT) - continue; - cnt += rib_score_proto_table(proto, instance, zrt->table); - } - return cnt; -} - void zebra_router_show_table_summary(struct vty *vty) { struct zebra_router_table *zrt; diff --git a/zebra/zebra_router.h b/zebra/zebra_router.h index b316b91d0d..c68e90695a 100644 --- a/zebra/zebra_router.h +++ b/zebra/zebra_router.h @@ -128,8 +128,6 @@ extern void zebra_router_release_table(struct zebra_vrf *zvrf, uint32_t tableid, extern int zebra_router_config_write(struct vty *vty); -extern unsigned long zebra_router_score_proto(uint8_t proto, - unsigned short instance); extern void zebra_router_sweep_route(void); extern void zebra_router_show_table_summary(struct vty *vty);