Skip to content

Commit

Permalink
pimd: Fix old commit that got in
Browse files Browse the repository at this point in the history
An old fix that used THREAD_OFF was pushed in, should
have used EVENT_OFF instead.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
  • Loading branch information
donaldsharp committed May 2, 2023
1 parent f7a775a commit 42f5ab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pimd/pim_oil.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ void pim_clear_nocache_state(struct pim_interface *pim_ifp)
if (*oil_parent(c_oil) != pim_ifp->mroute_vif_index)
continue;

THREAD_OFF(c_oil->up->t_ka_timer);
EVENT_OFF(c_oil->up->t_ka_timer);
PIM_UPSTREAM_FLAG_UNSET_SRC_NOCACHE(c_oil->up->flags);
PIM_UPSTREAM_FLAG_UNSET_SRC_STREAM(c_oil->up->flags);
pim_upstream_del(pim_ifp->pim, c_oil->up, __func__);
Expand Down

0 comments on commit 42f5ab1

Please sign in to comment.