diff options
author | Mark Stapp <mjs@voltanet.io> | 2020-02-25 14:29:46 +0100 |
---|---|---|
committer | Mark Stapp <mjs@voltanet.io> | 2020-02-27 21:49:31 +0100 |
commit | c415d89528f5cd7128e5b4c4cd65cce01d64fc80 (patch) | |
tree | c7604b3cf422eec7f9edd464af522251b7a20d6a /zebra/zebra_pw.c | |
parent | lib: use const in nexthop_group copy api (diff) | |
download | frr-c415d89528f5cd7128e5b4c4cd65cce01d64fc80.tar.xz frr-c415d89528f5cd7128e5b4c4cd65cce01d64fc80.zip |
zebra: Embed lib nexthop-group in zebra hash entry
Embed nexthop-group, which is just a pointer, in the zebra
nexthop-hash-entry object, rather than mallocing one.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'zebra/zebra_pw.c')
-rw-r--r-- | zebra/zebra_pw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_pw.c b/zebra/zebra_pw.c index 618a23240..610a052c3 100644 --- a/zebra/zebra_pw.c +++ b/zebra/zebra_pw.c @@ -259,7 +259,7 @@ static int zebra_pw_check_reachability(struct zebra_pw *pw) * Need to ensure that there's a label binding for all nexthops. * Otherwise, ECMP for this route could render the pseudowire unusable. */ - for (ALL_NEXTHOPS_PTR(re->nhe->nhg, nexthop)) { + for (ALL_NEXTHOPS(re->nhe->nhg, nexthop)) { if (!nexthop->nh_label) { if (IS_ZEBRA_DEBUG_PW) zlog_debug("%s: unlabeled route for %s", |