diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-09-14 07:18:37 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-09-19 13:03:50 -0400 | 
| commit | 5f57d30ba47bb8d954a60ba10c0ce8efd539f9c6 (patch) | |
| tree | 9b085f44775dd772b794c6713897e37130a2037f /pimd/pim_upstream.c | |
| parent | e7f0bbb1980660bdcf4595e88b60eadd41a0a172 (diff) | |
pimd: Use a better name for oil_parent
Use oil_incoming_vif instead of oil_parent.  I had
to go look this up as that I failed to remember that
the linux kernel calls this parent for some bizarre
reason.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'pimd/pim_upstream.c')
| -rw-r--r-- | pimd/pim_upstream.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_upstream.c b/pimd/pim_upstream.c index fd99e77761..743a047b0a 100644 --- a/pimd/pim_upstream.c +++ b/pimd/pim_upstream.c @@ -1977,7 +1977,7 @@ static bool pim_upstream_kat_start_ok(struct pim_upstream *up)  		return false;  	pim_ifp = ifp->info; -	if (pim_ifp->mroute_vif_index != *oil_parent(c_oil)) +	if (pim_ifp->mroute_vif_index != *oil_incoming_vif(c_oil))  		return false;  	if (pim_if_connected_to_source(up->rpf.source_nexthop.interface,  | 
