diff options
| -rw-r--r-- | bgpd/bgp_vty.c | 2 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | isisd/fabricd.c | 14 |
3 files changed, 11 insertions, 7 deletions
diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c index 82c9d9667c..612f356cbf 100644 --- a/bgpd/bgp_vty.c +++ b/bgpd/bgp_vty.c @@ -14735,7 +14735,7 @@ static int bgp_show_neighbor_vty(struct vty *vty, const char *name, /* "show [ip] bgp neighbors graceful-restart" commands. */ -DEFUN (show_ip_bgp_neighbors_gracrful_restart, +DEFUN (show_ip_bgp_neighbors_graceful_restart, show_ip_bgp_neighbors_graceful_restart_cmd, "show bgp [<ipv4|ipv6>] neighbors [<A.B.C.D|X:X::X:X|WORD>] graceful-restart [json]", SHOW_STR diff --git a/configure.ac b/configure.ac index 8c1fab0eab..4e1080045e 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ ## AC_PREREQ([2.69]) -AC_INIT([frr], [8.4-dev], [https://github.com/frrouting/frr/issues]) +AC_INIT([frr], [8.5-dev], [https://github.com/frrouting/frr/issues]) PACKAGE_URL="https://frrouting.org/" AC_SUBST([PACKAGE_URL]) PACKAGE_FULLNAME="FRRouting" diff --git a/isisd/fabricd.c b/isisd/fabricd.c index a37cda1ce1..be035b623d 100644 --- a/isisd/fabricd.c +++ b/isisd/fabricd.c @@ -254,8 +254,10 @@ static void fabricd_initial_sync_timeout(struct thread *thread) { struct fabricd *f = THREAD_ARG(thread); - zlog_info("OpenFabric: Initial synchronization on %s timed out!", - f->initial_sync_circuit->interface->name); + if (IS_DEBUG_ADJ_PACKETS) + zlog_debug( + "OpenFabric: Initial synchronization on %s timed out!", + f->initial_sync_circuit->interface->name); f->initial_sync_state = FABRICD_SYNC_PENDING; f->initial_sync_circuit = NULL; } @@ -282,9 +284,11 @@ void fabricd_initial_sync_hello(struct isis_circuit *circuit) timeout, &f->initial_sync_timeout); f->initial_sync_start = monotime(NULL); - zlog_info("OpenFabric: Started initial synchronization with %s on %s", - sysid_print(circuit->u.p2p.neighbor->sysid), - circuit->interface->name); + if (IS_DEBUG_ADJ_PACKETS) + zlog_debug( + "OpenFabric: Started initial synchronization with %s on %s", + sysid_print(circuit->u.p2p.neighbor->sysid), + circuit->interface->name); } bool fabricd_initial_sync_is_in_progress(struct isis_area *area) |
