Merge pull request #6004 from sarav511/mc_fixes

pimd: (S,G) Route doesn't inherit olist from parent while creation in nocache path
This commit is contained in:
Donald Sharp 2020-03-23 11:17:28 -04:00 committed by GitHub
commit 6ced257f01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -232,6 +232,8 @@ static int pim_mroute_msg_nocache(int fd, struct interface *ifp,
pim_upstream_mroute_iif_update(up->channel_oil, __func__); pim_upstream_mroute_iif_update(up->channel_oil, __func__);
} }
pim_register_join(up); pim_register_join(up);
/* if we have receiver, inherit from parent */
pim_upstream_inherited_olist_decide(pim_ifp->pim, up);
return 0; return 0;
} }