mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-28 15:36:25 +00:00
lib, zebra: Convert THREAD_TIMER_STRLEN to EVENT_TIMER_STRLEN
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
This commit is contained in:
parent
04ec66797c
commit
70d4d90c82
@ -147,10 +147,10 @@ struct cpu_event_history {
|
||||
/* Struct timeval's tv_usec one second value. */
|
||||
#define TIMER_SECOND_MICRO 1000000L
|
||||
|
||||
/* Thread yield time. */
|
||||
/* Event yield time. */
|
||||
#define EVENT_YIELD_TIME_SLOT 10 * 1000L /* 10ms */
|
||||
|
||||
#define THREAD_TIMER_STRLEN 12
|
||||
#define EVENT_TIMER_STRLEN 12
|
||||
|
||||
/* Macros. */
|
||||
#define THREAD_ARG(X) ((X)->arg)
|
||||
|
@ -615,7 +615,7 @@ void zebra_evpn_print_mac(struct zebra_mac *mac, void *ctxt, json_object *json)
|
||||
struct zebra_vrf *zvrf;
|
||||
struct timeval detect_start_time = {0, 0};
|
||||
char timebuf[MONOTIME_STRLEN];
|
||||
char thread_buf[THREAD_TIMER_STRLEN];
|
||||
char thread_buf[EVENT_TIMER_STRLEN];
|
||||
time_t uptime;
|
||||
char up_str[MONOTIME_STRLEN];
|
||||
|
||||
|
@ -3139,7 +3139,7 @@ static void zebra_evpn_es_show_entry_detail(struct vty *vty,
|
||||
char alg_buf[EVPN_DF_ALG_STR_LEN];
|
||||
struct zebra_evpn_es_vtep *es_vtep;
|
||||
struct listnode *node;
|
||||
char thread_buf[THREAD_TIMER_STRLEN];
|
||||
char thread_buf[EVENT_TIMER_STRLEN];
|
||||
|
||||
if (json) {
|
||||
json_object *json_vteps;
|
||||
@ -3522,7 +3522,7 @@ DEFPY(zebra_evpn_mh_uplink, zebra_evpn_mh_uplink_cmd, "[no] evpn mh uplink",
|
||||
void zebra_evpn_mh_json(json_object *json)
|
||||
{
|
||||
json_object *json_array;
|
||||
char thread_buf[THREAD_TIMER_STRLEN];
|
||||
char thread_buf[EVENT_TIMER_STRLEN];
|
||||
|
||||
json_object_int_add(json, "macHoldtime", zmh_info->mac_hold_time);
|
||||
json_object_int_add(json, "neighHoldtime", zmh_info->neigh_hold_time);
|
||||
@ -3555,7 +3555,7 @@ void zebra_evpn_mh_json(json_object *json)
|
||||
void zebra_evpn_mh_print(struct vty *vty)
|
||||
{
|
||||
char pd_buf[ZEBRA_PROTODOWN_RC_STR_LEN];
|
||||
char thread_buf[THREAD_TIMER_STRLEN];
|
||||
char thread_buf[EVENT_TIMER_STRLEN];
|
||||
|
||||
vty_out(vty, "EVPN MH:\n");
|
||||
vty_out(vty, " mac-holdtime: %ds, neigh-holdtime: %ds\n",
|
||||
|
@ -1706,7 +1706,7 @@ void zebra_evpn_print_neigh(struct zebra_neigh *n, void *ctxt,
|
||||
struct zebra_vrf *zvrf = NULL;
|
||||
struct timeval detect_start_time = {0, 0};
|
||||
char timebuf[MONOTIME_STRLEN];
|
||||
char thread_buf[THREAD_TIMER_STRLEN];
|
||||
char thread_buf[EVENT_TIMER_STRLEN];
|
||||
time_t uptime;
|
||||
char up_str[MONOTIME_STRLEN];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user