From: Igor Putovny Date: Fri, 6 Oct 2023 12:38:07 +0000 (+0200) Subject: Assign bucket of ancestor node to leaf node X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cf73f74acd06560918ca057044464770c911441;p=thirdparty%2Fbird.git Assign bucket of ancestor node to leaf node --- diff --git a/proto/aggregator/aggregator.c b/proto/aggregator/aggregator.c index d8f168515..aeca20192 100644 --- a/proto/aggregator/aggregator.c +++ b/proto/aggregator/aggregator.c @@ -182,7 +182,7 @@ get_ancestor_bucket(const struct trie_node *node) while (1) { if (node->parent == NULL) - return NULL; + return node->bucket; if (node->parent->bucket != NULL) return node->parent->bucket; @@ -204,6 +204,7 @@ first_pass(struct trie_node *node, slab *trie_slab) if (is_leaf(node)) { node->potential_buckets[node->potential_buckets_count++] = get_ancestor_bucket(node); + //node->potential_buckets[node->potential_buckets_count++] = node->bucket; return; }