Skip to content

Commit

Permalink
lib, zebra: Convert THREAD_TIMER_STRLEN to EVENT_TIMER_STRLEN
Browse files Browse the repository at this point in the history
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
  • Loading branch information
donaldsharp committed Mar 24, 2023
1 parent 04ec667 commit 70d4d90
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions lib/event.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion zebra/zebra_evpn_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -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];

Expand Down
6 changes: 3 additions & 3 deletions zebra/zebra_evpn_mh.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion zebra/zebra_evpn_neigh.c
Original file line number Diff line number Diff line change
Expand Up @@ -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];

Expand Down

0 comments on commit 70d4d90

Please sign in to comment.