diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-05-20 14:19:08 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 08:32:17 -0400 | 
| commit | 907a2395f423e3b97335d554557c2cef7195db84 (patch) | |
| tree | 18ea691bc5589fa570c739a9f221429633778ea9 /bgpd/bgp_updgrp_adv.c | |
| parent | e6685141aae8fc869d49cde1d459f73b87bbec89 (diff) | |
*: Convert thread_add_XXX functions to event_add_XXX
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'bgpd/bgp_updgrp_adv.c')
| -rw-r--r-- | bgpd/bgp_updgrp_adv.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/bgpd/bgp_updgrp_adv.c b/bgpd/bgp_updgrp_adv.c index f6321a368f..b45e9cf828 100644 --- a/bgpd/bgp_updgrp_adv.c +++ b/bgpd/bgp_updgrp_adv.c @@ -1021,9 +1021,9 @@ void subgroup_announce_all(struct update_subgroup *subgrp)  	 * We should wait for the coalesce timer. Arm the timer if not done.  	 */  	if (!subgrp->t_coalesce) { -		thread_add_timer_msec(bm->master, subgroup_coalesce_timer, -				      subgrp, subgrp->v_coalesce, -				      &subgrp->t_coalesce); +		event_add_timer_msec(bm->master, subgroup_coalesce_timer, +				     subgrp, subgrp->v_coalesce, +				     &subgrp->t_coalesce);  	}  }  | 
