mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-08 12:36:20 +00:00
pimd: fixup whitespace errors reported by CI
No functional changes. Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
This commit is contained in:
parent
a1be09396c
commit
075a475e0c
@ -2089,7 +2089,7 @@ static void pim_show_state(struct pim_instance *pim, struct vty *vty,
|
|||||||
} else {
|
} else {
|
||||||
vty_out(vty, "%-6d %-15s %-15s %-3s %-16s ",
|
vty_out(vty, "%-6d %-15s %-15s %-3s %-16s ",
|
||||||
c_oil->installed, src_str, grp_str,
|
c_oil->installed, src_str, grp_str,
|
||||||
isRpt? "y" : "n", in_ifname);
|
isRpt ? "y" : "n", in_ifname);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (oif_vif_index = 0; oif_vif_index < MAXVIFS;
|
for (oif_vif_index = 0; oif_vif_index < MAXVIFS;
|
||||||
|
@ -1811,14 +1811,16 @@ void pim_upstream_find_new_rpf(struct pim_instance *pim)
|
|||||||
zlog_debug(
|
zlog_debug(
|
||||||
"%s: Upstream %s without a path to send join, checking",
|
"%s: Upstream %s without a path to send join, checking",
|
||||||
__PRETTY_FUNCTION__, up->sg_str);
|
__PRETTY_FUNCTION__, up->sg_str);
|
||||||
old.source_nexthop.interface = up->rpf.source_nexthop.interface;
|
old.source_nexthop.interface =
|
||||||
|
up->rpf.source_nexthop.interface;
|
||||||
rpf_result = pim_rpf_update(pim, up, &old, __func__);
|
rpf_result = pim_rpf_update(pim, up, &old, __func__);
|
||||||
if (rpf_result == PIM_RPF_CHANGED ||
|
if (rpf_result == PIM_RPF_CHANGED ||
|
||||||
(rpf_result == PIM_RPF_FAILURE &&
|
(rpf_result == PIM_RPF_FAILURE &&
|
||||||
old.source_nexthop.interface))
|
old.source_nexthop.interface))
|
||||||
pim_zebra_upstream_rpf_changed(pim, up, &old);
|
pim_zebra_upstream_rpf_changed(pim, up, &old);
|
||||||
/* update kernel multicast forwarding cache (MFC) */
|
/* update kernel multicast forwarding cache (MFC) */
|
||||||
pim_upstream_mroute_iif_update(up->channel_oil, __func__);
|
pim_upstream_mroute_iif_update(up->channel_oil,
|
||||||
|
__func__);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pim_zebra_update_all_interfaces(pim);
|
pim_zebra_update_all_interfaces(pim);
|
||||||
|
Loading…
Reference in New Issue
Block a user