diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-08-26 21:16:29 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-09-09 16:28:05 -0400 | 
| commit | 13ae845b94da86e1a7441c84e00bc97e01c048e5 (patch) | |
| tree | e56f25bd925bb7ae96546d6aac73a636b3e5ef9e /bgpd/bgpd.h | |
| parent | e79443fcd8f41b19e5c90732ae284ec82a5e97fe (diff) | |
bgpd: move t_gr_restart and _stale into peer_connection
The t_gr_restart and t_gr_stale event pointers belong
into the peer_connection pointer.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'bgpd/bgpd.h')
| -rw-r--r-- | bgpd/bgpd.h | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h index 39266a499f..fdf1f121c3 100644 --- a/bgpd/bgpd.h +++ b/bgpd/bgpd.h @@ -1146,6 +1146,9 @@ struct peer_connection {  	struct event *t_connect_check_r;  	struct event *t_connect_check_w; +	struct event *t_gr_restart; +	struct event *t_gr_stale; +  	struct event *t_routeadv;  	struct event *t_process_packet;  	struct event *t_process_packet_error; @@ -1557,8 +1560,6 @@ struct peer {  	/* Threads. */  	struct event *t_pmax_restart; -	struct event *t_gr_restart; -	struct event *t_gr_stale;  	struct event *t_llgr_stale[AFI_MAX][SAFI_MAX];  	struct event *t_revalidate_all[AFI_MAX][SAFI_MAX];  	struct event *t_generate_updgrp_packets;  | 
