mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-28 10:50:18 +00:00
pimd: Fix up > 80 columns
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
53bc94b070
commit
ff5d90c2e9
@ -513,6 +513,7 @@ int pim_ecmp_nexthop_search(struct pim_instance *pim,
|
||||
nbrs[i] = pim_neighbor_find(ifps[i],
|
||||
nh_node->gate.ipv4);
|
||||
if (nbrs[i] || pim_if_connected_to_source(ifps[i],
|
||||
|
||||
src->u.prefix4))
|
||||
num_nbrs++;
|
||||
}
|
||||
|
@ -700,9 +700,9 @@ void pim_rp_setup(struct pim_instance *pim)
|
||||
"%s: NHT Local Nexthop not found for RP %s ",
|
||||
__PRETTY_FUNCTION__, buf);
|
||||
}
|
||||
if (!pim_ecmp_nexthop_lookup(
|
||||
pim, &rp_info->rp.source_nexthop,
|
||||
&nht_p, &rp_info->group, 1))
|
||||
if (!pim_ecmp_nexthop_lookup(pim,
|
||||
&rp_info->rp.source_nexthop,
|
||||
&nht_p, &rp_info->group, 1))
|
||||
if (PIM_DEBUG_PIM_NHT_RP)
|
||||
zlog_debug(
|
||||
"Unable to lookup nexthop for rp specified");
|
||||
@ -867,7 +867,8 @@ struct pim_rpf *pim_rp_g(struct pim_instance *pim, struct in_addr group)
|
||||
__PRETTY_FUNCTION__, buf, buf1);
|
||||
}
|
||||
pim_rpf_set_refresh_time(pim);
|
||||
pim_ecmp_nexthop_lookup(pim, &rp_info->rp.source_nexthop,
|
||||
pim_ecmp_nexthop_lookup(pim,
|
||||
&rp_info->rp.source_nexthop,
|
||||
&nht_p, &rp_info->group, 1);
|
||||
}
|
||||
return (&rp_info->rp);
|
||||
|
Loading…
Reference in New Issue
Block a user