Skip to content

Commit

Permalink
Merge pull request #18210 from donaldsharp/fix_bestpath_evpn_issue
Browse files Browse the repository at this point in the history
bgpd: remove dmed check not required in bestpath selection
  • Loading branch information
Jafaral authored Feb 21, 2025
2 parents 7719645 + 83ad946 commit 67985ba
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions bgpd/bgp_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -3211,21 +3211,6 @@ void bgp_best_selection(struct bgp *bgp, struct bgp_dest *dest,

bgp_path_info_unset_flag(dest, look_thru,
BGP_PATH_DMED_CHECK);
if (CHECK_FLAG(bgp->flags, BGP_FLAG_DETERMINISTIC_MED) &&
(!CHECK_FLAG(look_thru->flags,
BGP_PATH_DMED_SELECTED))) {
bgp_path_info_unset_flag(dest, look_thru,
BGP_PATH_DMED_CHECK);
if (debug)
zlog_debug("%s: %pBD(%s) pi %s dmed",
__func__, dest,
bgp->name_pretty,
look_thru->peer->host);

worse = look_thru;
continue;
}

reason = dest->reason;
any_comparisons = true;
if (bgp_path_info_cmp(bgp, first, look_thru, &paths_eq,
Expand Down

0 comments on commit 67985ba

Please sign in to comment.