diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-08-03 19:25:13 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-08-30 23:47:59 +0200 |
commit | c2b2356701607af2bc0f7142eba1f5352b23f901 (patch) | |
tree | 4b5085462442a2bd406a3c954209f778d6ef486a /lib/table.h | |
parent | bgpd, ripngd: Convert to using new agg_table/route (diff) | |
download | frr-c2b2356701607af2bc0f7142eba1f5352b23f901.tar.xz frr-c2b2356701607af2bc0f7142eba1f5352b23f901.zip |
lib: Move aggregate pointer into aggregate route/table
Move the aggregate pointer from the route_node into agg_node
so that people using struct route_node will see a savings
in data size.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to '')
-rw-r--r-- | lib/table.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/table.h b/lib/table.h index 8304abe59..711ace111 100644 --- a/lib/table.h +++ b/lib/table.h @@ -126,9 +126,6 @@ struct route_table { \ /* Each node of route. */ \ void *info; \ - \ - /* Aggregation. */ \ - void *aggregate; /* Each routing entry. */ |