]> git.proxmox.com Git - mirror_frr.git/commitdiff
*: un-split strings across lines
authorDavid Lamparter <equinox@diac24.net>
Fri, 27 Mar 2020 11:35:23 +0000 (12:35 +0100)
committerDavid Lamparter <equinox@diac24.net>
Tue, 14 Jul 2020 08:37:25 +0000 (10:37 +0200)
Remove mid-string line breaks, cf. workflow doc:

  .. [#tool_style_conflicts] For example, lines over 80 characters are allowed
     for text strings to make it possible to search the code for them: please
     see `Linux kernel style (breaking long lines and strings)
     <https://www.kernel.org/doc/html/v4.10/process/coding-style.html#breaking-long-lines-and-strings>`_
     and `Issue #1794 <https://github.com/FRRouting/frr/issues/1794>`_.

Scripted commit, idempotent to running:
```
python3 tools/stringmangle.py --unwrap `git ls-files | egrep '\.[ch]$'`
```

Signed-off-by: David Lamparter <equinox@diac24.net>
123 files changed:
babeld/babel_interface.c
babeld/message.c
babeld/route.c
bfdd/bfd.c
bfdd/bfdd_nb_config.c
bfdd/ptm_adapter.c
bgpd/bgp_aspath.c
bgpd/bgp_attr.c
bgpd/bgp_bfd.c
bgpd/bgp_bmp.c
bgpd/bgp_ecommunity.c
bgpd/bgp_evpn_vty.c
bgpd/bgp_fsm.c
bgpd/bgp_label.c
bgpd/bgp_mpath.c
bgpd/bgp_mplsvpn.c
bgpd/bgp_network.c
bgpd/bgp_open.c
bgpd/bgp_packet.c
bgpd/bgp_pbr.c
bgpd/bgp_route.c
bgpd/bgp_routemap.c
bgpd/bgp_rpki.c
bgpd/bgp_updgrp.c
bgpd/bgp_vty.c
bgpd/bgpd.c
bgpd/rfapi/rfapi.c
bgpd/rfapi/rfapi_rib.c
eigrpd/eigrp_dump.c
eigrpd/eigrp_network.c
eigrpd/eigrp_packet.c
isisd/isis_bpf.c
isisd/isis_circuit.c
isisd/isis_cli.c
isisd/isis_dlpi.c
isisd/isis_lsp.c
isisd/isis_main.c
isisd/isis_pdu.c
isisd/isis_pfpacket.c
isisd/isis_redist.c
isisd/isis_spf.c
isisd/isis_tlvs.c
isisd/isis_vty_fabricd.c
ldpd/hello.c
ldpd/init.c
ldpd/interface.c
ldpd/lde.c
ldpd/ldp_vty_conf.c
ldpd/ldp_vty_exec.c
ldpd/ldpd.c
ldpd/ldpe.c
ldpd/neighbor.c
ldpd/notification.c
ldpd/packet.c
lib/bfd.c
lib/buffer.c
lib/filter_nb.c
lib/if.c
lib/log.c
lib/memory.c
lib/privs.c
lib/routemap.c
lib/sockopt.c
lib/sockunion.c
lib/thread.c
lib/vrf.c
lib/vty.c
lib/zclient.c
nhrpd/nhrp_route.c
ospf6d/ospf6_interface.c
ospf6d/ospf6_spf.c
ospf6d/ospf6_top.c
ospfd/ospf_abr.c
ospfd/ospf_apiserver.c
ospfd/ospf_ase.c
ospfd/ospf_ext.c
ospfd/ospf_flood.c
ospfd/ospf_ia.c
ospfd/ospf_interface.c
ospfd/ospf_lsa.c
ospfd/ospf_network.c
ospfd/ospf_nsm.c
ospfd/ospf_opaque.c
ospfd/ospf_packet.c
ospfd/ospf_route.c
ospfd/ospf_spf.c
ospfd/ospf_sr.c
ospfd/ospf_vty.c
ospfd/ospf_zebra.c
pimd/pim_cmd.c
pimd/pim_ifchannel.c
pimd/pim_igmp.c
pimd/pim_igmp_mtrace.c
ripd/rip_interface.c
ripd/ripd.c
ripngd/ripngd.c
tests/bgpd/test_aspath.c
tests/lib/test_checksum.c
tests/lib/test_ttable.c
tools/gcc-plugins/frr-format.c
tools/start-stop-daemon.c
vtysh/vtysh.c
vtysh/vtysh_main.c
watchfrr/watchfrr.c
zebra/connected.c
zebra/if_netlink.c
zebra/interface.c
zebra/ipforward_solaris.c
zebra/irdp_interface.c
zebra/kernel_socket.c
zebra/main.c
zebra/rt_socket.c
zebra/rtadv.c
zebra/rtread_getmsg.c
zebra/zebra_dplane.c
zebra/zebra_fpm.c
zebra/zebra_mpls.c
zebra/zebra_mpls_openbsd.c
zebra/zebra_netns_notify.c
zebra/zebra_ptm.c
zebra/zebra_pw.c
zebra/zebra_rib.c
zebra/zebra_vxlan.c

index 772aec1234416e19b3be396fce2cc1a94166ee83..1702d9277cd34466caaa11a9c03aa453c56b1c2f 100644 (file)
@@ -692,8 +692,7 @@ interface_recalculate(struct interface *ifp)
 
     rc = resize_receive_buffer(mtu);
     if(rc < 0)
-        zlog_warn("couldn't resize "
-                  "receive buffer for interface %s (%d) (%d bytes).\n",
+        zlog_warn("couldn't resize receive buffer for interface %s (%d) (%d bytes).\n",
                   ifp->name, ifp->ifindex, mtu);
 
     memset(&mreq, 0, sizeof(mreq));
@@ -896,8 +895,7 @@ static void
 show_babel_neighbour_sub (struct vty *vty, struct neighbour *neigh)
 {
     vty_out (vty,
-             "Neighbour %s dev %s reach %04x rxcost %d txcost %d "
-             "rtt %s rttcost %d%s.\n",
+             "Neighbour %s dev %s reach %04x rxcost %d txcost %d rtt %s rttcost %d%s.\n",
              format_address(neigh->address),
              neigh->ifp->name,
              neigh->reach,
@@ -988,8 +986,7 @@ show_babel_routes_sub(struct babel_route *route, struct vty *vty,
     }
 
     vty_out (vty,
-            "%s metric %d refmetric %d id %s seqno %d%s age %d "
-            "via %s neigh %s%s%s%s\n",
+            "%s metric %d refmetric %d id %s seqno %d%s age %d via %s neigh %s%s%s%s\n",
             format_prefix(route->src->prefix, route->src->plen),
             route_metric(route), route->refmetric,
             format_eui64(route->src->id),
index d88790824cc2bf3c8557f2e6ecf7d4b82ff40484..c9a10cb1c0c87a628a5af17a6a55dae5efb4c4d2 100644 (file)
@@ -710,8 +710,7 @@ fill_rtt_message(struct interface *ifp)
             DO_HTONL(babel_ifp->sendbuf + babel_ifp->buffered_hello + 10, time);
             return 1;
         } else {
-            flog_err(EC_BABEL_PACKET, "No space left for timestamp sub-TLV "
-                     "(this shouldn't happen)");
+            flog_err(EC_BABEL_PACKET, "No space left for timestamp sub-TLV (this shouldn't happen)");
             return -1;
         }
     }
index ab104aa2b10f8216d28664b8a62132c4a81a926d..0f6f6486f2eca7e02eb6118f85befc0f3facfb83 100644 (file)
@@ -399,16 +399,14 @@ install_route(struct babel_route *route)
         return;
 
     if(!route_feasible(route))
-        flog_err(EC_BABEL_ROUTE, "WARNING: installing unfeasible route "
-                  "(this shouldn't happen).");
+        flog_err(EC_BABEL_ROUTE, "WARNING: installing unfeasible route (this shouldn't happen).");
 
     i = find_route_slot(route->src->prefix, route->src->plen, NULL);
     assert(i >= 0 && i < route_slots);
 
     if(routes[i] != route && routes[i]->installed) {
         flog_err(EC_BABEL_ROUTE,
-                 "WARNING: attempting to install duplicate route "
-                  "(this shouldn't happen).");
+                 "WARNING: attempting to install duplicate route (this shouldn't happen).");
         return;
     }
 
@@ -465,8 +463,7 @@ switch_routes(struct babel_route *old, struct babel_route *new)
         return;
 
     if(!route_feasible(new))
-        flog_err(EC_BABEL_ROUTE, "WARNING: switching to unfeasible route "
-                  "(this shouldn't happen).");
+        flog_err(EC_BABEL_ROUTE, "WARNING: switching to unfeasible route (this shouldn't happen).");
 
     rc = kernel_route(ROUTE_MODIFY, old->src->prefix, old->src->plen,
                       old->nexthop, old->neigh->ifp->ifindex,
@@ -835,8 +832,7 @@ update_route(const unsigned char *router_id,
            in a timely manner.  If the source remains the same, we ignore
            the update. */
         if(!feasible && route->installed) {
-            debugf(BABEL_DEBUG_COMMON,"Unfeasible update for installed route to %s "
-                   "(%s %d %d -> %s %d %d).",
+            debugf(BABEL_DEBUG_COMMON,"Unfeasible update for installed route to %s (%s %d %d -> %s %d %d).",
                    format_prefix(src->prefix, src->plen),
                    format_eui64(route->src->id),
                    route->seqno, route->refmetric,
index 7d6f4c143170be17e8a5134c7cbd9b4ffdfc8fe7..c4ba4756120dc9c2fda91406e5fc3f812259f560 100644 (file)
@@ -1693,8 +1693,7 @@ struct bfd_session *bfd_key_lookup(struct bfd_key key)
                                inet_ntop(bs.key.family, &bs.key.local,
                                          addr_buf, sizeof(addr_buf));
                                zlog_debug(
-                                       " peer %s found, but ifp %s"
-                                       " and loc-addr %s ignored",
+                                       " peer %s found, but ifp %s and loc-addr %s ignored",
                                        peer_buf, key.ifname, addr_buf);
                        }
                        return bsp;
@@ -1716,8 +1715,7 @@ struct bfd_session *bfd_key_lookup(struct bfd_key key)
                bsp = ctx.result;
                if (bglobal.debug_peer_event)
                        zlog_debug(
-                               " peer %s found, but ifp"
-                               " and/or loc-addr params ignored",
+                               " peer %s found, but ifp and/or loc-addr params ignored",
                                peer_buf);
        }
        return bsp;
index de11997d1aa131c75e558965b6e365ae8fa612ce..209dea138986ab952db75c36bc2a6b02b459684e 100644 (file)
@@ -85,8 +85,7 @@ static int bfd_session_create(enum nb_event event, const struct lyd_node *dnode,
                if (p.family == AF_INET6 && IN6_IS_ADDR_LINKLOCAL(&p.u.prefix6)
                    && strlen(ifname) == 0) {
                        zlog_warn(
-                               "%s: when using link-local you must specify "
-                               "an interface.",
+                               "%s: when using link-local you must specify an interface.",
                                __func__);
                        return NB_ERR_VALIDATION;
                }
index 1a23a690e0358924c12928825f29aa38610b62b0..8134807a145cba9c9707ef62330724b80adf42bc 100644 (file)
@@ -152,8 +152,7 @@ static void _ptm_bfd_session_del(struct bfd_session *bs, uint8_t diag)
                 */
                if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_CONFIG)) {
                        zlog_err(
-                               "ptm-del-session: [%s] session refcount is "
-                               "zero but it was configured by CLI",
+                               "ptm-del-session: [%s] session refcount is zero but it was configured by CLI",
                                bs_to_string(bs));
                } else {
                        control_notify_config(BCM_NOTIFY_CONFIG_DELETE, bs);
index 44962f5af3e9ec68ad0bbcccbbbbd1c7134e17af..5cf3c60fa2cd97d5467ec180698455a62f153f25 100644 (file)
@@ -1723,8 +1723,7 @@ struct aspath *aspath_reconcile_as4(struct aspath *aspath,
                        if (hops < seg->length) {
                                if (BGP_DEBUG(as4, AS4))
                                        zlog_debug(
-                                               "[AS4] AS4PATHmangle: AS_CONFED_SEQUENCE falls"
-                                               " across 2/4 ASN boundary somewhere, broken..");
+                                               "[AS4] AS4PATHmangle: AS_CONFED_SEQUENCE falls across 2/4 ASN boundary somewhere, broken..");
                                hops = seg->length;
                        }
                /* fallthru */
index d8566fed9f78e7f3a503f607b1b2a16ff8666a35..bd51328a7bcb6ca67cd5517545549db3943f965a 100644 (file)
@@ -1244,8 +1244,7 @@ bgp_attr_flags_diagnose(struct bgp_attr_parser_args *args,
                }
        if (!seen) {
                zlog_debug(
-                       "Strange, %s called for attr %s, but no problem found with flags"
-                       " (real flags 0x%x, desired 0x%x)",
+                       "Strange, %s called for attr %s, but no problem found with flags (real flags 0x%x, desired 0x%x)",
                        __func__, lookup_msg(attr_str, attr_code, NULL),
                        real_flags, desired_flags);
        }
@@ -1311,16 +1310,14 @@ static bool bgp_attr_flag_invalid(struct bgp_attr_parser_args *args)
        if (CHECK_FLAG(flags, BGP_ATTR_FLAG_PARTIAL)) {
                if (!CHECK_FLAG(flags, BGP_ATTR_FLAG_OPTIONAL)) {
                        flog_err(EC_BGP_ATTR_FLAG,
-                                "%s well-known attribute "
-                                "must NOT have the partial flag set (%x)",
+                                "%s well-known attribute must NOT have the partial flag set (%x)",
                                 lookup_msg(attr_str, attr_code, NULL), flags);
                        return true;
                }
                if (CHECK_FLAG(flags, BGP_ATTR_FLAG_OPTIONAL)
                    && !CHECK_FLAG(flags, BGP_ATTR_FLAG_TRANS)) {
                        flog_err(EC_BGP_ATTR_FLAG,
-                                "%s optional + transitive attribute "
-                                "must NOT have the partial flag set (%x)",
+                                "%s optional + transitive attribute must NOT have the partial flag set (%x)",
                                 lookup_msg(attr_str, attr_code, NULL), flags);
                        return true;
                }
@@ -1773,10 +1770,7 @@ bgp_attr_munge_as4_attrs(struct peer *const peer, struct attr *const attr,
                                /* ignore */
                                if (BGP_DEBUG(as4, AS4))
                                        zlog_debug(
-                                               "[AS4] %s BGP not AS4 capable peer"
-                                               " send AGGREGATOR != AS_TRANS and"
-                                               " AS4_AGGREGATOR, so ignore"
-                                               " AS4_AGGREGATOR and AS4_PATH",
+                                               "[AS4] %s BGP not AS4 capable peer send AGGREGATOR != AS_TRANS and AS4_AGGREGATOR, so ignore AS4_AGGREGATOR and AS4_PATH",
                                                peer->host);
                                ignore_as4_path = 1;
                        } else {
@@ -1794,9 +1788,7 @@ bgp_attr_munge_as4_attrs(struct peer *const peer, struct attr *const attr,
                         */
                        if (BGP_DEBUG(as4, AS4))
                                zlog_debug(
-                                       "[AS4] %s BGP not AS4 capable peer send"
-                                       " AS4_AGGREGATOR but no AGGREGATOR, will take"
-                                       " it as if AGGREGATOR with AS_TRANS had been there",
+                                       "[AS4] %s BGP not AS4 capable peer send AS4_AGGREGATOR but no AGGREGATOR, will take it as if AGGREGATOR with AS_TRANS had been there",
                                        peer->host);
                        attr->aggregator_as = as4_aggregator;
                        /* sweep it under the carpet and simulate a "good"
@@ -2676,8 +2668,7 @@ bgp_attr_parse_ret_t bgp_attr_prefix_sid(struct bgp_attr_parser_args *args)
                if (psid_parsed_length > args->length) {
                        flog_err(
                                EC_BGP_ATTR_LEN,
-                               "Malformed Prefix SID attribute - TLV overflow by attribute (need %zu"
-                               " for TLV length, have %zu overflowed in UPDATE)",
+                               "Malformed Prefix SID attribute - TLV overflow by attribute (need %zu for TLV length, have %zu overflowed in UPDATE)",
                                length + headersz, psid_parsed_length - (length + headersz));
                        return bgp_attr_malformed(
                                args, BGP_NOTIFY_UPDATE_ATTR_LENG_ERR,
index 54970af67b99c52381eb81d6dd62e908e9a81090..ba57db61cbbda03b3f2749bdb86459272f9f4cf9 100644 (file)
@@ -351,8 +351,7 @@ static void bgp_bfd_peer_status_update(struct peer *peer, int status,
                if (CHECK_FLAG(peer->sflags, PEER_STATUS_NSF_MODE) &&
                    CHECK_FLAG(bfd_info->flags, BFD_FLAG_BFD_CHECK_CONTROLPLANE) &&
                    !remote_cbit) {
-                       zlog_info("%s BFD DOWN message ignored in the process"
-                                 " of graceful restart when C bit is cleared",
+                       zlog_info("%s BFD DOWN message ignored in the process of graceful restart when C bit is cleared",
                                  peer->host);
                        return;
                }
index f1ad6a1e756414e300202c45ff118f0edbafd622..db330f998c266a757aabec79e49637269f0746a8 100644 (file)
@@ -1942,9 +1942,7 @@ DEFPY(no_bmp_listener_main,
 
 DEFPY(bmp_connect,
       bmp_connect_cmd,
-      "[no] bmp connect HOSTNAME port (1-65535) "
-               "{min-retry (100-86400000)"
-               "|max-retry (100-86400000)}",
+      "[no] bmp connect HOSTNAME port (1-65535) {min-retry (100-86400000)|max-retry (100-86400000)}",
       NO_STR
       BMP_STR
       "Actively establish connection to monitoring station\n"
index 7d5cac4d62f2a87f5f23f212b43fafdd9f3ee7cf..d6c311bfa03e16066a01cb9cbe0bb759771279cb 100644 (file)
@@ -676,13 +676,10 @@ static int ecommunity_lb_str(char *buf, size_t bufsz, const uint8_t *pnt)
    are three types of format.
 
    route-map set extcommunity format
-       "rt 100:1 100:2"
-       "soo 100:3"
+       "rt 100:1 100:2soo 100:3"
 
    extcommunity-list
-       "rt 100:1 rt 100:2 soo 100:3"
-
-   "show [ip] bgp" and extcommunity-list regular expression matching
+       "rt 100:1 rt 100:2 soo 100:3show [ip] bgp" and extcommunity-list regular expression matching
        "RT:100:1 RT:100:2 SoO:100:3"
 
    For each formath please use below definition for format:
index 1a0e5c0cd35b94b5ad0f75dda22542c69cff5685..95e24eae12bc435befa25a84273b8865b1280859 100644 (file)
@@ -345,8 +345,7 @@ static void bgp_evpn_show_route_header(struct vty *vty, struct bgp *bgp,
        vty_out(vty, "BGP table version is %" PRIu64 ", local router ID is %s\n",
                tbl_ver, inet_ntoa(bgp->router_id));
        vty_out(vty,
-               "Status codes: s suppressed, d damped, h history, "
-               "* valid, > best, i - internal\n");
+               "Status codes: s suppressed, d damped, h history, * valid, > best, i - internal\n");
        vty_out(vty, "Origin codes: i - IGP, e - EGP, ? - incomplete\n");
        vty_out(vty,
                "EVPN type-2 prefix: [2]:[EthTag]:[MAClen]:[MAC]:[IPlen]:[IP]\n");
index e78682a3bb48b906e7ad5231556efa9b5f38cc60..e133cde6a5e0c8d62a94dbf3536663183a01d1ab 100644 (file)
@@ -1553,8 +1553,7 @@ int bgp_start(struct peer *peer)
        if (BGP_PEER_START_SUPPRESSED(peer)) {
                if (bgp_debug_neighbor_events(peer))
                        flog_err(EC_BGP_FSM,
-                                "%s [FSM] Trying to start suppressed peer"
-                                " - this is never supposed to happen!",
+                                "%s [FSM] Trying to start suppressed peer - this is never supposed to happen!",
                                 peer->host);
                if (CHECK_FLAG(peer->flags, PEER_FLAG_SHUTDOWN))
                        peer->last_reset = PEER_DOWN_USER_SHUTDOWN;
@@ -2285,8 +2284,7 @@ int bgp_event_update(struct peer *peer, enum bgp_fsm_events event)
                if (!dyn_nbr && !passive_conn && peer->bgp) {
                        flog_err(
                                EC_BGP_FSM,
-                               "%s [FSM] Failure handling event %s in state %s, "
-                               "prior events %s, %s, fd %d",
+                               "%s [FSM] Failure handling event %s in state %s, prior events %s, %s, fd %d",
                                peer->host, bgp_event_str[peer->cur_event],
                                lookup_msg(bgp_status_msg, peer->status, NULL),
                                bgp_event_str[peer->last_event],
index 4121a8e4b7134e9079cf2d3350e4427f735a601d..fba954c432bcadeec01afd658941fbc072a90769 100644 (file)
@@ -394,8 +394,7 @@ int bgp_nlri_parse_label(struct peer *peer, struct attr *attr,
                /* There needs to be at least one label */
                if (prefixlen < 24) {
                        flog_err(EC_BGP_UPDATE_RCV,
-                                "%s [Error] Update packet error"
-                                " (wrong label length %d)",
+                                "%s [Error] Update packet error (wrong label length %d)",
                                 peer->host, prefixlen);
                        bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
                                        BGP_NOTIFY_UPDATE_INVAL_NETWORK);
index 5dd1cf6de8511a70c9678c826fd6bd5fa8f18200..b7f516eaf7893d077d0e29e7ca064a72f89e94de 100644 (file)
@@ -739,8 +739,7 @@ void bgp_path_info_mpath_update(struct bgp_dest *dest,
 
                if (debug)
                        zlog_debug(
-                               "%pRN: New mpath count (incl newbest) %d mpath-change %s"
-                               " all_paths_lb %d cum_bw u%" PRIu64,
+                               "%pRN: New mpath count (incl newbest) %d mpath-change %s all_paths_lb %d cum_bw u%" PRIu64,
                                bgp_dest_to_rnode(dest), mpath_count,
                                mpath_changed ? "YES" : "NO",
                                all_paths_lb, cum_bw);
index 86b1b3e3acfaf1a4fa24005c317f75454016d596..314337d19455e87a2194bcdf56373c92b8d1928a 100644 (file)
@@ -274,8 +274,7 @@ void vpn_leak_zebra_vrf_label_update(struct bgp *bgp, afi_t afi)
        if (bgp->vrf_id == VRF_UNKNOWN) {
                if (debug) {
                        zlog_debug(
-                               "%s: vrf %s: afi %s: vrf_id not set, "
-                               "can't set zebra vrf label",
+                               "%s: vrf %s: afi %s: vrf_id not set, can't set zebra vrf label",
                                __func__, bgp->name_pretty, afi2str(afi));
                }
                return;
index 00cc1f67a17db4b95698592ed0e9d7ea148bce9b..06aec9412ce812eeeaa46ddd81e37dedb518330e 100644 (file)
@@ -501,8 +501,7 @@ static int bgp_accept(struct thread *thread)
        if (BGP_PEER_START_SUPPRESSED(peer1)) {
                if (bgp_debug_neighbor_events(peer1))
                        zlog_debug(
-                               "[Event] Incoming BGP connection rejected from %s "
-                               "due to maximum-prefix or shutdown",
+                               "[Event] Incoming BGP connection rejected from %s due to maximum-prefix or shutdown",
                                peer1->host);
                close(bgp_sock);
                return -1;
@@ -518,8 +517,7 @@ static int bgp_accept(struct thread *thread)
                */
                if (bgp_debug_neighbor_events(peer1))
                        zlog_debug(
-                               "[Event] New active connection from peer %s, Killing"
-                               " previous active connection",
+                               "[Event] New active connection from peer %s, Killing previous active connection",
                                peer1->host);
                peer_delete(peer1->doppelganger);
        }
index 4a2f7d5882055ac3d1a1df431c20714870f11f90..732c8e6753f13061748c0df05fc15c7c66128b77 100644 (file)
@@ -332,8 +332,7 @@ static int bgp_capability_orf_entry(struct peer *peer,
        /* Convert AFI, SAFI to internal values, check. */
        if (bgp_map_afi_safi_iana2int(pkt_afi, pkt_safi, &afi, &safi)) {
                zlog_info(
-                       "%s Addr-family %d/%d not supported."
-                       " Ignoring the ORF capability",
+                       "%s Addr-family %d/%d not supported. Ignoring the ORF capability",
                        peer->host, pkt_afi, pkt_safi);
                return 0;
        }
@@ -344,8 +343,7 @@ static int bgp_capability_orf_entry(struct peer *peer,
        /* validate number field */
        if (CAPABILITY_CODE_ORF_LEN + (num * 2) > hdr->length) {
                zlog_info(
-                       "%s ORF Capability entry length error,"
-                       " Cap length %u, num %u",
+                       "%s ORF Capability entry length error, Cap length %u, num %u",
                        peer->host, hdr->length, num);
                bgp_notify_send(peer, BGP_NOTIFY_OPEN_ERR,
                                BGP_NOTIFY_OPEN_MALFORMED_ATTR);
@@ -407,8 +405,7 @@ static int bgp_capability_orf_entry(struct peer *peer,
 
                if (bgp_debug_neighbor_events(peer))
                        zlog_debug(
-                               "%s OPEN has %s ORF capability"
-                               " as %s for afi/safi: %s/%s",
+                               "%s OPEN has %s ORF capability as %s for afi/safi: %s/%s",
                                peer->host,
                                lookup_msg(orf_type_str, type, NULL),
                                lookup_msg(orf_mode_str, mode, NULL),
@@ -490,15 +487,13 @@ static int bgp_capability_restart(struct peer *peer,
                if (bgp_map_afi_safi_iana2int(pkt_afi, pkt_safi, &afi, &safi)) {
                        if (bgp_debug_neighbor_events(peer))
                                zlog_debug(
-                                       "%s Addr-family %s/%s(afi/safi) not supported."
-                                       " Ignore the Graceful Restart capability for this AFI/SAFI",
+                                       "%s Addr-family %s/%s(afi/safi) not supported. Ignore the Graceful Restart capability for this AFI/SAFI",
                                        peer->host, iana_afi2str(pkt_afi),
                                        iana_safi2str(pkt_safi));
                } else if (!peer->afc[afi][safi]) {
                        if (bgp_debug_neighbor_events(peer))
                                zlog_debug(
-                                       "%s Addr-family %s/%s(afi/safi) not enabled."
-                                       " Ignore the Graceful Restart capability",
+                                       "%s Addr-family %s/%s(afi/safi) not enabled. Ignore the Graceful Restart capability",
                                        peer->host, iana_afi2str(pkt_afi),
                                        iana_safi2str(pkt_safi));
                } else {
@@ -581,16 +576,14 @@ static int bgp_capability_addpath(struct peer *peer,
                if (bgp_map_afi_safi_iana2int(pkt_afi, pkt_safi, &afi, &safi)) {
                        if (bgp_debug_neighbor_events(peer))
                                zlog_debug(
-                                       "%s Addr-family %s/%s(afi/safi) not supported."
-                                       " Ignore the Addpath Attribute for this AFI/SAFI",
+                                       "%s Addr-family %s/%s(afi/safi) not supported. Ignore the Addpath Attribute for this AFI/SAFI",
                                        peer->host, iana_afi2str(pkt_afi),
                                        iana_safi2str(pkt_safi));
                        continue;
                } else if (!peer->afc[afi][safi]) {
                        if (bgp_debug_neighbor_events(peer))
                                zlog_debug(
-                                       "%s Addr-family %s/%s(afi/safi) not enabled."
-                                       " Ignore the AddPath capability for this AFI/SAFI",
+                                       "%s Addr-family %s/%s(afi/safi) not enabled. Ignore the AddPath capability for this AFI/SAFI",
                                        peer->host, iana_afi2str(pkt_afi),
                                        iana_safi2str(pkt_safi));
                        continue;
@@ -640,8 +633,7 @@ static int bgp_capability_enhe(struct peer *peer, struct capability_header *hdr)
                if (bgp_map_afi_safi_iana2int(pkt_afi, pkt_safi, &afi, &safi)) {
                        if (bgp_debug_neighbor_events(peer))
                                zlog_debug(
-                                       "%s Addr-family %s/%s(afi/safi) not supported."
-                                       " Ignore the ENHE Attribute for this AFI/SAFI",
+                                       "%s Addr-family %s/%s(afi/safi) not supported. Ignore the ENHE Attribute for this AFI/SAFI",
                                        peer->host, iana_afi2str(pkt_afi),
                                        iana_safi2str(pkt_safi));
                        continue;
@@ -662,8 +654,7 @@ static int bgp_capability_enhe(struct peer *peer, struct capability_header *hdr)
                         || safi == SAFI_LABELED_UNICAST)) {
                        flog_warn(
                                EC_BGP_CAPABILITY_INVALID_DATA,
-                               "%s Unexpected afi/safi/next-hop afi: %s/%s/%u "
-                               "in Extended Next-hop capability, ignoring",
+                               "%s Unexpected afi/safi/next-hop afi: %s/%s/%u in Extended Next-hop capability, ignoring",
                                peer->host, iana_afi2str(pkt_afi),
                                iana_safi2str(pkt_safi), pkt_nh_afi);
                        continue;
@@ -875,8 +866,7 @@ static int bgp_capability_parse(struct peer *peer, size_t length,
                        /* Check length. */
                        if (caphdr.length < cap_minsizes[caphdr.code]) {
                                zlog_info(
-                                       "%s %s Capability length error: got %u,"
-                                       " expected at least %u",
+                                       "%s %s Capability length error: got %u, expected at least %u",
                                        peer->host,
                                        lookup_msg(capcode_str, caphdr.code,
                                                   NULL),
@@ -889,8 +879,7 @@ static int bgp_capability_parse(struct peer *peer, size_t length,
                        if (caphdr.length
                            && caphdr.length % cap_modsizes[caphdr.code] != 0) {
                                zlog_info(
-                                       "%s %s Capability length error: got %u,"
-                                       " expected a multiple of %u",
+                                       "%s %s Capability length error: got %u, expected a multiple of %u",
                                        peer->host,
                                        lookup_msg(capcode_str, caphdr.code,
                                                   NULL),
@@ -1036,8 +1025,7 @@ as_t peek_for_as4_capability(struct peer *peer, uint8_t length)
 
        if (BGP_DEBUG(as4, AS4))
                zlog_debug(
-                       "%s [AS4] rcv OPEN w/ OPTION parameter len: %u,"
-                       " peeking for as4",
+                       "%s [AS4] rcv OPEN w/ OPTION parameter len: %u, peeking for as4",
                        peer->host, length);
        /* the error cases we DONT handle, we ONLY try to read as4 out of
         * correctly formatted options.
@@ -1211,8 +1199,7 @@ int bgp_open_option_parse(struct peer *peer, uint8_t length, int *mp_capability)
                    && !peer->afc_nego[AFI_IP6][SAFI_FLOWSPEC]
                    && !peer->afc_nego[AFI_L2VPN][SAFI_EVPN]) {
                        flog_err(EC_BGP_PKT_OPEN,
-                                "%s [Error] Configured AFI/SAFIs do not "
-                                "overlap with received MP capabilities",
+                                "%s [Error] Configured AFI/SAFIs do not overlap with received MP capabilities",
                                 peer->host);
 
                        if (error != error_data)
index 29c03f4014cebb52bde4e4128164a9940482e56b..380d15432e54b276128a6e06ac4ee7fcfad3cd5b 100644 (file)
@@ -1110,8 +1110,7 @@ static int bgp_open_receive(struct peer *peer, bgp_size_t size)
        /* Receive OPEN message log  */
        if (bgp_debug_neighbor_events(peer))
                zlog_debug(
-                       "%s rcv OPEN, version %d, remote-as (in open) %u,"
-                       " holdtime %d, id %s",
+                       "%s rcv OPEN, version %d, remote-as (in open) %u, holdtime %d, id %s",
                        peer->host, version, remote_as, holdtime,
                        inet_ntoa(remote_id));
 
@@ -1177,13 +1176,11 @@ static int bgp_open_receive(struct peer *peer, bgp_size_t size)
 
                if (!as4 && BGP_DEBUG(as4, AS4))
                        zlog_debug(
-                               "%s [AS4] OPEN remote_as is AS_TRANS, but no AS4."
-                               " Odd, but proceeding.",
+                               "%s [AS4] OPEN remote_as is AS_TRANS, but no AS4. Odd, but proceeding.",
                                peer->host);
                else if (as4 < BGP_AS_MAX && BGP_DEBUG(as4, AS4))
                        zlog_debug(
-                               "%s [AS4] OPEN remote_as is AS_TRANS, but AS4 (%u) fits "
-                               "in 2-bytes, very odd peer.",
+                               "%s [AS4] OPEN remote_as is AS_TRANS, but AS4 (%u) fits in 2-bytes, very odd peer.",
                                peer->host, as4);
                if (as4)
                        remote_as = as4;
@@ -1197,8 +1194,7 @@ static int bgp_open_receive(struct peer *peer, bgp_size_t size)
                        /* raise error, log this, close session */
                        flog_err(
                                EC_BGP_PKT_OPEN,
-                               "%s bad OPEN, got AS4 capability, but remote_as %u"
-                               " mismatch with 16bit 'myasn' %u in open",
+                               "%s bad OPEN, got AS4 capability, but remote_as %u mismatch with 16bit 'myasn' %u in open",
                                peer->host, as4, remote_as);
                        bgp_notify_send_with_data(peer, BGP_NOTIFY_OPEN_ERR,
                                                  BGP_NOTIFY_OPEN_BAD_PEER_AS,
@@ -1493,8 +1489,7 @@ static int bgp_update_receive(struct peer *peer, bgp_size_t size)
           Subcode is set to Malformed Attribute List.  */
        if (stream_pnt(s) + 2 > end) {
                flog_err(EC_BGP_UPDATE_RCV,
-                        "%s [Error] Update packet error"
-                        " (packet length is short for unfeasible length)",
+                        "%s [Error] Update packet error (packet length is short for unfeasible length)",
                         peer->host);
                bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
                                BGP_NOTIFY_UPDATE_MAL_ATTR);
@@ -1507,8 +1502,7 @@ static int bgp_update_receive(struct peer *peer, bgp_size_t size)
        /* Unfeasible Route Length check. */
        if (stream_pnt(s) + withdraw_len > end) {
                flog_err(EC_BGP_UPDATE_RCV,
-                        "%s [Error] Update packet error"
-                        " (packet unfeasible length overflow %d)",
+                        "%s [Error] Update packet error (packet unfeasible length overflow %d)",
                         peer->host, withdraw_len);
                bgp_notify_send(peer, BGP_NOTIFY_UPDATE_ERR,
                                BGP_NOTIFY_UPDATE_MAL_ATTR);
@@ -2063,8 +2057,7 @@ static int bgp_route_refresh_receive(struct peer *peer, bgp_size_t size)
 
                                        if (!ok || (ok && ret != CMD_SUCCESS)) {
                                                zlog_info(
-                                                       "%s Received misformatted prefixlist ORF."
-                                                       " Remove All pfxlist",
+                                                       "%s Received misformatted prefixlist ORF. Remove All pfxlist",
                                                        peer->host);
                                                prefix_bgp_orf_remove_all(afi,
                                                                          name);
@@ -2194,8 +2187,7 @@ static int bgp_capability_msg_parse(struct peer *peer, uint8_t *pnt,
                                                      &safi)) {
                                if (bgp_debug_neighbor_events(peer))
                                        zlog_debug(
-                                               "%s Dynamic Capability MP_EXT afi/safi invalid "
-                                               "(%s/%s)",
+                                               "%s Dynamic Capability MP_EXT afi/safi invalid (%s/%s)",
                                                peer->host,
                                                iana_afi2str(pkt_afi),
                                                iana_safi2str(pkt_safi));
index 535a45690bc7c38a83b7f01c71d4b0d402a3edea..7c3e8cd70e1b4fe77cee00fc08e5419dc1738e5f 100644 (file)
@@ -486,8 +486,7 @@ static int bgp_pbr_validate_policy_route(struct bgp_pbr_entry_main *api)
         */
        if (api->match_protocol_num > 1) {
                if (BGP_DEBUG(pbr, PBR))
-                       zlog_debug("BGP: match protocol operations:"
-                                "multiple protocols ( %d). ignoring.",
+                       zlog_debug("BGP: match protocol operations:multiple protocols ( %d). ignoring.",
                                 api->match_protocol_num);
                return 0;
        }
@@ -496,21 +495,18 @@ static int bgp_pbr_validate_policy_route(struct bgp_pbr_entry_main *api)
            api->protocol[0].value != PROTOCOL_ICMP &&
            api->protocol[0].value != PROTOCOL_TCP) {
                if (BGP_DEBUG(pbr, PBR))
-                       zlog_debug("BGP: match protocol operations:"
-                                  "protocol (%d) not supported. ignoring",
+                       zlog_debug("BGP: match protocol operations:protocol (%d) not supported. ignoring",
                                   api->match_protocol_num);
                return 0;
        }
        if (!bgp_pbr_extract(api->src_port, api->match_src_port_num, NULL)) {
                if (BGP_DEBUG(pbr, PBR))
-                       zlog_debug("BGP: match src port operations:"
-                                  "too complex. ignoring.");
+                       zlog_debug("BGP: match src port operations:too complex. ignoring.");
                return 0;
        }
        if (!bgp_pbr_extract(api->dst_port, api->match_dst_port_num, NULL)) {
                if (BGP_DEBUG(pbr, PBR))
-                       zlog_debug("BGP: match dst port operations:"
-                                  "too complex. ignoring.");
+                       zlog_debug("BGP: match dst port operations:too complex. ignoring.");
                return 0;
        }
        if (!bgp_pbr_extract_enumerate(api->tcpflags,
@@ -519,8 +515,7 @@ static int bgp_pbr_validate_policy_route(struct bgp_pbr_entry_main *api)
                                       OPERATOR_UNARY_OR, NULL,
                                       FLOWSPEC_TCP_FLAGS)) {
                if (BGP_DEBUG(pbr, PBR))
-                       zlog_debug("BGP: match tcp flags:"
-                                  "too complex. ignoring.");
+                       zlog_debug("BGP: match tcp flags:too complex. ignoring.");
                return 0;
        }
        if (!bgp_pbr_extract(api->icmp_type, api->match_icmp_type_num, NULL)) {
@@ -529,8 +524,7 @@ static int bgp_pbr_validate_policy_route(struct bgp_pbr_entry_main *api)
                                               OPERATOR_UNARY_OR, NULL,
                                               FLOWSPEC_ICMP_TYPE)) {
                        if (BGP_DEBUG(pbr, PBR))
-                               zlog_debug("BGP: match icmp type operations:"
-                                          "too complex. ignoring.");
+                               zlog_debug("BGP: match icmp type operations:too complex. ignoring.");
                        return 0;
                }
                enumerate_icmp = true;
@@ -541,22 +535,18 @@ static int bgp_pbr_validate_policy_route(struct bgp_pbr_entry_main *api)
                                               OPERATOR_UNARY_OR, NULL,
                                               FLOWSPEC_ICMP_CODE)) {
                        if (BGP_DEBUG(pbr, PBR))
-                               zlog_debug("BGP: match icmp code operations:"
-                                          "too complex. ignoring.");
+                               zlog_debug("BGP: match icmp code operations:too complex. ignoring.");
                        return 0;
                } else if (api->match_icmp_type_num > 1 &&
                           !enumerate_icmp) {
                        if (BGP_DEBUG(pbr, PBR))
-                               zlog_debug("BGP: match icmp code is enumerate"
-                                          ", and icmp type is not."
-                                          " too complex. ignoring.");
+                               zlog_debug("BGP: match icmp code is enumerate, and icmp type is not. too complex. ignoring.");
                        return 0;
                }
        }
        if (!bgp_pbr_extract(api->port, api->match_port_num, NULL)) {
                if (BGP_DEBUG(pbr, PBR))
-                       zlog_debug("BGP: match port operations:"
-                                "too complex. ignoring.");
+                       zlog_debug("BGP: match port operations:too complex. ignoring.");
                return 0;
        }
        if (api->match_packet_length_num) {
@@ -572,8 +562,7 @@ static int bgp_pbr_validate_policy_route(struct bgp_pbr_entry_main *api)
                                                NULL, FLOWSPEC_PKT_LEN);
                if (!ret) {
                        if (BGP_DEBUG(pbr, PBR))
-                               zlog_debug("BGP: match packet length operations:"
-                                  "too complex. ignoring.");
+                               zlog_debug("BGP: match packet length operations:too complex. ignoring.");
                        return 0;
                }
        }
@@ -582,8 +571,7 @@ static int bgp_pbr_validate_policy_route(struct bgp_pbr_entry_main *api)
                                OPERATOR_UNARY_OR | OPERATOR_UNARY_AND,
                                               NULL, FLOWSPEC_DSCP)) {
                        if (BGP_DEBUG(pbr, PBR))
-                               zlog_debug("BGP: match DSCP operations:"
-                                          "too complex. ignoring.");
+                               zlog_debug("BGP: match DSCP operations:too complex. ignoring.");
                        return 0;
                }
        }
@@ -629,16 +617,14 @@ static int bgp_pbr_validate_policy_route(struct bgp_pbr_entry_main *api)
        if (api->match_src_port_num + api->match_dst_port_num +
            api->match_port_num > 3) {
                if (BGP_DEBUG(pbr, PBR))
-                       zlog_debug("BGP: match multiple port operations:"
-                                " too complex. ignoring.");
+                       zlog_debug("BGP: match multiple port operations: too complex. ignoring.");
                return 0;
        }
        if ((api->match_src_port_num || api->match_dst_port_num
             || api->match_port_num) && (api->match_icmp_type_num
                                         || api->match_icmp_code_num)) {
                if (BGP_DEBUG(pbr, PBR))
-                       zlog_debug("BGP: match multiple port/imcp operations:"
-                                " too complex. ignoring.");
+                       zlog_debug("BGP: match multiple port/imcp operations: too complex. ignoring.");
                return 0;
        }
        /* iprule only supports redirect IP */
@@ -650,24 +636,21 @@ static int bgp_pbr_validate_policy_route(struct bgp_pbr_entry_main *api)
                            api->actions[i].u.r.rate == 0) {
                                if (BGP_DEBUG(pbr, PBR)) {
                                        bgp_pbr_print_policy_route(api);
-                                       zlog_debug("BGP: iprule match actions"
-                                                  " drop not supported");
+                                       zlog_debug("BGP: iprule match actions drop not supported");
                                }
                                return 0;
                        }
                        if (api->actions[i].action == ACTION_MARKING) {
                                if (BGP_DEBUG(pbr, PBR)) {
                                        bgp_pbr_print_policy_route(api);
-                                       zlog_warn("PBR: iprule set DSCP %u"
-                                                 " not supported",
+                                       zlog_warn("PBR: iprule set DSCP %u not supported",
                                                api->actions[i].u.marking_dscp);
                                }
                        }
                        if (api->actions[i].action == ACTION_REDIRECT) {
                                if (BGP_DEBUG(pbr, PBR)) {
                                        bgp_pbr_print_policy_route(api);
-                                       zlog_warn("PBR: iprule redirect VRF %u"
-                                               " not supported",
+                                       zlog_warn("PBR: iprule redirect VRF %u not supported",
                                                api->actions[i].u.redirect_vrf);
                                }
                        }
@@ -677,9 +660,7 @@ static int bgp_pbr_validate_policy_route(struct bgp_pbr_entry_main *api)
                   !(api->match_bitmask & PREFIX_DST_PRESENT)) {
                if (BGP_DEBUG(pbr, PBR)) {
                        bgp_pbr_print_policy_route(api);
-                       zlog_debug("BGP: match actions without src"
-                                  " or dst address can not operate."
-                                  " ignoring.");
+                       zlog_debug("BGP: match actions without src or dst address can not operate. ignoring.");
                }
                return 0;
        }
@@ -845,8 +826,7 @@ int bgp_pbr_build_and_validate_entry(const struct prefix *p,
                if (valid_prefix && afi != family2afi(dst->family)) {
                        if (BGP_DEBUG(pbr, PBR)) {
                                bgp_pbr_print_policy_route(api);
-                               zlog_debug("%s: inconsistency:"
-                                    " no match for afi src and dst (%u/%u)",
+                               zlog_debug("%s: inconsistency: no match for afi src and dst (%u/%u)",
                                     __func__, afi, family2afi(dst->family));
                        }
                        return -1;
@@ -2097,8 +2077,7 @@ static void bgp_pbr_policyroute_add_to_zebra_unit(struct bgp *bgp,
                            listnode_lookup_nocheck(extra->bgp_fs_iprule,
                                                    bpr)) {
                                if (BGP_DEBUG(pbr, PBR_ERROR))
-                                       zlog_err("%s: entry %p/%p already "
-                                                "installed in bgp pbr iprule",
+                                       zlog_err("%s: entry %p/%p already installed in bgp pbr iprule",
                                                 __func__, path, bpr);
                                return;
                        }
index 19e398fc88a48b4ced70290c5e7ce26c0baa6aa9..2d5b71da5a1ac91c271541ad40c78640dea7cb00 100644 (file)
@@ -1690,8 +1690,7 @@ bool subgroup_announce_check(struct bgp_dest *dest, struct bgp_path_info *pi,
            && (IPV4_ADDR_SAME(&onlypeer->remote_id, &piattr->originator_id))) {
                if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
                        zlog_debug(
-                               "%s [Update:SEND] %s originator-id is same as "
-                               "remote router-id",
+                               "%s [Update:SEND] %s originator-id is same as remote router-id",
                                onlypeer->host,
                                prefix2str(p, buf, sizeof(buf)));
                return false;
@@ -1729,8 +1728,7 @@ bool subgroup_announce_check(struct bgp_dest *dest, struct bgp_path_info *pi,
            && aspath_loop_check(piattr->aspath, onlypeer->as)) {
                if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
                        zlog_debug(
-                               "%s [Update:SEND] suppress announcement to peer AS %u "
-                               "that is part of AS path.",
+                               "%s [Update:SEND] suppress announcement to peer AS %u that is part of AS path.",
                                onlypeer->host, onlypeer->as);
                return false;
        }
@@ -1740,8 +1738,7 @@ bool subgroup_announce_check(struct bgp_dest *dest, struct bgp_path_info *pi,
                if (aspath_loop_check(piattr->aspath, bgp->confed_id)) {
                        if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
                                zlog_debug(
-                                       "%s [Update:SEND] suppress announcement to peer AS %u"
-                                       " is AS path.",
+                                       "%s [Update:SEND] suppress announcement to peer AS %u is AS path.",
                                        peer->host, bgp->confed_id);
                        return false;
                }
@@ -10939,8 +10936,7 @@ DEFUN (show_ip_bgp_json,
 
 DEFUN (show_ip_bgp_route,
        show_ip_bgp_route_cmd,
-       "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]]"
-       "<A.B.C.D|A.B.C.D/M|X:X::X:X|X:X::X:X/M> [<bestpath|multipath>] [json]",
+       "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]]<A.B.C.D|A.B.C.D/M|X:X::X:X|X:X::X:X/M> [<bestpath|multipath>] [json]",
        SHOW_STR
        IP_STR
        BGP_STR
@@ -11809,8 +11805,7 @@ static int bgp_peer_counts(struct vty *vty, struct peer *peer, afi_t afi,
 
 DEFUN (show_ip_bgp_instance_neighbor_prefix_counts,
        show_ip_bgp_instance_neighbor_prefix_counts_cmd,
-       "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_CMD_STR"]] "
-       "neighbors <A.B.C.D|X:X::X:X|WORD> prefix-counts [json]",
+       "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_CMD_STR"]] neighbors <A.B.C.D|X:X::X:X|WORD> prefix-counts [json]",
        SHOW_STR
        IP_STR
        BGP_STR
@@ -12304,8 +12299,7 @@ static int peer_adj_routes(struct vty *vty, struct peer *peer, afi_t afi,
 
 DEFUN (show_ip_bgp_instance_neighbor_advertised_route,
        show_ip_bgp_instance_neighbor_advertised_route_cmd,
-       "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] "
-       "neighbors <A.B.C.D|X:X::X:X|WORD> <advertised-routes|received-routes|filtered-routes> [route-map WORD] [json]",
+       "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] neighbors <A.B.C.D|X:X::X:X|WORD> <advertised-routes|received-routes|filtered-routes> [route-map WORD] [json]",
        SHOW_STR
        IP_STR
        BGP_STR
@@ -12501,8 +12495,7 @@ DEFUN (show_ip_bgp_flowspec_routes_detailed,
 
 DEFUN (show_ip_bgp_neighbor_routes,
        show_ip_bgp_neighbor_routes_cmd,
-       "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] "
-       "neighbors <A.B.C.D|X:X::X:X|WORD> <flap-statistics|dampened-routes|routes> [json]",
+       "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] neighbors <A.B.C.D|X:X::X:X|WORD> <flap-statistics|dampened-routes|routes> [json]",
        SHOW_STR
        IP_STR
        BGP_STR
index aafeb147625c90a31c06e97f77dff4025f775fdd..97153cfb72421f1f268459e05842f5368b75ba23 100644 (file)
@@ -3756,8 +3756,7 @@ static void bgp_route_map_process_update(struct bgp *bgp, const char *rmap_name,
 
                        if (BGP_DEBUG(zebra, ZEBRA))
                                zlog_debug(
-                                       "Processing route_map %s update on "
-                                       "table map",
+                                       "Processing route_map %s update on table map",
                                        rmap_name);
                        if (route_update)
                                bgp_zebra_announce_table(bgp, afi, safi);
index d904b9f6f143f7b275c2269d953e7a456827be5d..63cfacf678441229c25203c53d384b2a434390f8 100644 (file)
@@ -1123,9 +1123,7 @@ DEFUN_HIDDEN (no_rpki_synchronisation_timeout,
 
 DEFPY (rpki_cache,
        rpki_cache_cmd,
-       "rpki cache <A.B.C.D|WORD>"
-       "<TCPPORT|(1-65535)$sshport SSH_UNAME SSH_PRIVKEY SSH_PUBKEY [SERVER_PUBKEY]> "
-       "preference (1-255)",
+       "rpki cache <A.B.C.D|WORD><TCPPORT|(1-65535)$sshport SSH_UNAME SSH_PRIVKEY SSH_PUBKEY [SERVER_PUBKEY]> preference (1-255)",
        RPKI_OUTPUT_STRING
        "Install a cache server to current group\n"
        "IP address of cache server\n Hostname of cache server\n"
@@ -1161,9 +1159,7 @@ DEFPY (rpki_cache,
 #else
                return_value = SUCCESS;
                vty_out(vty,
-                       "ssh sockets are not supported. "
-                       "Please recompile rtrlib and frr with ssh support. "
-                       "If you want to use it\n");
+                       "ssh sockets are not supported. Please recompile rtrlib and frr with ssh support. If you want to use it\n");
 #endif
        } else { // use tcp connection
                return_value = add_tcp_cache(cache, tcpport, preference);
@@ -1323,8 +1319,7 @@ DEFUN (show_rpki_cache_server,
 #if defined(FOUND_SSH)
                } else if (cache->type == SSH) {
                        vty_out(vty,
-                               "host: %s port: %d username: %s "
-                               "server_hostkey_path: %s client_privkey_path: %s\n",
+                               "host: %s port: %d username: %s server_hostkey_path: %s client_privkey_path: %s\n",
                                cache->tr_config.ssh_config->host,
                                cache->tr_config.ssh_config->port,
                                cache->tr_config.ssh_config->username,
index 426b84f91fea92db55d16787c31c078fc49396e2..ee443aa66c76662221d7447719855742827293f8 100644 (file)
@@ -1077,8 +1077,7 @@ static void update_subgroup_merge(struct update_subgroup *subgrp,
        if (BGP_DEBUG(update_groups, UPDATE_GROUPS))
                zlog_debug("u%" PRIu64 ":s%" PRIu64
                           " (%d peers) merged into u%" PRIu64 ":s%" PRIu64
-                          ", "
-                          "trigger: %s",
+                          ", trigger: %s",
                           subgrp->update_group->id, subgrp->id, peer_count,
                           target->update_group->id, target->id,
                           reason ? reason : "unknown");
index fe52b73438a1844d2e43fb17cc4202f258dd6693..bc4da6e26e8da25dcb53c9f589d1f89ba5aa0c7f 100644 (file)
@@ -4330,8 +4330,7 @@ static int peer_flag_modify_vty(struct vty *vty, const char *ip_str,
         */
        if (peer->conf_if && (flag == PEER_FLAG_DISABLE_CONNECTED_CHECK)) {
                vty_out(vty,
-                       "%s is directly connected peer, cannot accept disable-"
-                       "connected-check\n",
+                       "%s is directly connected peer, cannot accept disable-connected-check\n",
                        ip_str);
                return CMD_WARNING_CONFIG_FAILED;
        }
index 14bfc20b22facba799943c668a7bf9d0884f660f..e11ac459f28d0c709f3d1e71c04e6512b360ed0d 100644 (file)
@@ -2707,8 +2707,7 @@ int peer_group_listen_range_del(struct peer_group *group, struct prefix *range)
                if (prefix_match(prefix, &prefix2)) {
                        if (bgp_debug_neighbor_events(peer))
                                zlog_debug(
-                                       "Deleting dynamic neighbor %s group %s upon "
-                                       "delete of listen range %s",
+                                       "Deleting dynamic neighbor %s group %s upon delete of listen range %s",
                                        peer->host, group->name, buf);
                        peer_delete(peer);
                }
index c935496280c96bf91d4929e0428cce2c7db0a684..0ff4b2c825103f14c64cecfd0912d5a51ae63295 100644 (file)
@@ -3747,8 +3747,7 @@ int rfapi_set_autord_from_vn(struct prefix_rd *rd, struct rfapi_ip_addr *vn)
        vnc_zlog_debug_verbose("%s: auto-assigning RD", __func__);
        if (vn->addr_family != AF_INET && vn->addr_family != AF_INET6) {
                vnc_zlog_debug_verbose(
-                       "%s: can't auto-assign RD, VN addr family is not IPv4"
-                       "|v6",
+                       "%s: can't auto-assign RD, VN addr family is not IPv4|v6",
                        __func__);
                return EAFNOSUPPORT;
        }
index 95b8582b95916d4f5ee41c28467caa7f6d9f4e11..e068eb7af62ce8a74e7416b08c65582c8e225d99 100644 (file)
@@ -646,9 +646,7 @@ static void rfapiRibBi2Ri(struct bgp_path_info *bpi, struct rfapi_info *ri,
                               pEncap->length - 2);
                        if (hop->length > pEncap->length - 2) {
                                zlog_warn(
-                                       "%s: VNC subtlv length mismatch: "
-                                       "RFP option says %d, attr says %d "
-                                       "(shrinking)",
+                                       "%s: VNC subtlv length mismatch: RFP option says %d, attr says %d (shrinking)",
                                        __func__, hop->length,
                                        pEncap->length - 2);
                                hop->length = pEncap->length - 2;
index a3d6eb2e9e97ea2c90318b14282ed68ba7049fb1..0874ce3f195a32f4df1be465716fe95e43d021cf 100644 (file)
@@ -234,8 +234,7 @@ void show_ip_eigrp_topology_header(struct vty *vty, struct eigrp *eigrp)
        vty_out(vty, "\nEIGRP Topology Table for AS(%d)/ID(%s)\n\n", eigrp->AS,
                inet_ntoa(eigrp->router_id));
        vty_out(vty,
-               "Codes: P - Passive, A - Active, U - Update, Q - Query, "
-               "R - Reply\n       r - reply Status, s - sia Status\n\n");
+               "Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply\n       r - reply Status, s - sia Status\n\n");
 }
 
 void show_ip_eigrp_prefix_entry(struct vty *vty, struct eigrp_prefix_entry *tn)
index 072ff2970551b94a05763b57780a89695c8e2343..92b5ce34826470120f92d57a71ce20a058ee73e6 100644 (file)
@@ -160,8 +160,7 @@ int eigrp_if_ipmulticast(struct eigrp *top, struct prefix *p,
        ret = setsockopt_ipv4_multicast_if(top->fd, p->u.prefix4, ifindex);
        if (ret < 0)
                zlog_warn(
-                       "can't setsockopt IP_MULTICAST_IF (fd %d, addr %s, "
-                       "ifindex %u): %s",
+                       "can't setsockopt IP_MULTICAST_IF (fd %d, addr %s, ifindex %u): %s",
                        top->fd, inet_ntoa(p->u.prefix4), ifindex,
                        safe_strerror(errno));
 
@@ -179,9 +178,7 @@ int eigrp_if_add_allspfrouters(struct eigrp *top, struct prefix *p,
                htonl(EIGRP_MULTICAST_ADDRESS), ifindex);
        if (ret < 0)
                zlog_warn(
-                       "can't setsockopt IP_ADD_MEMBERSHIP (fd %d, addr %s, "
-                       "ifindex %u, AllSPFRouters): %s; perhaps a kernel limit "
-                       "on # of multicast group memberships has been exceeded?",
+                       "can't setsockopt IP_ADD_MEMBERSHIP (fd %d, addr %s, ifindex %u, AllSPFRouters): %s; perhaps a kernel limit on # of multicast group memberships has been exceeded?",
                        top->fd, inet_ntoa(p->u.prefix4), ifindex,
                        safe_strerror(errno));
        else
@@ -201,8 +198,7 @@ int eigrp_if_drop_allspfrouters(struct eigrp *top, struct prefix *p,
                htonl(EIGRP_MULTICAST_ADDRESS), ifindex);
        if (ret < 0)
                zlog_warn(
-                       "can't setsockopt IP_DROP_MEMBERSHIP (fd %d, addr %s, "
-                       "ifindex %u, AllSPFRouters): %s",
+                       "can't setsockopt IP_DROP_MEMBERSHIP (fd %d, addr %s, ifindex %u, AllSPFRouters): %s",
                        top->fd, inet_ntoa(p->u.prefix4), ifindex,
                        safe_strerror(errno));
        else
index 6090a1ef13280ef4a022185b94230ca5c3da7da6..cfff63f839da8b89ac67cdaf68d51daf8d5d76e6 100644 (file)
@@ -449,8 +449,7 @@ int eigrp_write(struct thread *thread)
 
        if (ret < 0)
                zlog_warn(
-                       "*** sendmsg in eigrp_write failed to %s, "
-                       "id %d, off %d, len %d, interface %s, mtu %u: %s",
+                       "*** sendmsg in eigrp_write failed to %s, id %d, off %d, len %d, interface %s, mtu %u: %s",
                        inet_ntoa(iph.ip_dst), iph.ip_id, iph.ip_off,
                        iph.ip_len, ei->ifp->name, ei->ifp->mtu,
                        safe_strerror(errno));
@@ -578,8 +577,7 @@ int eigrp_read(struct thread *thread)
 
                if (IS_DEBUG_EIGRP_TRANSMIT(0, RECV))
                        zlog_debug(
-                               "ignoring packet from router %s sent to %s, "
-                               "received on a passive interface, %s",
+                               "ignoring packet from router %s sent to %s, received on a passive interface, %s",
                                inet_ntop(AF_INET, &eigrph->vrid, buf[0],
                                          sizeof(buf[0])),
                                inet_ntop(AF_INET, &iph->ip_dst, buf[1],
@@ -736,8 +734,7 @@ static struct stream *eigrp_recv_packet(struct eigrp *eigrp,
        if ((unsigned int)ret < sizeof(*iph)) /* ret must be > 0 now */
        {
                zlog_warn(
-                       "eigrp_recv_packet: discarding runt packet of length %d "
-                       "(ip header size is %u)",
+                       "eigrp_recv_packet: discarding runt packet of length %d (ip header size is %u)",
                        ret, (unsigned int)sizeof(*iph));
                return NULL;
        }
@@ -782,8 +779,7 @@ static struct stream *eigrp_recv_packet(struct eigrp *eigrp,
 
        if (ret != ip_len) {
                zlog_warn(
-                       "eigrp_recv_packet read length mismatch: ip_len is %d, "
-                       "but recvmsg returned %d",
+                       "eigrp_recv_packet read length mismatch: ip_len is %d, but recvmsg returned %d",
                        ip_len, ret);
                return NULL;
        }
index 19695e7ab46ac34c0a71950f13824a6558adabb5..9599077771749b5a66a33d4403d3399e4552a8be 100644 (file)
@@ -273,8 +273,7 @@ int isis_send_pdu_bcast(struct isis_circuit *circuit, int level)
        buflen = stream_get_endp(circuit->snd_stream) + LLC_LEN + ETHER_HDR_LEN;
        if (buflen > sizeof(sock_buff)) {
                zlog_warn(
-                       "isis_send_pdu_bcast: sock_buff size %zu is less than "
-                       "output pdu size %zu on circuit %s",
+                       "isis_send_pdu_bcast: sock_buff size %zu is less than output pdu size %zu on circuit %s",
                        sizeof(sock_buff), buflen, circuit->interface->name);
                return ISIS_WARNING;
        }
index e0e82e4725331c8ef067087937a4d2711cb850e6..253ba22667d494e6a2b36980e36b110c0c27162b 100644 (file)
@@ -914,15 +914,13 @@ void isis_circuit_print_vty(struct isis_circuit *circuit, struct vty *vty,
                                vty_out(vty, ", Active neighbors: %u\n",
                                        circuit->upadjcount[0]);
                                vty_out(vty,
-                                       "      Hello interval: %u, "
-                                       "Holddown count: %u %s\n",
+                                       "      Hello interval: %u, Holddown count: %u %s\n",
                                        circuit->hello_interval[0],
                                        circuit->hello_multiplier[0],
                                        (circuit->pad_hellos ? "(pad)"
                                                             : "(no-pad)"));
                                vty_out(vty,
-                                       "      CNSP interval: %u, "
-                                       "PSNP interval: %u\n",
+                                       "      CNSP interval: %u, PSNP interval: %u\n",
                                        circuit->csnp_interval[0],
                                        circuit->psnp_interval[0]);
                                if (circuit->circ_type == CIRCUIT_T_BROADCAST)
@@ -948,15 +946,13 @@ void isis_circuit_print_vty(struct isis_circuit *circuit, struct vty *vty,
                                vty_out(vty, ", Active neighbors: %u\n",
                                        circuit->upadjcount[1]);
                                vty_out(vty,
-                                       "      Hello interval: %u, "
-                                       "Holddown count: %u %s\n",
+                                       "      Hello interval: %u, Holddown count: %u %s\n",
                                        circuit->hello_interval[1],
                                        circuit->hello_multiplier[1],
                                        (circuit->pad_hellos ? "(pad)"
                                                             : "(no-pad)"));
                                vty_out(vty,
-                                       "      CNSP interval: %u, "
-                                       "PSNP interval: %u\n",
+                                       "      CNSP interval: %u, PSNP interval: %u\n",
                                        circuit->csnp_interval[1],
                                        circuit->psnp_interval[1]);
                                if (circuit->circ_type == CIRCUIT_T_BROADCAST)
index df69b1c7bee3d630b9d2911c55b60b52aaa92773..28b98610b205bdf2135866d3bf166f04b1ff768b 100644 (file)
@@ -1111,9 +1111,7 @@ DEFPY(isis_mpls_te_inter_as, isis_mpls_te_inter_as_cmd,
  * XPath: /frr-isisd:isis/instance/default-information-originate
  */
 DEFPY(isis_default_originate, isis_default_originate_cmd,
-      "[no] default-information originate <ipv4|ipv6>$ip"
-      " <level-1|level-2>$level [always]$always"
-      " [{metric (0-16777215)$metric|route-map WORD$rmap}]",
+      "[no] default-information originate <ipv4|ipv6>$ip <level-1|level-2>$level [always]$always [{metric (0-16777215)$metric|route-map WORD$rmap}]",
       NO_STR
       "Control distribution of default information\n"
       "Distribute a default route\n"
@@ -1190,9 +1188,7 @@ void cli_show_isis_def_origin_ipv6(struct vty *vty, struct lyd_node *dnode,
  */
 DEFPY(isis_redistribute, isis_redistribute_cmd,
       "[no] redistribute <ipv4|ipv6>$ip " PROTO_REDIST_STR
-      "$proto"
-      " <level-1|level-2>$level"
-      " [{metric (0-16777215)|route-map WORD}]",
+      "$proto <level-1|level-2>$level [{metric (0-16777215)|route-map WORD}]",
       NO_STR REDIST_STR
       "Redistribute IPv4 routes\n"
       "Redistribute IPv6 routes\n" PROTO_REDIST_HELP
@@ -1250,15 +1246,7 @@ void cli_show_isis_redistribute_ipv6(struct vty *vty, struct lyd_node *dnode,
  * XPath: /frr-isisd:isis/instance/multi-topology
  */
 DEFPY(isis_topology, isis_topology_cmd,
-      "[no] topology "
-      "<ipv4-unicast"
-      "|ipv4-mgmt"
-      "|ipv6-unicast"
-      "|ipv4-multicast"
-      "|ipv6-multicast"
-      "|ipv6-mgmt"
-      "|ipv6-dstsrc>$topology "
-      "[overload]$overload",
+      "[no] topology <ipv4-unicast|ipv4-mgmt|ipv6-unicast|ipv4-multicast|ipv6-multicast|ipv6-mgmt|ipv6-dstsrc>$topology [overload]$overload",
       NO_STR
       "Configure IS-IS topologies\n"
       "IPv4 unicast topology\n"
@@ -2011,15 +1999,7 @@ void cli_show_ip_isis_psnp_interval(struct vty *vty, struct lyd_node *dnode,
  * XPath: /frr-interface:lib/interface/frr-isisd:isis/multi-topology
  */
 DEFPY(circuit_topology, circuit_topology_cmd,
-      "[no] isis topology"
-      "<ipv4-unicast"
-      "|ipv4-mgmt"
-      "|ipv6-unicast"
-      "|ipv4-multicast"
-      "|ipv6-multicast"
-      "|ipv6-mgmt"
-      "|ipv6-dstsrc"
-      ">$topology",
+      "[no] isis topology<ipv4-unicast|ipv4-mgmt|ipv6-unicast|ipv4-multicast|ipv6-multicast|ipv6-mgmt|ipv6-dstsrc>$topology",
       NO_STR
       "IS-IS routing protocol\n"
       "Configure interface IS-IS topologies\n"
index 5c15d1d29df298a8c12f8d80ac9389a696655cc7..06fb41430c27db85b659635f1e7ed3518a4ac696 100644 (file)
@@ -566,8 +566,7 @@ int isis_send_pdu_bcast(struct isis_circuit *circuit, int level)
        buflen = stream_get_endp(circuit->snd_stream) + LLC_LEN;
        if ((size_t)buflen > sizeof(sock_buff)) {
                zlog_warn(
-                       "isis_send_pdu_bcast: sock_buff size %zu is less than "
-                       "output pdu size %d on circuit %s",
+                       "isis_send_pdu_bcast: sock_buff size %zu is less than output pdu size %d on circuit %s",
                        sizeof(sock_buff), buflen, circuit->interface->name);
                return ISIS_WARNING;
        }
index 63303e2308946a4fce3e65bb24ea7c827fa57de7..30ffaf4a75ac81c463cbacff873a38987aca6a3a 100644 (file)
@@ -1413,8 +1413,7 @@ int _lsp_regenerate_schedule(struct isis_area *area, int level,
                return ISIS_ERROR;
 
        sched_debug(
-               "ISIS (%s): Scheduling regeneration of %s LSPs, %sincluding PSNs"
-               " Caller: %s %s:%d",
+               "ISIS (%s): Scheduling regeneration of %s LSPs, %sincluding PSNs Caller: %s %s:%d",
                area->area_tag, circuit_t2string(level),
                all_pseudo ? "" : "not ",
                func, file, line);
@@ -1444,8 +1443,7 @@ int _lsp_regenerate_schedule(struct isis_area *area, int level,
                        struct timeval remain = thread_timer_remain(
                                area->t_lsp_refresh[lvl - 1]);
                        sched_debug(
-                               "ISIS (%s): Regeneration is already pending, nothing todo."
-                               " (Due in %lld.%03lld seconds)",
+                               "ISIS (%s): Regeneration is already pending, nothing todo. (Due in %lld.%03lld seconds)",
                                area->area_tag, (long long)remain.tv_sec,
                                (long long)remain.tv_usec / 1000);
                        continue;
@@ -1817,8 +1815,7 @@ int lsp_regenerate_schedule_pseudo(struct isis_circuit *circuit, int level)
                        struct timeval remain = thread_timer_remain(
                                circuit->u.bc.t_refresh_pseudo_lsp[lvl - 1]);
                        sched_debug(
-                               "ISIS (%s): Regenerate is already pending, nothing todo."
-                               " (Due in %lld.%03lld seconds)",
+                               "ISIS (%s): Regenerate is already pending, nothing todo. (Due in %lld.%03lld seconds)",
                                area->area_tag, (long long)remain.tv_sec,
                                (long long)remain.tv_usec / 1000);
                        continue;
@@ -1851,8 +1848,7 @@ int lsp_regenerate_schedule_pseudo(struct isis_circuit *circuit, int level)
                } else {
                        timeout = 100;
                        sched_debug(
-                               "ISIS (%s): Last generation was more than lsp_gen_interval ago."
-                               " Scheduling for execution in %ld ms.",
+                               "ISIS (%s): Last generation was more than lsp_gen_interval ago. Scheduling for execution in %ld ms.",
                                area->area_tag, timeout);
                }
 
@@ -1930,8 +1926,7 @@ int lsp_tick(struct thread *thread)
 
                        if (lsp->age_out == 0) {
                                zlog_debug(
-                                       "ISIS-Upd (%s): L%u LSP %s seq "
-                                       "0x%08" PRIx32 " aged out",
+                                       "ISIS-Upd (%s): L%u LSP %s seq 0x%08" PRIx32 " aged out",
                                        area->area_tag, lsp->level,
                                        rawlspid_print(lsp->hdr.lsp_id),
                                        lsp->hdr.seqno);
index cb5b47bbd6e6be0dd3017cc09537f675c05d3686..2317b166c6e0344db8576525e27b5d5fda83bf95 100644 (file)
@@ -185,8 +185,7 @@ FRR_DAEMON_INFO(isisd, ISIS, .vty_port = ISISD_VTY_PORT,
                .proghelp = "Implementation of the IS-IS routing protocol.",
 #endif
                .copyright =
-                       "Copyright (c) 2001-2002 Sampo Saaristo,"
-                       " Ofer Wald and Hannes Gredler",
+                       "Copyright (c) 2001-2002 Sampo Saaristo, Ofer Wald and Hannes Gredler",
 
                .signals = isisd_signals,
                .n_signals = array_size(isisd_signals),
index b5377142b6a0fa956df62a9e38873b70ca732a8a..b886f98ca17d397c20fc4ba58a3183185e9c914b 100644 (file)
@@ -427,8 +427,7 @@ static int process_p2p_hello(struct iih_info *iih)
 
        if (IS_DEBUG_ADJ_PACKETS) {
                zlog_debug(
-                       "ISIS-Adj (%s): Rcvd P2P IIH from (%s), cir type %s,"
-                       " cir id %hhu, length %" PRIu16,
+                       "ISIS-Adj (%s): Rcvd P2P IIH from (%s), cir type %s, cir id %hhu, length %" PRIu16,
                        iih->circuit->area->area_tag,
                        iih->circuit->interface->name,
                        circuit_t2string(iih->circuit->is_type),
@@ -900,8 +899,7 @@ static int process_lsp(uint8_t pdu_type, struct isis_circuit *circuit,
        /* 7.3.15.1 a) 1 - external domain circuit will discard lsps */
        if (circuit->ext_domain) {
                zlog_debug(
-                       "ISIS-Upd (%s): LSP %s received at level %d over circuit with "
-                       "externalDomain = true",
+                       "ISIS-Upd (%s): LSP %s received at level %d over circuit with externalDomain = true",
                        circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
                        level);
                return ISIS_WARNING;
@@ -910,8 +908,7 @@ static int process_lsp(uint8_t pdu_type, struct isis_circuit *circuit,
        /* 7.3.15.1 a) 2,3 - manualL2OnlyMode not implemented */
        if (!(circuit->is_type & level)) {
                zlog_debug(
-                       "ISIS-Upd (%s): LSP %s received at level %d over circuit of"
-                       " type %s",
+                       "ISIS-Upd (%s): LSP %s received at level %d over circuit of type %s",
                        circuit->area->area_tag, rawlspid_print(hdr.lsp_id),
                        level, circuit_t2string(circuit->is_type));
                return ISIS_WARNING;
@@ -1125,9 +1122,7 @@ dontcheckadj:
                                }
                                if (IS_DEBUG_UPDATE_PACKETS)
                                        zlog_debug(
-                                               "ISIS-Upd (%s): (1) "
-                                               "re-originating LSP %s new seq "
-                                               "0x%08" PRIx32,
+                                               "ISIS-Upd (%s): (1) re-originating LSP %s new seq 0x%08" PRIx32,
                                                circuit->area->area_tag,
                                                rawlspid_print(hdr.lsp_id),
                                                lsp->hdr.seqno);
@@ -1314,8 +1309,7 @@ static int process_snp(uint8_t pdu_type, struct isis_circuit *circuit,
        if (circuit->ext_domain) {
 
                zlog_debug(
-                       "ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
-                       "skipping: circuit externalDomain = true",
+                       "ISIS-Snp (%s): Rcvd L%d %cSNP on %s, skipping: circuit externalDomain = true",
                        circuit->area->area_tag, level, typechar,
                        circuit->interface->name);
 
@@ -1325,8 +1319,7 @@ static int process_snp(uint8_t pdu_type, struct isis_circuit *circuit,
        /* 7.3.15.2 a) 2,3 - manualL2OnlyMode not implemented */
        if (!(circuit->is_type & level)) {
                zlog_debug(
-                       "ISIS-Snp (%s): Rcvd L%d %cSNP on %s, "
-                       "skipping: circuit type %s does not match level %d",
+                       "ISIS-Snp (%s): Rcvd L%d %cSNP on %s, skipping: circuit type %s does not match level %d",
                        circuit->area->area_tag, level, typechar,
                        circuit->interface->name,
                        circuit_t2string(circuit->is_type), level);
@@ -1338,8 +1331,7 @@ static int process_snp(uint8_t pdu_type, struct isis_circuit *circuit,
        if (!is_csnp && (circuit->circ_type == CIRCUIT_T_BROADCAST)
            && !circuit->u.bc.is_dr[level - 1]) {
                zlog_debug(
-                       "ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s, "
-                       "skipping: we are not the DIS",
+                       "ISIS-Snp (%s): Rcvd L%d %cSNP from %s on %s, skipping: we are not the DIS",
                        circuit->area->area_tag, level, typechar,
                        snpa_print(ssnpa), circuit->interface->name);
 
index 82f42a86d9313811fbe67f19dc14da10b1d7a8ab..4a884877f0d70fb834e8947448c341bfda266ab4 100644 (file)
@@ -102,8 +102,7 @@ static int isis_multicast_join(int fd, int registerto, int if_num)
        }
 #ifdef EXTREME_DEBUG
        zlog_debug(
-               "isis_multicast_join(): fd=%d, reg_to=%d, if_num=%d, "
-               "address = %02x:%02x:%02x:%02x:%02x:%02x",
+               "isis_multicast_join(): fd=%d, reg_to=%d, if_num=%d, address = %02x:%02x:%02x:%02x:%02x:%02x",
                fd, registerto, if_num, mreq.mr_address[0], mreq.mr_address[1],
                mreq.mr_address[2], mreq.mr_address[3], mreq.mr_address[4],
                mreq.mr_address[5]);
@@ -247,16 +246,13 @@ int isis_recv_pdu_bcast(struct isis_circuit *circuit, uint8_t *ssnpa)
            || (s_addr.sll_ifindex != (int)circuit->interface->ifindex)) {
                if (bytesread < 0) {
                        zlog_warn(
-                               "isis_recv_packet_bcast(): ifname %s, fd %d, "
-                               "bytesread %d, recvfrom(): %s",
+                               "isis_recv_packet_bcast(): ifname %s, fd %d, bytesread %d, recvfrom(): %s",
                                circuit->interface->name, circuit->fd,
                                bytesread, safe_strerror(errno));
                }
                if (s_addr.sll_ifindex != (int)circuit->interface->ifindex) {
                        zlog_warn(
-                               "packet is received on multiple interfaces: "
-                               "socket interface %d, circuit interface %d, "
-                               "packet type %u",
+                               "packet is received on multiple interfaces: socket interface %d, circuit interface %d, packet type %u",
                                s_addr.sll_ifindex, circuit->interface->ifindex,
                                s_addr.sll_pkttype);
                }
index dc23e8ea499d18bad1f5efdfd6a784a73c3cc32c..45e79b46da08490776d9bd4d70bb7485a364907f 100644 (file)
@@ -100,8 +100,7 @@ static void isis_redist_install(struct isis_area *area, int level,
 
        if (!er_table) {
                zlog_warn(
-                       "%s: External reachability table of area %s"
-                       " is not initialized.",
+                       "%s: External reachability table of area %s is not initialized.",
                        __func__, area->area_tag);
                return;
        }
@@ -134,8 +133,7 @@ static void isis_redist_uninstall(struct isis_area *area, int level,
 
        if (!er_table) {
                zlog_warn(
-                       "%s: External reachability table of area %s"
-                       " is not initialized.",
+                       "%s: External reachability table of area %s is not initialized.",
                        __func__, area->area_tag);
                return;
        }
@@ -310,8 +308,7 @@ void isis_redist_delete(int type, struct prefix *p, struct prefix_ipv6 *src_p)
                char buf[BUFSIZ];
                prefix2str(p, buf, sizeof(buf));
                zlog_warn(
-                       "%s: Got a delete for %s route %s, but that route"
-                       " was never added.",
+                       "%s: Got a delete for %s route %s, but that route was never added.",
                        __func__, zebra_route_string(type), buf);
                if (ei_node)
                        route_unlock_node(ei_node);
@@ -605,8 +602,7 @@ DEFUN (no_isis_redistribute,
 
 DEFUN (isis_default_originate,
        isis_default_originate_cmd,
-       "default-information originate <ipv4|ipv6>"
-       " [always] [{metric (0-16777215)|route-map WORD}]",
+       "default-information originate <ipv4|ipv6> [always] [{metric (0-16777215)|route-map WORD}]",
        "Control distribution of default information\n"
        "Distribute a default route\n"
        "Distribute default route for IPv4\n"
index fb1aad8c490df63126dbca1180ef5d6645143754..c092721ab497dbd7a94a27bb284c23cc1551a25f 100644 (file)
@@ -877,8 +877,7 @@ static int isis_spf_preload_tent(struct isis_spftree *spftree,
                                        if (lsp == NULL
                                            || lsp->hdr.rem_lifetime == 0)
                                                zlog_warn(
-                                                       "ISIS-Spf: No LSP %s found for IS adjacency "
-                                                       "L%d on %s (ID %u)",
+                                                       "ISIS-Spf: No LSP %s found for IS adjacency L%d on %s (ID %u)",
                                                        rawlspid_print(lsp_id),
                                                        spftree->level,
                                                        circuit->interface->name,
@@ -915,8 +914,7 @@ static int isis_spf_preload_tent(struct isis_spftree *spftree,
                        /* if no adj, we are the dis or error */
                        if (!adj && !circuit->u.bc.is_dr[spftree->level - 1]) {
                                zlog_warn(
-                                       "ISIS-Spf: No adjacency found from root "
-                                       "to L%d DR %s on %s (ID %d)",
+                                       "ISIS-Spf: No adjacency found from root to L%d DR %s on %s (ID %d)",
                                        spftree->level, rawlspid_print(lsp_id),
                                        circuit->interface->name,
                                        circuit->circuit_id);
@@ -927,8 +925,7 @@ static int isis_spf_preload_tent(struct isis_spftree *spftree,
                                lsp_id);
                        if (lsp == NULL || lsp->hdr.rem_lifetime == 0) {
                                zlog_warn(
-                                       "ISIS-Spf: No lsp (%p) found from root "
-                                       "to L%d DR %s on %s (ID %d)",
+                                       "ISIS-Spf: No lsp (%p) found from root to L%d DR %s on %s (ID %d)",
                                        (void *)lsp, spftree->level,
                                        rawlspid_print(lsp_id),
                                        circuit->interface->name,
@@ -1022,8 +1019,7 @@ static void add_to_paths(struct isis_spftree *spftree,
                                          spftree->route_table);
                else if (IS_DEBUG_SPF_EVENTS)
                        zlog_debug(
-                               "ISIS-Spf: no adjacencies do not install route for "
-                               "%s depth %d dist %d",
+                               "ISIS-Spf: no adjacencies do not install route for %s depth %d dist %d",
                                vid2string(vertex, buff, sizeof(buff)),
                                vertex->depth, vertex->d_N);
        }
@@ -1262,8 +1258,7 @@ int _isis_spf_schedule(struct isis_area *area, int level,
 
        if (IS_DEBUG_SPF_EVENTS) {
                zlog_debug(
-                       "ISIS-Spf (%s) L%d SPF schedule called, lastrun %d sec ago"
-                       " Caller: %s %s:%d",
+                       "ISIS-Spf (%s) L%d SPF schedule called, lastrun %d sec ago Caller: %s %s:%d",
                        area->area_tag, level, diff, func, file, line);
        }
 
index f3c9c4769148cee5251234966a717ec1154bd78a..3f5e41414b42082bf961c090e0031ff92518b705 100644 (file)
@@ -884,8 +884,7 @@ static int unpack_item_prefix_sid(uint16_t mtid, uint8_t len, struct stream *s,
                                        : ISIS_SUBTLV_PREFIX_SID_SIZE + 1;
        if (len != expected_size) {
                sbuf_push(log, indent,
-                         "TLV size differs from expected size. "
-                         "(expected %u but got %" PRIu8 ")\n",
+                         "TLV size differs from expected size. (expected %u but got %" PRIu8 ")\n",
                          expected_size, len);
                return 1;
        }
@@ -976,8 +975,7 @@ static int unpack_subtlv_ipv6_source_prefix(enum isis_tlv_context context,
        if (tlv_len != 1 + PSIZE(p.prefixlen)) {
                sbuf_push(
                        log, indent,
-                       "TLV size differs from expected size for the prefixlen. "
-                       "(expected %u but got %" PRIu8 ")\n",
+                       "TLV size differs from expected size for the prefixlen. (expected %u but got %" PRIu8 ")\n",
                        1 + PSIZE(p.prefixlen), tlv_len);
                return 1;
        }
@@ -4106,8 +4104,7 @@ int isis_unpack_tlvs(size_t avail_len, struct stream *stream,
        sbuf_reset(&logbuf);
        if (avail_len > STREAM_READABLE(stream)) {
                sbuf_push(&logbuf, indent,
-                         "Stream doesn't contain sufficient data. "
-                         "Claimed %zu, available %zu\n",
+                         "Stream doesn't contain sufficient data. Claimed %zu, available %zu\n",
                          avail_len, STREAM_READABLE(stream));
                return 1;
        }
index 09b8d2825842407429c0e4b22cb72ae182d4ef1b..562881bbdb7a639202232df3de7f78abfd7a839b 100644 (file)
@@ -136,8 +136,7 @@ static void lsp_print_flooding(struct vty *vty, struct isis_lsp *lsp)
        vty_out(vty, "%s ago)\n", buf);
 
        if (lsp->flooding_circuit_scoped) {
-               vty_out(vty, "    Received as circuit-scoped LSP, so not "
-                       "flooded.\n");
+               vty_out(vty, "    Received as circuit-scoped LSP, so not flooded.\n");
                return;
        }
 
@@ -437,8 +436,7 @@ isis_vty_lsp_gen_interval_set(struct vty *vty, int level, uint16_t interval)
 
                if (interval >= area->lsp_refresh[lvl - 1]) {
                        vty_out(vty,
-                               "LSP gen interval %us must be less than "
-                               "the LSP refresh interval %us\n",
+                               "LSP gen interval %us must be less than the LSP refresh interval %us\n",
                                interval, area->lsp_refresh[lvl - 1]);
                        return CMD_WARNING_CONFIG_FAILED;
                }
@@ -488,15 +486,13 @@ isis_vty_lsp_refresh_set(struct vty *vty, int level, uint16_t interval)
                        continue;
                if (interval <= area->lsp_gen_interval[lvl - 1]) {
                        vty_out(vty,
-                               "LSP refresh interval %us must be greater than "
-                               "the configured LSP gen interval %us\n",
+                               "LSP refresh interval %us must be greater than the configured LSP gen interval %us\n",
                                interval, area->lsp_gen_interval[lvl - 1]);
                        return CMD_WARNING_CONFIG_FAILED;
                }
                if (interval > (area->max_lsp_lifetime[lvl - 1] - 300)) {
                        vty_out(vty,
-                               "LSP refresh interval %us must be less than "
-                               "the configured LSP lifetime %us less 300\n",
+                               "LSP refresh interval %us must be less than the configured LSP lifetime %us less 300\n",
                                interval, area->max_lsp_lifetime[lvl - 1]);
                        return CMD_WARNING_CONFIG_FAILED;
                }
@@ -546,20 +542,17 @@ isis_vty_max_lsp_lifetime_set(struct vty *vty, int level, uint16_t interval)
 
                if (refresh_interval < area->lsp_refresh[lvl - 1]) {
                        vty_out(vty,
-                               "Level %d Max LSP lifetime %us must be 300s greater than "
-                               "the configured LSP refresh interval %us\n",
+                               "Level %d Max LSP lifetime %us must be 300s greater than the configured LSP refresh interval %us\n",
                                lvl, interval, area->lsp_refresh[lvl - 1]);
                        vty_out(vty,
-                               "Automatically reducing level %d LSP refresh interval "
-                               "to %us\n",
+                               "Automatically reducing level %d LSP refresh interval to %us\n",
                                lvl, refresh_interval);
                        set_refresh_interval[lvl - 1] = 1;
 
                        if (refresh_interval
                            <= area->lsp_gen_interval[lvl - 1]) {
                                vty_out(vty,
-                                       "LSP refresh interval %us must be greater than "
-                                       "the configured LSP gen interval %us\n",
+                                       "LSP refresh interval %us must be greater than the configured LSP gen interval %us\n",
                                        refresh_interval,
                                        area->lsp_gen_interval[lvl - 1]);
                                return CMD_WARNING_CONFIG_FAILED;
@@ -845,8 +838,7 @@ DEFUN (isis_metric,
        if (circuit->area && circuit->area->oldmetric == 1
            && met > MAX_NARROW_LINK_METRIC) {
                vty_out(vty,
-                       "Invalid metric %d - should be <0-63> "
-                       "when narrow metric type enabled\n",
+                       "Invalid metric %d - should be <0-63> when narrow metric type enabled\n",
                        met);
                return CMD_WARNING_CONFIG_FAILED;
        }
@@ -855,8 +847,7 @@ DEFUN (isis_metric,
        if (circuit->area && circuit->area->newmetric == 1
            && met > MAX_WIDE_LINK_METRIC) {
                vty_out(vty,
-                       "Invalid metric %d - should be <0-16777215> "
-                       "when wide metric type enabled\n",
+                       "Invalid metric %d - should be <0-16777215> when wide metric type enabled\n",
                        met);
                return CMD_WARNING_CONFIG_FAILED;
        }
index a8d6e58cda32d29313369076a70f4b2074513561..ac24704bca3c2252c971337abdb49ef4a0005ad3 100644 (file)
@@ -234,8 +234,7 @@ recv_hello(struct in_addr lsr_id, struct ldp_msg *msg, int af,
                 * check)".
                 */
                if (flags & F_HELLO_TARGETED) {
-                       log_debug("%s: lsr-id %s: invalid targeted hello "
-                           "transport address %s", __func__, inet_ntoa(lsr_id),
+                       log_debug("%s: lsr-id %s: invalid targeted hello transport address %s", __func__, inet_ntoa(lsr_id),
                             log_addr(af, &trans_addr));
                        return;
                }
@@ -250,8 +249,7 @@ recv_hello(struct in_addr lsr_id, struct ldp_msg *msg, int af,
                * targeted LDP Hello packet's source or destination addresses".
                */
                if (af == AF_INET6 && IN6_IS_SCOPE_EMBED(&src->v6)) {
-                       log_debug("%s: lsr-id %s: targeted hello with "
-                           "link-local source address", __func__,
+                       log_debug("%s: lsr-id %s: targeted hello with link-local source address", __func__,
                            inet_ntoa(lsr_id));
                        return;
                }
@@ -318,8 +316,7 @@ recv_hello(struct in_addr lsr_id, struct ldp_msg *msg, int af,
                 * send a fatal Notification message with status code of
                 * 'Transport Connection Mismatch' and reset the session".
                 */
-               log_debug("%s: lsr-id %s: remote transport preference does not "
-                   "match the local preference", __func__, inet_ntoa(lsr_id));
+               log_debug("%s: lsr-id %s: remote transport preference does not match the local preference", __func__, inet_ntoa(lsr_id));
                if (nbr)
                        session_shutdown(nbr, S_TRANS_MISMTCH, msg->id,
                            msg->type);
@@ -359,8 +356,7 @@ recv_hello(struct in_addr lsr_id, struct ldp_msg *msg, int af,
        if (nbr && nbr->af == af &&
            (ldp_addrcmp(af, &nbr->raddr, &trans_addr) ||
            nbr->raddr_scope != scope_id)) {
-               log_warnx("%s: lsr-id %s: hello packet advertising a different "
-                   "transport address", __func__, inet_ntoa(lsr_id));
+               log_warnx("%s: lsr-id %s: hello packet advertising a different transport address", __func__, inet_ntoa(lsr_id));
                if (adj)
                        adj_del(adj, S_SHUTDOWN);
                return;
@@ -368,8 +364,7 @@ recv_hello(struct in_addr lsr_id, struct ldp_msg *msg, int af,
        if (nbr == NULL) {
                nbrt = nbr_find_addr(af, &trans_addr);
                if (nbrt) {
-                       log_debug("%s: transport address %s is already being "
-                           "used by lsr-id %s", __func__, log_addr(af,
+                       log_debug("%s: transport address %s is already being used by lsr-id %s", __func__, log_addr(af,
                            &trans_addr), inet_ntoa(nbrt->id));
                        if (adj)
                                adj_del(adj, S_SHUTDOWN);
index 8b2abe85e596f7f91926e56672fdceb97a71d45b..30b78315f9818eb5e3281c896676409b534b768d 100644 (file)
@@ -146,8 +146,7 @@ recv_init(struct nbr *nbr, char *buf, uint16_t len)
 
                        nbr->flags |= F_NBR_CAP_DYNAMIC;
 
-                       log_debug("%s: lsr-id %s announced the Dynamic "
-                           "Capability Announcement capability", __func__,
+                       log_debug("%s: lsr-id %s announced the Dynamic Capability Announcement capability", __func__,
                            inet_ntoa(nbr->id));
                        break;
                case TLV_TYPE_TWCARD_CAP:
@@ -166,8 +165,7 @@ recv_init(struct nbr *nbr, char *buf, uint16_t len)
 
                        nbr->flags |= F_NBR_CAP_TWCARD;
 
-                       log_debug("%s: lsr-id %s announced the Typed Wildcard "
-                           "FEC capability", __func__, inet_ntoa(nbr->id));
+                       log_debug("%s: lsr-id %s announced the Typed Wildcard FEC capability", __func__, inet_ntoa(nbr->id));
                        break;
                case TLV_TYPE_UNOTIF_CAP:
                        if (tlv_len != CAP_TLV_UNOTIF_LEN) {
@@ -185,8 +183,7 @@ recv_init(struct nbr *nbr, char *buf, uint16_t len)
 
                        nbr->flags |= F_NBR_CAP_UNOTIF;
 
-                       log_debug("%s: lsr-id %s announced the Unrecognized "
-                           "Notification capability", __func__,
+                       log_debug("%s: lsr-id %s announced the Unrecognized Notification capability", __func__,
                            inet_ntoa(nbr->id));
                        break;
                default:
@@ -321,8 +318,7 @@ recv_capability(struct nbr *nbr, char *buf, uint16_t len)
                        else
                                nbr->flags &= ~F_NBR_CAP_TWCARD;
 
-                       log_debug("%s: lsr-id %s %s the Typed Wildcard FEC "
-                           "capability", __func__, inet_ntoa(nbr->id),
+                       log_debug("%s: lsr-id %s %s the Typed Wildcard FEC capability", __func__, inet_ntoa(nbr->id),
                            (enable) ? "announced" : "withdrew");
                        break;
                case TLV_TYPE_UNOTIF_CAP:
@@ -346,8 +342,7 @@ recv_capability(struct nbr *nbr, char *buf, uint16_t len)
                        else
                                nbr->flags &= ~F_NBR_CAP_UNOTIF;
 
-                       log_debug("%s: lsr-id %s %s the Unrecognized "
-                           "Notification capability", __func__,
+                       log_debug("%s: lsr-id %s %s the Unrecognized Notification capability", __func__,
                            inet_ntoa(nbr->id), (enable) ? "announced" :
                            "withdrew");
                        break;
index c7d6dea51889dfbc34d7039ca42be45af02edb06..371c7d0bb140bbe49c55c49c70f4d21394652413 100644 (file)
@@ -528,8 +528,7 @@ if_leave_ipv4_group(struct iface *iface, struct in_addr *addr)
 
        if (setsockopt_ipv4_multicast(global.ipv4.ldp_disc_socket,
            IP_DROP_MEMBERSHIP, if_addr, addr->s_addr, iface->ifindex) < 0) {
-               log_warn("%s: error IP_DROP_MEMBERSHIP, interface %s "
-                   "address %s", __func__, iface->name, inet_ntoa(*addr));
+               log_warn("%s: error IP_DROP_MEMBERSHIP, interface %s address %s", __func__, iface->name, inet_ntoa(*addr));
                return (-1);
        }
 
index afcbe6cd44e04b9f45d27f8b431e33b27df5c1b3..4fca4b096285542ef90c713cac44f092f88a23a9 100644 (file)
@@ -325,8 +325,7 @@ lde_dispatch_imsg(struct thread *thread)
                                break;
                        }
                        if (lde_address_add(ln, lde_addr) < 0) {
-                               log_debug("%s: cannot add address %s, it "
-                                   "already exists", __func__,
+                               log_debug("%s: cannot add address %s, it already exists", __func__,
                                    log_addr(lde_addr->af, &lde_addr->addr));
                        }
                        break;
@@ -343,8 +342,7 @@ lde_dispatch_imsg(struct thread *thread)
                                break;
                        }
                        if (lde_address_del(ln, lde_addr) < 0) {
-                               log_debug("%s: cannot delete address %s, it "
-                                   "does not exist", __func__,
+                               log_debug("%s: cannot delete address %s, it does not exist", __func__,
                                    log_addr(lde_addr->af, &lde_addr->addr));
                        }
                        break;
@@ -382,8 +380,7 @@ lde_dispatch_imsg(struct thread *thread)
                                fatalx("lde_dispatch_imsg: wrong imsg len");
 
                        if (lde_nbr_find(imsg.hdr.peerid))
-                               fatalx("lde_dispatch_imsg: "
-                                   "neighbor already exists");
+                               fatalx("lde_dispatch_imsg: neighbor already exists");
                        lde_nbr_new(imsg.hdr.peerid, imsg.data);
                        break;
                case IMSG_NEIGHBOR_DOWN:
@@ -534,13 +531,11 @@ lde_dispatch_parent(struct thread *thread)
                        break;
                case IMSG_SOCKET_IPC:
                        if (iev_ldpe) {
-                               log_warnx("%s: received unexpected imsg fd "
-                                   "to ldpe", __func__);
+                               log_warnx("%s: received unexpected imsg fd to ldpe", __func__);
                                break;
                        }
                        if ((fd = imsg.fd) == -1) {
-                               log_warnx("%s: expected to receive imsg fd to "
-                                   "ldpe but didn't receive any", __func__);
+                               log_warnx("%s: expected to receive imsg fd to ldpe but didn't receive any", __func__);
                                break;
                        }
 
@@ -975,8 +970,7 @@ lde_send_labelmapping(struct lde_nbr *ln, struct fec_node *fn, int single)
        lw = (struct lde_wdraw *)fec_find(&ln->sent_wdraw, &fn->fec);
        if (lw) {
                if (!fec_find(&ln->sent_map_pending, &fn->fec)) {
-                       debug_evt("%s: FEC %s: scheduling to send label "
-                           "mapping later (waiting for pending label release)",
+                       debug_evt("%s: FEC %s: scheduling to send label mapping later (waiting for pending label release)",
                            __func__, log_fec(&fn->fec));
                        lde_map_pending_add(ln, fn);
                }
index 3abd0817a80aec6472dad1a1e0c6ee2895f5239d..03dee23b47ec4ab12b6ecbbf09a9d020946c513a 100644 (file)
@@ -292,12 +292,10 @@ ldp_config_write(struct vty *vty)
 
                if (nbrp->flags & F_NBRP_GTSM) {
                        if (nbrp->gtsm_enabled)
-                               vty_out (vty, " neighbor %s ttl-security hops "
-                                   "%u\n",  inet_ntoa(nbrp->lsr_id),
+                               vty_out (vty, " neighbor %s ttl-security hops %u\n",  inet_ntoa(nbrp->lsr_id),
                                    nbrp->gtsm_hops);
                        else
-                               vty_out (vty, " neighbor %s ttl-security "
-                                   "disable\n",inet_ntoa(nbrp->lsr_id));
+                               vty_out (vty, " neighbor %s ttl-security disable\n",inet_ntoa(nbrp->lsr_id));
                }
 
                if (nbrp->auth.method == AUTH_MD5SIG)
@@ -1079,8 +1077,7 @@ ldp_vty_neighbor_password(struct vty *vty, const char *negate, struct in_addr ls
                password_len = strlcpy(nbrp->auth.md5key, password_str,
                    sizeof(nbrp->auth.md5key));
                if (password_len >= sizeof(nbrp->auth.md5key))
-                       vty_out(vty, "%% password has been truncated to %zu "
-                           "characters.", sizeof(nbrp->auth.md5key) - 1);
+                       vty_out(vty, "%% password has been truncated to %zu characters.", sizeof(nbrp->auth.md5key) - 1);
                nbrp->auth.md5key_len = strlen(nbrp->auth.md5key);
                nbrp->auth.method = AUTH_MD5SIG;
        }
index 7bc2623eb35d86668487b47fc0d2d9c65cb68217..d8ed5cccccb620e167855c70dfb68a085880b9ee 100644 (file)
@@ -584,8 +584,7 @@ show_nbr_detail_msg(struct vty *vty, struct imsg *imsg,
                    log_addr(nbr->af, &nbr->raddr),ntohs(nbr->rport));
                vty_out (vty, "  Authentication: %s\n",
                    (nbr->auth_method == AUTH_MD5SIG) ? "TCP MD5 Signature" : "none");
-               vty_out(vty, "  Session Holdtime: %u secs; "
-                   "KeepAlive interval: %u secs\n", nbr->holdtime,
+               vty_out(vty, "  Session Holdtime: %u secs; KeepAlive interval: %u secs\n", nbr->holdtime,
                    nbr->holdtime / KEEPALIVE_PER_PERIOD);
                vty_out(vty, "  State: %s; Downstream-Unsolicited\n",
                    nbr_state_name(nbr->nbr_state));
@@ -1252,8 +1251,7 @@ show_l2vpn_binding_msg(struct vty *vty, struct imsg *imsg,
                if (pw->local_label != NO_LABEL) {
                        vty_out (vty, "    Local Label:  %u\n",
                                  pw->local_label);
-                       vty_out (vty, "%-8sCbit: %u,    VC Type: %s,    "
-                           "GroupID: %u\n", "", pw->local_cword,
+                       vty_out (vty, "%-8sCbit: %u,    VC Type: %s,    GroupID: %u\n", "", pw->local_cword,
                            pw_type_name(pw->type),pw->local_gid);
                        vty_out (vty, "%-8sMTU: %u\n", "",pw->local_ifmtu);
                        vty_out (vty, "%-8sLast failure: %s\n", "",
@@ -1265,8 +1263,7 @@ show_l2vpn_binding_msg(struct vty *vty, struct imsg *imsg,
                if (pw->remote_label != NO_LABEL) {
                        vty_out (vty, "    Remote Label: %u\n",
                            pw->remote_label);
-                       vty_out (vty, "%-8sCbit: %u,    VC Type: %s,    "
-                           "GroupID: %u\n", "", pw->remote_cword,
+                       vty_out (vty, "%-8sCbit: %u,    VC Type: %s,    GroupID: %u\n", "", pw->remote_cword,
                            pw_type_name(pw->type),pw->remote_gid);
                        vty_out (vty, "%-8sMTU: %u\n", "",pw->remote_ifmtu);
                } else
index e3b6f4dfcca9ce65131169319a217f3e3e0f1ea7..927c3a3c0398b6bd52a89096f8766edc18cedda4 100644 (file)
@@ -662,23 +662,19 @@ main_dispatch_lde(struct thread *thread)
                        switch (imsg.hdr.type) {
                        case IMSG_KPW_ADD:
                                if (kmpw_add(imsg.data))
-                                       log_warnx("%s: error adding "
-                                           "pseudowire", __func__);
+                                       log_warnx("%s: error adding pseudowire", __func__);
                                break;
                        case IMSG_KPW_DELETE:
                                if (kmpw_del(imsg.data))
-                                       log_warnx("%s: error deleting "
-                                           "pseudowire", __func__);
+                                       log_warnx("%s: error deleting pseudowire", __func__);
                                break;
                        case IMSG_KPW_SET:
                                if (kmpw_set(imsg.data))
-                                       log_warnx("%s: error setting "
-                                           "pseudowire", __func__);
+                                       log_warnx("%s: error setting pseudowire", __func__);
                                break;
                        case IMSG_KPW_UNSET:
                                if (kmpw_unset(imsg.data))
-                                       log_warnx("%s: error unsetting "
-                                           "pseudowire", __func__);
+                                       log_warnx("%s: error unsetting pseudowire", __func__);
                                break;
                        }
                        break;
@@ -857,8 +853,7 @@ main_imsg_send_net_socket(int af, enum socket_type type)
 
        fd = ldp_create_socket(af, type);
        if (fd == -1) {
-               log_warnx("%s: failed to create %s socket for address-family "
-                   "%s", __func__, socket_name(type), af_name(af));
+               log_warnx("%s: failed to create %s socket for address-family %s", __func__, socket_name(type), af_name(af));
                return;
        }
 
index 3f0a4fd33e3bbaa437bdf405294b07a26e4eb1f3..655313bf163b0bdf41229a8b87f4d60ecc0d5253 100644 (file)
@@ -355,13 +355,11 @@ ldpe_dispatch_main(struct thread *thread)
                        break;
                case IMSG_SOCKET_IPC:
                        if (iev_lde) {
-                               log_warnx("%s: received unexpected imsg fd "
-                                   "to lde", __func__);
+                               log_warnx("%s: received unexpected imsg fd to lde", __func__);
                                break;
                        }
                        if ((fd = imsg.fd) == -1) {
-                               log_warnx("%s: expected to receive imsg fd to "
-                                   "lde but didn't receive any", __func__);
+                               log_warnx("%s: expected to receive imsg fd to lde but didn't receive any", __func__);
                                break;
                        }
 
@@ -617,8 +615,7 @@ ldpe_dispatch_lde(struct thread *thread)
 
                        nbr = nbr_find_peerid(imsg.hdr.peerid);
                        if (nbr == NULL) {
-                               log_debug("ldpe_dispatch_lde: cannot find "
-                                   "neighbor");
+                               log_debug("ldpe_dispatch_lde: cannot find neighbor");
                                break;
                        }
                        if (nbr->state != NBR_STA_OPER)
@@ -645,8 +642,7 @@ ldpe_dispatch_lde(struct thread *thread)
                case IMSG_WITHDRAW_ADD_END:
                        nbr = nbr_find_peerid(imsg.hdr.peerid);
                        if (nbr == NULL) {
-                               log_debug("ldpe_dispatch_lde: cannot find "
-                                   "neighbor");
+                               log_debug("ldpe_dispatch_lde: cannot find neighbor");
                                break;
                        }
                        if (nbr->state != NBR_STA_OPER)
@@ -679,8 +675,7 @@ ldpe_dispatch_lde(struct thread *thread)
 
                        nbr = nbr_find_peerid(imsg.hdr.peerid);
                        if (nbr == NULL) {
-                               log_debug("ldpe_dispatch_lde: cannot find "
-                                   "neighbor");
+                               log_debug("ldpe_dispatch_lde: cannot find neighbor");
                                break;
                        }
                        if (nbr->state != NBR_STA_OPER)
@@ -700,8 +695,7 @@ ldpe_dispatch_lde(struct thread *thread)
                case IMSG_NBR_SHUTDOWN:
                        nbr = nbr_find_peerid(imsg.hdr.peerid);
                        if (nbr == NULL) {
-                               log_debug("ldpe_dispatch_lde: cannot find "
-                                   "neighbor");
+                               log_debug("ldpe_dispatch_lde: cannot find neighbor");
                                break;
                        }
                        if (nbr->state != NBR_STA_OPER)
index 1aa53151e648210d92b94ebbf41d390bc5cb0dac..6143beb6b9af1c6bf6ab42f653ed9b474464426a 100644 (file)
@@ -143,8 +143,7 @@ nbr_fsm(struct nbr *nbr, enum nbr_event event)
 
        if (nbr_fsm_tbl[i].state == -1) {
                /* event outside of the defined fsm, ignore it. */
-               log_warnx("%s: lsr-id %s, event %s not expected in "
-                   "state %s", __func__, inet_ntoa(nbr->id),
+               log_warnx("%s: lsr-id %s, event %s not expected in state %s", __func__, inet_ntoa(nbr->id),
                    nbr_event_names[event], nbr_state_name(old_state));
                return (0);
        }
@@ -153,8 +152,7 @@ nbr_fsm(struct nbr *nbr, enum nbr_event event)
                nbr->state = new_state;
 
        if (old_state != nbr->state) {
-               log_debug("%s: event %s resulted in action %s and "
-                   "changing state for lsr-id %s from %s to %s",
+               log_debug("%s: event %s resulted in action %s and changing state for lsr-id %s from %s to %s",
                    __func__, nbr_event_names[event],
                    nbr_action_names[nbr_fsm_tbl[i].action],
                    inet_ntoa(nbr->id), nbr_state_name(old_state),
index 6de26107e67a181f101f38e95bb9300d365aee76..93be9d3cb03996c59dc04d3d35f19ee6fb524876 100644 (file)
@@ -309,8 +309,7 @@ void
 log_msg_notification(int out, struct nbr *nbr, struct notify_msg *nm)
 {
        if (nm->status_code & STATUS_FATAL) {
-               debug_msg(out, "notification: lsr-id %s, status %s "
-                   "(fatal error)", inet_ntoa(nbr->id),
+               debug_msg(out, "notification: lsr-id %s, status %s (fatal error)", inet_ntoa(nbr->id),
                    status_code_name(nm->status_code));
                return;
        }
index dfab30eeb338acd84c5325cac5e42ac40fb48f56..c00008d120b87226d2cc4542e041ecc684cece9f 100644 (file)
@@ -77,8 +77,7 @@ send_packet(int fd, int af, union ldpd_addr *dst, struct iface_af *ia,
                if (ia && IN_MULTICAST(ntohl(dst->v4.s_addr))) {
                        /* set outgoing interface for multicast traffic */
                        if (sock_set_ipv4_mcast(ia->iface) == -1) {
-                               log_debug("%s: error setting multicast "
-                                   "interface, %s", __func__, ia->iface->name);
+                               log_debug("%s: error setting multicast interface, %s", __func__, ia->iface->name);
                                return (-1);
                        }
                }
@@ -87,8 +86,7 @@ send_packet(int fd, int af, union ldpd_addr *dst, struct iface_af *ia,
                if (ia && IN6_IS_ADDR_MULTICAST(&dst->v6)) {
                        /* set outgoing interface for multicast traffic */
                        if (sock_set_ipv6_mcast(ia->iface) == -1) {
-                               log_debug("%s: error setting multicast "
-                                   "interface, %s", __func__, ia->iface->name);
+                               log_debug("%s: error setting multicast interface, %s", __func__, ia->iface->name);
                                return (-1);
                        }
                }
@@ -368,8 +366,7 @@ session_accept(struct thread *thread)
                return (0);
        }
        if (nbr->state != NBR_STA_PRESENT) {
-               log_debug("%s: lsr-id %s: rejecting additional transport "
-                   "connection", __func__, inet_ntoa(nbr->id));
+               log_debug("%s: lsr-id %s: rejecting additional transport connection", __func__, inet_ntoa(nbr->id));
                close(newfd);
                return (0);
        }
index 7c84648d9124d24be8472b2401a6f049e51f7da6..6173ebc1970aa417b8aa73612e32b5a01767fc04 100644 (file)
--- a/lib/bfd.c
+++ b/lib/bfd.c
@@ -143,8 +143,7 @@ void bfd_peer_sendmsg(struct zclient *zclient, struct bfd_info *bfd_info,
        if (!zclient || zclient->sock < 0) {
                if (bfd_debug)
                        zlog_debug(
-                               "%s: Can't send BFD peer register, Zebra client not "
-                               "established",
+                               "%s: Can't send BFD peer register, Zebra client not established",
                                __func__);
                return;
        }
@@ -217,8 +216,7 @@ struct interface *bfd_get_peer_info(struct stream *s, struct prefix *dp,
                if (ifp == NULL) {
                        if (bfd_debug)
                                zlog_debug(
-                                       "zebra_interface_bfd_read: "
-                                       "Can't find interface by ifindex: %d ",
+                                       "zebra_interface_bfd_read: Can't find interface by ifindex: %d ",
                                        ifindex);
                        return NULL;
                }
@@ -320,8 +318,7 @@ void bfd_show_param(struct vty *vty, struct bfd_info *bfd_info, int bfd_tag,
                                               json_bfd);
        } else {
                vty_out(vty,
-                       "  %s%sDetect Multiplier: %d, Min Rx interval: %d,"
-                       " Min Tx interval: %d\n",
+                       "  %s%sDetect Multiplier: %d, Min Rx interval: %d, Min Tx interval: %d\n",
                        (extra_space) ? "  " : "", (bfd_tag) ? "BFD: " : "  ",
                        bfd_info->detect_mult, bfd_info->required_min_rx,
                        bfd_info->desired_min_tx);
@@ -397,8 +394,7 @@ void bfd_client_sendmsg(struct zclient *zclient, int command,
        if (!zclient || zclient->sock < 0) {
                if (bfd_debug)
                        zlog_debug(
-                               "%s: Can't send BFD client register, Zebra client not "
-                               "established",
+                               "%s: Can't send BFD client register, Zebra client not established",
                                __func__);
                return;
        }
index ff49bc83dff5bf007337adbc87248bd8d22e7888..459d98e75d2e2c10bc0ec0e1d312c2e792535136 100644 (file)
@@ -327,8 +327,7 @@ buffer_status_t buffer_flush_window(struct buffer *b, int fd, int width,
                                /* This should absolutely never occur. */
                                flog_err_sys(
                                        EC_LIB_SYSTEM_CALL,
-                                       "%s: corruption detected: iov_small overflowed; "
-                                       "head %p, tail %p, head->next %p",
+                                       "%s: corruption detected: iov_small overflowed; head %p, tail %p, head->next %p",
                                        __func__, (void *)b->head,
                                        (void *)b->tail, (void *)b->head->next);
                                iov = XMALLOC(MTYPE_TMP,
index 83cf586ed381e79ff6a9020df75f496fb7db6799..d3d868b468d07d9e50e3397c62bd56e9de53674e 100644 (file)
@@ -93,8 +93,7 @@ prefix_list_length_validate(const struct lyd_node *dnode)
        return NB_OK;
 
   log_and_fail:
-       zlog_info("prefix-list: invalid prefix range for %pFX: "
-                 "Make sure that mask length < ge <= le", &p);
+       zlog_info("prefix-list: invalid prefix range for %pFX: Make sure that mask length < ge <= le", &p);
        return NB_ERR_VALIDATION;
 }
 
index e12b4f8c8f7ba78135143111e1ced6d3818e2a2b..3620f20e4bdb0c3558c3aee639212014f023cecf 100644 (file)
--- a/lib/if.c
+++ b/lib/if.c
@@ -785,8 +785,7 @@ static void if_dump(const struct interface *ifp)
                struct vrf *vrf = vrf_lookup_by_id(ifp->vrf_id);
 
                zlog_info(
-                       "Interface %s vrf %s(%u) index %d metric %d mtu %d "
-                       "mtu6 %d %s",
+                       "Interface %s vrf %s(%u) index %d metric %d mtu %d mtu6 %d %s",
                        ifp->name, VRF_LOGNAME(vrf), ifp->vrf_id, ifp->ifindex,
                        ifp->metric, ifp->mtu, ifp->mtu6,
                        if_flag_dump(ifp->flags));
index 089a3e3a0713810901fd2291979d669ea08f3255..2baa09b6fd19256b771056dde43e3c4b310c9e42 100644 (file)
--- a/lib/log.c
+++ b/lib/log.c
@@ -273,8 +273,7 @@ void zlog_backtrace(int priority)
        if (size <= 0 || (size_t)size > array_size(array)) {
                flog_err_sys(
                        EC_LIB_SYSTEM_CALL,
-                       "Cannot get backtrace, returned invalid # of frames %d "
-                       "(valid range is between 1 and %lu)",
+                       "Cannot get backtrace, returned invalid # of frames %d (valid range is between 1 and %lu)",
                        size, (unsigned long)(array_size(array)));
                return;
        }
@@ -301,8 +300,7 @@ void zlog_thread_info(int log_level)
 
        if (tc)
                zlog(log_level,
-                    "Current thread function %s, scheduled from "
-                    "file %s, line %u",
+                    "Current thread function %s, scheduled from file %s, line %u",
                     tc->funcname, tc->schedfrom, tc->schedfrom_line);
        else
                zlog(log_level, "Current thread not known/applicable");
@@ -465,8 +463,7 @@ static const struct zebra_desc_table *zroute_lookup(unsigned int zroute)
        for (i = 0; i < array_size(route_types); i++) {
                if (zroute == route_types[i].type) {
                        zlog_warn(
-                               "internal error: route type table out of order "
-                               "while searching for %u, please notify developers",
+                               "internal error: route type table out of order while searching for %u, please notify developers",
                                zroute);
                        return &route_types[i];
                }
index 3a29404827e5b961b397f4c48cc733fa32a0400f..2c902d123b5826bffe85701047e435eec77195db 100644 (file)
@@ -157,8 +157,7 @@ static int qmem_exit_walker(void *arg, struct memgroup *mg, struct memtype *mt)
 
        if (!mt) {
                fprintf(eda->fp,
-                       "%s: showing active allocations in "
-                       "memory group %s\n",
+                       "%s: showing active allocations in memory group %s\n",
                        eda->prefix, mg->name);
 
        } else if (mt->n_alloc) {
index eb0dbe078382cd8c498ccc2c91075d12e8a1b833..5c7e1240e2f269ffec2dd39e126453466787753b 100644 (file)
@@ -558,8 +558,7 @@ static void zprivs_caps_init(struct zebra_privs_t *zprivs)
        /* nonsensical to have gotten here but not have capabilities */
        if (!zprivs_state.syscaps_p) {
                fprintf(stderr,
-                       "%s: capabilities enabled, "
-                       "but no valid capabilities supplied\n",
+                       "%s: capabilities enabled, but no valid capabilities supplied\n",
                        __func__);
        }
 
index 7749ea4cc70049b3e029f1ae932487a2cca487cd..d080385fa125c35475baabf1ccc575cd4b0412df 100644 (file)
@@ -353,8 +353,7 @@ int generic_match_add(struct vty *vty, struct route_map_index *index,
                                "%% [%s] Argument form is unsupported or malformed.\n",
                                frr_protonameinst);
                else
-                       zlog_warn("Argument form is unsupported or malformed: "
-                                 "%s %s", command, arg);
+                       zlog_warn("Argument form is unsupported or malformed: %s %s", command, arg);
                return CMD_WARNING_CONFIG_FAILED;
        case RMAP_COMPILE_SUCCESS:
                /*
@@ -405,8 +404,7 @@ int generic_match_delete(struct vty *vty, struct route_map_index *index,
                                "%% [%s] Argument form is unsupported or malformed.\n",
                                frr_protonameinst);
                else
-                       zlog_warn("Argument form is unsupported or malformed: "
-                                 "%s %s", command, arg);
+                       zlog_warn("Argument form is unsupported or malformed: %s %s", command, arg);
                retval = CMD_WARNING_CONFIG_FAILED;
                break;
        case RMAP_COMPILE_SUCCESS:
@@ -441,8 +439,7 @@ int generic_set_add(struct vty *vty, struct route_map_index *index,
                                "%% [%s] Argument form is unsupported or malformed.\n",
                                frr_protonameinst);
                else
-                       zlog_warn("Argument form is unsupported or malformed: "
-                                 "%s %s", command, arg);
+                       zlog_warn("Argument form is unsupported or malformed: %s %s", command, arg);
                return CMD_WARNING_CONFIG_FAILED;
        case RMAP_COMPILE_SUCCESS:
                break;
@@ -470,8 +467,7 @@ int generic_set_delete(struct vty *vty, struct route_map_index *index,
                                "%% [%s] Argument form is unsupported or malformed.\n",
                                frr_protonameinst);
                else
-                       zlog_warn("Argument form is unsupported or malformed: "
-                                 "%s %s", command, arg);
+                       zlog_warn("Argument form is unsupported or malformed: %s %s", command, arg);
                return CMD_WARNING_CONFIG_FAILED;
        case RMAP_COMPILE_SUCCESS:
                break;
index 45d90087960d387bf8d06318cf76adba142c0251..21fddcd01d36bac1888a4ce89c354497b5cb9c38 100644 (file)
@@ -264,8 +264,7 @@ int setsockopt_ipv4_multicast(int sock, int optname, struct in_addr if_addr,
                 * up */
                char buf[1][INET_ADDRSTRLEN];
                zlog_info(
-                       "setsockopt_ipv4_multicast attempting to drop and "
-                       "re-add (fd %d, mcast %s, ifindex %u)",
+                       "setsockopt_ipv4_multicast attempting to drop and re-add (fd %d, mcast %s, ifindex %u)",
                        sock, inet_ntop(AF_INET, &mreqn.imr_multiaddr, buf[0],
                                        sizeof(buf[0])),
                        ifindex);
@@ -306,8 +305,7 @@ int setsockopt_ipv4_multicast(int sock, int optname, struct in_addr if_addr,
                 * up */
                char buf[1][INET_ADDRSTRLEN];
                zlog_info(
-                       "setsockopt_ipv4_multicast attempting to drop and "
-                       "re-add (fd %d, mcast %s, ifindex %u)",
+                       "setsockopt_ipv4_multicast attempting to drop and re-add (fd %d, mcast %s, ifindex %u)",
                        sock, inet_ntop(AF_INET, &mreq.imr_multiaddr, buf[0],
                                        sizeof(buf[0])),
                        ifindex);
index 63d8a8c69b2b7f824ec1987e4ff631249e25dad0..0e7483bfbea17316edbd7bac765892a0bab40b44 100644 (file)
@@ -406,8 +406,7 @@ int sockopt_v6only(int family, int sock)
                                 sizeof(int));
                if (ret < 0) {
                        flog_err(EC_LIB_SOCKET,
-                                "can't set sockopt IPV6_V6ONLY "
-                                "to socket %d",
+                                "can't set sockopt IPV6_V6ONLY to socket %d",
                                 sock);
                        return -1;
                }
index 9b2f5661acc12a88827ec9723cb74c62c04a8220..5c7c104842e0148bda800f02f5358808d3aa811c 100644 (file)
@@ -305,8 +305,7 @@ DEFUN (show_thread_cpu,
                filter = parse_filter(argv[idx]->arg);
                if (!filter) {
                        vty_out(vty,
-                               "Invalid filter \"%s\" specified; must contain at least"
-                               "one of 'RWTEXB'\n",
+                               "Invalid filter \"%s\" specified; must contain at leastone of 'RWTEXB'\n",
                                argv[idx]->arg);
                        return CMD_WARNING;
                }
@@ -393,8 +392,7 @@ DEFUN (clear_thread_cpu,
                filter = parse_filter(argv[idx]->arg);
                if (!filter) {
                        vty_out(vty,
-                               "Invalid filter \"%s\" specified; must contain at least"
-                               "one of 'RWTEXB'\n",
+                               "Invalid filter \"%s\" specified; must contain at leastone of 'RWTEXB'\n",
                                argv[idx]->arg);
                        return CMD_WARNING;
                }
index fb64589287fbf8b00a0ffaf6469ecae4c2466323..a9ea632ac56719a07f20368660c575c0535142d8 100644 (file)
--- a/lib/vrf.c
+++ b/lib/vrf.c
@@ -691,8 +691,7 @@ int vrf_netns_handler_create(struct vty *vty, struct vrf *vrf, char *pathname,
                        return CMD_SUCCESS;
                if (vty)
                        vty_out(vty,
-                               "NS %s is already configured"
-                               " with VRF %u(%s)\n",
+                               "NS %s is already configured with VRF %u(%s)\n",
                                ns->name, vrf2->vrf_id, vrf2->name);
                else
                        zlog_info("NS %s is already configured with VRF %u(%s)",
index ffef05e4dc006a0fce47d9ac743dd3ce1b588d25..0d0e54af6c73d029c4988c0cdc2478ef33cf411a 100644 (file)
--- a/lib/vty.c
+++ b/lib/vty.c
@@ -1244,8 +1244,7 @@ static int vty_telnet_option(struct vty *vty, unsigned char *buf, int nbytes)
                        if (vty->sb_len != TELNET_NAWS_SB_LEN)
                                flog_err(
                                        EC_LIB_SYSTEM_CALL,
-                                       "RFC 1073 violation detected: telnet NAWS option "
-                                       "should send %d characters, but we received %lu",
+                                       "RFC 1073 violation detected: telnet NAWS option should send %d characters, but we received %lu",
                                        TELNET_NAWS_SB_LEN,
                                        (unsigned long)vty->sb_len);
                        else if (sizeof(vty->sb_buf) < TELNET_NAWS_SB_LEN)
@@ -1261,8 +1260,7 @@ static int vty_telnet_option(struct vty *vty, unsigned char *buf, int nbytes)
                                               | vty->sb_buf[4]);
 #ifdef TELNET_OPTION_DEBUG
                                vty_out(vty,
-                                       "TELNET NAWS window size negotiation completed: "
-                                       "width %d, height %d\n",
+                                       "TELNET NAWS window size negotiation completed: width %d, height %d\n",
                                        vty->width, vty->height);
 #endif
                        }
index 793864243cd9a0e45dc0d651bf7c8b5fb6af5017..d8f311fcece2a129ebc27b542fc0fb860e4012d0 100644 (file)
@@ -1924,8 +1924,7 @@ static int link_params_set_value(struct stream *s, struct if_link_params *iflp)
                if (i < bwclassnum)
                        flog_err(
                                EC_LIB_ZAPI_MISSMATCH,
-                               "%s: received %d > %d (MAX_CLASS_TYPE) bw entries"
-                               " - outdated library?",
+                               "%s: received %d > %d (MAX_CLASS_TYPE) bw entries - outdated library?",
                                __func__, bwclassnum, MAX_CLASS_TYPE);
        }
        STREAM_GETL(s, iflp->admin_grp);
index f242c2e36709eca4f315647fbcfd0bb3c9f58862..e4270f09a5df93618f1344cf18a837e4085b4b40 100644 (file)
@@ -170,8 +170,7 @@ void nhrp_route_announce(int add, enum nhrp_cache_type type,
 
                prefix2str(&api.prefix, buf[0], sizeof(buf[0]));
                zlog_debug(
-                       "Zebra send: route %s %s nexthop %s metric %u"
-                       " count %d dev %s",
+                       "Zebra send: route %s %s nexthop %s metric %u count %d dev %s",
                        add ? "add" : "del", buf[0],
                        nexthop ? inet_ntop(api.prefix.family, &api_nh->gate,
                                            buf[1], sizeof(buf[1]))
index 1209997514747b1de3a36042d8d5ccf75302fb7b..d10329a93b335b7a598e4eae5987f18e8a9a44c6 100644 (file)
@@ -1966,8 +1966,7 @@ static int ospf6_ifp_up(struct interface *ifp)
 {
        if (IS_OSPF6_DEBUG_ZEBRA(RECV))
                zlog_debug(
-                       "Zebra Interface state change: "
-                       "%s index %d flags %llx metric %d mtu %d bandwidth %d",
+                       "Zebra Interface state change: %s index %d flags %llx metric %d mtu %d bandwidth %d",
                        ifp->name, ifp->ifindex, (unsigned long long)ifp->flags,
                        ifp->metric, ifp->mtu6, ifp->bandwidth);
 
@@ -1980,8 +1979,7 @@ static int ospf6_ifp_down(struct interface *ifp)
 {
        if (IS_OSPF6_DEBUG_ZEBRA(RECV))
                zlog_debug(
-                       "Zebra Interface state change: "
-                       "%s index %d flags %llx metric %d mtu %d bandwidth %d",
+                       "Zebra Interface state change: %s index %d flags %llx metric %d mtu %d bandwidth %d",
                        ifp->name, ifp->ifindex, (unsigned long long)ifp->flags,
                        ifp->metric, ifp->mtu6, ifp->bandwidth);
 
index 80bff5795fb7b87b923855d4b227e5a605f2012b..e75c132956b0ab9e14a3da909c292f050645b55a 100644 (file)
@@ -658,8 +658,7 @@ static int ospf6_spf_calculation_thread(struct thread *t)
                           (long long)runtime.tv_usec);
 
        zlog_info(
-               "SPF processing: # Areas: %d, SPF runtime: %lld sec %lld usec, "
-               "Reason: %s\n",
+               "SPF processing: # Areas: %d, SPF runtime: %lld sec %lld usec, Reason: %s\n",
                areas_processed, (long long)runtime.tv_sec,
                (long long)runtime.tv_usec, rbuf);
 
index dd672dd1c5e79b38190aac0889380ca97032761d..a36012194d97af1859e5b8252fb1bb5e9c14c5b3 100644 (file)
@@ -390,8 +390,7 @@ DEFUN(ospf6_router_id,
        for (ALL_LIST_ELEMENTS_RO(o->area_list, node, oa)) {
                if (oa->full_nbrs) {
                        vty_out(vty,
-                               "For this router-id change to take effect,"
-                               " save config and restart ospf6d\n");
+                               "For this router-id change to take effect, save config and restart ospf6d\n");
                        return CMD_SUCCESS;
                }
        }
@@ -417,8 +416,7 @@ DEFUN(no_ospf6_router_id,
        for (ALL_LIST_ELEMENTS_RO(o->area_list, node, oa)) {
                if (oa->full_nbrs) {
                        vty_out(vty,
-                               "For this router-id change to take effect,"
-                               " save config and restart ospf6d\n");
+                               "For this router-id change to take effect, save config and restart ospf6d\n");
                        return CMD_SUCCESS;
                }
        }
index eb3323997f4b4c780892226b2dfe9a5b0b813ce1..3dbc476172e829f02896ef3a5aeff7234c6de2e5 100644 (file)
@@ -348,8 +348,7 @@ static int ospf_abr_nssa_am_elected(struct ospf_area *area)
                if (IS_ROUTER_LSA_NT(rlsa)) {
                        if (IS_DEBUG_OSPF_NSSA)
                                zlog_debug(
-                                       "ospf_abr_nssa_am_elected: "
-                                       "router %s asserts Nt",
+                                       "ospf_abr_nssa_am_elected: router %s asserts Nt",
                                        inet_ntoa(lsa->data->id));
                        return 0;
                }
@@ -391,15 +390,13 @@ static void ospf_abr_nssa_check_status(struct ospf *ospf)
 
                if (IS_DEBUG_OSPF(nssa, NSSA))
                        zlog_debug(
-                               "ospf_abr_nssa_check_status: "
-                               "checking area %s",
+                               "ospf_abr_nssa_check_status: checking area %s",
                                inet_ntoa(area->area_id));
 
                if (!IS_OSPF_ABR(area->ospf)) {
                        if (IS_DEBUG_OSPF(nssa, NSSA))
                                zlog_debug(
-                                       "ospf_abr_nssa_check_status: "
-                                       "not ABR");
+                                       "ospf_abr_nssa_check_status: not ABR");
                        area->NSSATranslatorState =
                                OSPF_NSSA_TRANSLATE_DISABLED;
                } else {
@@ -409,8 +406,7 @@ static void ospf_abr_nssa_check_status(struct ospf *ospf)
                                /* TODO: check previous state and flush? */
                                if (IS_DEBUG_OSPF(nssa, NSSA))
                                        zlog_debug(
-                                               "ospf_abr_nssa_check_status: "
-                                               "never translate");
+                                               "ospf_abr_nssa_check_status: never translate");
                                area->NSSATranslatorState =
                                        OSPF_NSSA_TRANSLATE_DISABLED;
                                break;
@@ -422,8 +418,7 @@ static void ospf_abr_nssa_check_status(struct ospf *ospf)
                                 */
                                if (IS_DEBUG_OSPF(nssa, NSSA))
                                        zlog_debug(
-                                               "ospf_abr_nssa_check_status: "
-                                               "translate always");
+                                               "ospf_abr_nssa_check_status: translate always");
                                area->NSSATranslatorState =
                                        OSPF_NSSA_TRANSLATE_ENABLED;
                                break;
@@ -435,15 +430,13 @@ static void ospf_abr_nssa_check_status(struct ospf *ospf)
                                                OSPF_NSSA_TRANSLATE_ENABLED;
                                        if (IS_DEBUG_OSPF(nssa, NSSA))
                                                zlog_debug(
-                                                       "ospf_abr_nssa_check_status: "
-                                                       "elected translator");
+                                                       "ospf_abr_nssa_check_status: elected translator");
                                } else {
                                        area->NSSATranslatorState =
                                                OSPF_NSSA_TRANSLATE_DISABLED;
                                        if (IS_DEBUG_OSPF(nssa, NSSA))
                                                zlog_debug(
-                                                       "ospf_abr_nssa_check_status: "
-                                                       "not elected");
+                                                       "ospf_abr_nssa_check_status: not elected");
                                }
                                break;
                        }
@@ -639,8 +632,7 @@ static int ospf_abr_translate_nssa(struct ospf_area *area, struct ospf_lsa *lsa)
        if (ext7->e[0].fwd_addr.s_addr == OSPF_DEFAULT_DESTINATION) {
                if (IS_DEBUG_OSPF_NSSA)
                        zlog_debug(
-                               "ospf_abr_translate_nssa(): LSA Id %s, "
-                               "Forward address is 0, NO Translation",
+                               "ospf_abr_translate_nssa(): LSA Id %s, Forward address is 0, NO Translation",
                                inet_ntoa(lsa->data->id));
                return 1;
        }
@@ -652,8 +644,7 @@ static int ospf_abr_translate_nssa(struct ospf_area *area, struct ospf_lsa *lsa)
        if (old) {
                if (IS_DEBUG_OSPF_NSSA)
                        zlog_debug(
-                               "ospf_abr_translate_nssa(): "
-                               "found old translated LSA Id %s, refreshing",
+                               "ospf_abr_translate_nssa(): found old translated LSA Id %s, refreshing",
                                inet_ntoa(old->data->id));
 
                /* refresh */
@@ -661,8 +652,7 @@ static int ospf_abr_translate_nssa(struct ospf_area *area, struct ospf_lsa *lsa)
                if (!new) {
                        if (IS_DEBUG_OSPF_NSSA)
                                zlog_debug(
-                                       "ospf_abr_translate_nssa(): "
-                                       "could not refresh translated LSA Id %s",
+                                       "ospf_abr_translate_nssa(): could not refresh translated LSA Id %s",
                                        inet_ntoa(old->data->id));
                }
        } else {
@@ -673,8 +663,7 @@ static int ospf_abr_translate_nssa(struct ospf_area *area, struct ospf_lsa *lsa)
                if (ospf_translated_nssa_originate(area->ospf, lsa) == NULL) {
                        if (IS_DEBUG_OSPF_NSSA)
                                zlog_debug(
-                                       "ospf_abr_translate_nssa(): Could not translate "
-                                       "Type-7 for %s to Type-5",
+                                       "ospf_abr_translate_nssa(): Could not translate Type-7 for %s to Type-5",
                                        inet_ntoa(lsa->data->id));
                        return 1;
                }
@@ -719,8 +708,7 @@ void ospf_abr_announce_network_to_area(struct prefix_ipv4 *p, uint32_t cost,
 
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_abr_announce_network_to_area(): "
-                               "old metric: %d, new metric: %d",
+                               "ospf_abr_announce_network_to_area(): old metric: %d, new metric: %d",
                                GET_METRIC(sl->metric), cost);
 
                if ((GET_METRIC(sl->metric) == full_cost)
@@ -728,15 +716,13 @@ void ospf_abr_announce_network_to_area(struct prefix_ipv4 *p, uint32_t cost,
                        /* unchanged. simply reapprove it */
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_announce_network_to_area(): "
-                                       "old summary approved");
+                                       "ospf_abr_announce_network_to_area(): old summary approved");
                        SET_FLAG(old->flags, OSPF_LSA_APPROVED);
                } else {
                        /* LSA is changed, refresh it */
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_announce_network_to_area(): "
-                                       "refreshing summary");
+                                       "ospf_abr_announce_network_to_area(): refreshing summary");
                        set_metric(old, full_cost);
                        lsa = ospf_lsa_refresh(area->ospf, old);
 
@@ -758,8 +744,7 @@ void ospf_abr_announce_network_to_area(struct prefix_ipv4 *p, uint32_t cost,
        } else {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_abr_announce_network_to_area(): "
-                               "creating new summary");
+                               "ospf_abr_announce_network_to_area(): creating new summary");
                lsa = ospf_summary_lsa_originate(p, full_cost, area);
                /* This will flood through area. */
 
@@ -776,8 +761,7 @@ void ospf_abr_announce_network_to_area(struct prefix_ipv4 *p, uint32_t cost,
                SET_FLAG(lsa->flags, OSPF_LSA_APPROVED);
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_abr_announce_network_to_area(): "
-                               "flooding new version of summary");
+                               "ospf_abr_announce_network_to_area(): flooding new version of summary");
        }
 
        if (IS_DEBUG_OSPF_EVENT)
@@ -875,8 +859,7 @@ static void ospf_abr_announce_network(struct ospf *ospf, struct prefix_ipv4 *p,
                if (!ospf_abr_should_accept(p, area)) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_announce_network(): "
-                                       "prefix %s/%d was denied by import-list",
+                                       "ospf_abr_announce_network(): prefix %s/%d was denied by import-list",
                                        inet_ntoa(p->prefix), p->prefixlen);
                        continue;
                }
@@ -884,8 +867,7 @@ static void ospf_abr_announce_network(struct ospf *ospf, struct prefix_ipv4 *p,
                if (!ospf_abr_plist_in_check(area, or, p)) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_announce_network(): "
-                                       "prefix %s/%d was denied by prefix-list",
+                                       "ospf_abr_announce_network(): prefix %s/%d was denied by prefix-list",
                                        inet_ntoa(p->prefix), p->prefixlen);
                        continue;
                }
@@ -894,8 +876,7 @@ static void ospf_abr_announce_network(struct ospf *ospf, struct prefix_ipv4 *p,
                    && area->no_summary) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_announce_network(): "
-                                       "area %s is stub and no_summary",
+                                       "ospf_abr_announce_network(): area %s is stub and no_summary",
                                        inet_ntoa(area->area_id));
                        continue;
                }
@@ -903,8 +884,7 @@ static void ospf_abr_announce_network(struct ospf *ospf, struct prefix_ipv4 *p,
                if (or->path_type == OSPF_PATH_INTER_AREA) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_announce_network(): this is "
-                                       "inter-area route to %s/%d",
+                                       "ospf_abr_announce_network(): this is inter-area route to %s/%d",
                                        inet_ntoa(p->prefix), p->prefixlen);
 
                        if (!OSPF_IS_AREA_BACKBONE(area))
@@ -915,8 +895,7 @@ static void ospf_abr_announce_network(struct ospf *ospf, struct prefix_ipv4 *p,
                if (or->path_type == OSPF_PATH_INTRA_AREA) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_announce_network(): "
-                                       "this is intra-area route to %s/%d",
+                                       "ospf_abr_announce_network(): this is intra-area route to %s/%d",
                                        inet_ntoa(p->prefix), p->prefixlen);
                        if ((range = ospf_area_range_match(or_area, p))
                            && !ospf_area_is_transit(area))
@@ -976,8 +955,7 @@ static void ospf_abr_process_nssa_translates(struct ospf *ospf)
 
                if (IS_DEBUG_OSPF_NSSA)
                        zlog_debug(
-                               "ospf_abr_process_nssa_translates(): "
-                               "looking at area %s",
+                               "ospf_abr_process_nssa_translates(): looking at area %s",
                                inet_ntoa(area->area_id));
 
                LSDB_LOOP (NSSA_LSDB(area), rn, lsa)
@@ -1018,24 +996,21 @@ static void ospf_abr_process_network_rt(struct ospf *ospf,
                if (or->path_type >= OSPF_PATH_TYPE1_EXTERNAL) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_process_network_rt(): "
-                                       "this is an External router, skipping");
+                                       "ospf_abr_process_network_rt(): this is an External router, skipping");
                        continue;
                }
 
                if (or->cost >= OSPF_LS_INFINITY) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_process_network_rt():"
-                                       " this route's cost is infinity, skipping");
+                                       "ospf_abr_process_network_rt(): this route's cost is infinity, skipping");
                        continue;
                }
 
                if (or->type == OSPF_DESTINATION_DISCARD) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_process_network_rt():"
-                                       " this is a discard entry, skipping");
+                                       "ospf_abr_process_network_rt(): this is a discard entry, skipping");
                        continue;
                }
 
@@ -1065,8 +1040,7 @@ static void ospf_abr_process_network_rt(struct ospf *ospf,
                    && !OSPF_IS_AREA_ID_BACKBONE(or->u.std.area_id)) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_process_network_rt():"
-                                       " this is route is not backbone one, skipping");
+                                       "ospf_abr_process_network_rt(): this is route is not backbone one, skipping");
                        continue;
                }
 
@@ -1078,8 +1052,7 @@ static void ospf_abr_process_network_rt(struct ospf *ospf,
                            or->path_type != OSPF_PATH_INTRA_AREA) {
                                if (IS_DEBUG_OSPF_EVENT)
                                        zlog_debug(
-                                               "ospf_abr_process_network_rt(): ALT ABR: "
-                                               "No BB connection, skip not intra-area routes");
+                                               "ospf_abr_process_network_rt(): ALT ABR: No BB connection, skip not intra-area routes");
                                continue;
                        }
 
@@ -1112,8 +1085,7 @@ static void ospf_abr_announce_rtr_to_area(struct prefix_ipv4 *p, uint32_t cost,
 
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_abr_announce_network_to_area(): "
-                               "old metric: %d, new metric: %d",
+                               "ospf_abr_announce_network_to_area(): old metric: %d, new metric: %d",
                                GET_METRIC(slsa->metric), cost);
        }
 
@@ -1144,8 +1116,7 @@ static void ospf_abr_announce_rtr_to_area(struct prefix_ipv4 *p, uint32_t cost,
 
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_abr_announce_rtr_to_area(): "
-                               "flooding new version of summary");
+                               "ospf_abr_announce_rtr_to_area(): flooding new version of summary");
 
                /*
                zlog_info ("ospf_abr_announce_rtr_to_area(): creating new
@@ -1185,8 +1156,7 @@ static void ospf_abr_announce_rtr(struct ospf *ospf, struct prefix_ipv4 *p,
                if (area->external_routing != OSPF_AREA_DEFAULT) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_announce_rtr(): "
-                                       "area %s doesn't support external routing",
+                                       "ospf_abr_announce_rtr(): area %s doesn't support external routing",
                                        inet_ntoa(area->area_id));
                        continue;
                }
@@ -1194,8 +1164,7 @@ static void ospf_abr_announce_rtr(struct ospf *ospf, struct prefix_ipv4 *p,
                if (or->path_type == OSPF_PATH_INTER_AREA) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_announce_rtr(): "
-                                       "this is inter-area route to %s",
+                                       "ospf_abr_announce_rtr(): this is inter-area route to %s",
                                        inet_ntoa(p->prefix));
                        if (!OSPF_IS_AREA_BACKBONE(area))
                                ospf_abr_announce_rtr_to_area(p, or->cost,
@@ -1205,8 +1174,7 @@ static void ospf_abr_announce_rtr(struct ospf *ospf, struct prefix_ipv4 *p,
                if (or->path_type == OSPF_PATH_INTRA_AREA) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_abr_announce_rtr(): "
-                                       "this is intra-area route to %s",
+                                       "ospf_abr_announce_rtr(): this is intra-area route to %s",
                                        inet_ntoa(p->prefix));
                        ospf_abr_announce_rtr_to_area(p, or->cost, area);
                }
@@ -1255,8 +1223,7 @@ static void ospf_abr_process_router_rt(struct ospf *ospf,
                        if (!CHECK_FLAG(or->u.std.flags, ROUTER_LSA_EXTERNAL)) {
                                if (IS_DEBUG_OSPF_EVENT)
                                        zlog_debug(
-                                               "ospf_abr_process_router_rt(): "
-                                               "This is not an ASBR, skipping");
+                                               "ospf_abr_process_router_rt(): This is not an ASBR, skipping");
                                continue;
                        }
 
@@ -1272,8 +1239,7 @@ static void ospf_abr_process_router_rt(struct ospf *ospf,
                        if (or != best) {
                                if (IS_DEBUG_OSPF_EVENT)
                                        zlog_debug(
-                                               "ospf_abr_process_router_rt(): "
-                                               "This route is not the best among possible, skipping");
+                                               "ospf_abr_process_router_rt(): This route is not the best among possible, skipping");
                                continue;
                        }
 
@@ -1283,16 +1249,14 @@ static void ospf_abr_process_router_rt(struct ospf *ospf,
                                                     or->u.std.area_id)) {
                                if (IS_DEBUG_OSPF_EVENT)
                                        zlog_debug(
-                                               "ospf_abr_process_router_rt(): "
-                                               "This route is not a backbone one, skipping");
+                                               "ospf_abr_process_router_rt(): This route is not a backbone one, skipping");
                                continue;
                        }
 
                        if (or->cost >= OSPF_LS_INFINITY) {
                                if (IS_DEBUG_OSPF_EVENT)
                                        zlog_debug(
-                                               "ospf_abr_process_router_rt(): "
-                                               "This route has LS_INFINITY metric, skipping");
+                                               "ospf_abr_process_router_rt(): This route has LS_INFINITY metric, skipping");
                                continue;
                        }
 
@@ -1302,8 +1266,7 @@ static void ospf_abr_process_router_rt(struct ospf *ospf,
                                    or->path_type != OSPF_PATH_INTRA_AREA) {
                                        if (IS_DEBUG_OSPF_EVENT)
                                                zlog_debug(
-                                                       "ospf_abr_process_network_rt(): ALT ABR: "
-                                                       "No BB connection, skip not intra-area routes");
+                                                       "ospf_abr_process_network_rt(): ALT ABR: No BB connection, skip not intra-area routes");
                                        continue;
                                }
 
@@ -1333,8 +1296,7 @@ ospf_abr_unapprove_translates(struct ospf *ospf) /* For NSSA Translations */
                        UNSET_FLAG(lsa->flags, OSPF_LSA_APPROVED);
                        if (IS_DEBUG_OSPF_NSSA)
                                zlog_debug(
-                                       "ospf_abr_unapprove_translates(): "
-                                       "approved unset on link id %s",
+                                       "ospf_abr_unapprove_translates(): approved unset on link id %s",
                                        inet_ntoa(lsa->data->id));
                }
 
@@ -1355,15 +1317,13 @@ static void ospf_abr_unapprove_summaries(struct ospf *ospf)
        for (ALL_LIST_ELEMENTS_RO(ospf->areas, node, area)) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_abr_unapprove_summaries(): "
-                               "considering area %s",
+                               "ospf_abr_unapprove_summaries(): considering area %s",
                                inet_ntoa(area->area_id));
                LSDB_LOOP (SUMMARY_LSDB(area), rn, lsa)
                        if (ospf_lsa_is_self_originated(ospf, lsa)) {
                                if (IS_DEBUG_OSPF_EVENT)
                                        zlog_debug(
-                                               "ospf_abr_unapprove_summaries(): "
-                                               "approved unset on summary link id %s",
+                                               "ospf_abr_unapprove_summaries(): approved unset on summary link id %s",
                                                inet_ntoa(lsa->data->id));
                                UNSET_FLAG(lsa->flags, OSPF_LSA_APPROVED);
                        }
@@ -1372,8 +1332,7 @@ static void ospf_abr_unapprove_summaries(struct ospf *ospf)
                        if (ospf_lsa_is_self_originated(ospf, lsa)) {
                                if (IS_DEBUG_OSPF_EVENT)
                                        zlog_debug(
-                                               "ospf_abr_unapprove_summaries(): "
-                                               "approved unset on asbr-summary link id %s",
+                                               "ospf_abr_unapprove_summaries(): approved unset on asbr-summary link id %s",
                                                inet_ntoa(lsa->data->id));
                                UNSET_FLAG(lsa->flags, OSPF_LSA_APPROVED);
                        }
@@ -1428,8 +1387,7 @@ static void ospf_abr_announce_aggregates(struct ospf *ospf)
                                                OSPF_AREA_RANGE_ADVERTISE)) {
                                        if (IS_DEBUG_OSPF_EVENT)
                                                zlog_debug(
-                                                       "ospf_abr_announce_aggregates():"
-                                                       " discarding suppress-ranges");
+                                                       "ospf_abr_announce_aggregates(): discarding suppress-ranges");
                                        continue;
                                }
 
@@ -1439,8 +1397,7 @@ static void ospf_abr_announce_aggregates(struct ospf *ospf)
 
                                if (IS_DEBUG_OSPF_EVENT)
                                        zlog_debug(
-                                               "ospf_abr_announce_aggregates():"
-                                               " this is range: %s/%d",
+                                               "ospf_abr_announce_aggregates(): this is range: %s/%d",
                                                inet_ntoa(p.u.prefix4),
                                                p.prefixlen);
 
@@ -1477,9 +1434,7 @@ static void ospf_abr_announce_aggregates(struct ospf *ospf)
                                                               area)) {
                                                        if (IS_DEBUG_OSPF_EVENT)
                                                                zlog_debug(
-                                                                       "ospf_abr_announce_aggregates(): Skipping "
-                                                                       "announcement of BB aggregate into"
-                                                                       " a transit area");
+                                                                       "ospf_abr_announce_aggregates(): Skipping announcement of BB aggregate into a transit area");
                                                        continue;
                                                }
                                                ospf_abr_announce_network_to_area(
@@ -1526,8 +1481,7 @@ ospf_abr_send_nssa_aggregates(struct ospf *ospf) /* temporarily turned off */
                                        OSPF_AREA_RANGE_ADVERTISE)) {
                                if (IS_DEBUG_OSPF_NSSA)
                                        zlog_debug(
-                                               "ospf_abr_send_nssa_aggregates():"
-                                               " discarding suppress-ranges");
+                                               "ospf_abr_send_nssa_aggregates(): discarding suppress-ranges");
                                continue;
                        }
 
@@ -1537,8 +1491,7 @@ ospf_abr_send_nssa_aggregates(struct ospf *ospf) /* temporarily turned off */
 
                        if (IS_DEBUG_OSPF_NSSA)
                                zlog_debug(
-                                       "ospf_abr_send_nssa_aggregates():"
-                                       " this is range: %s/%d",
+                                       "ospf_abr_send_nssa_aggregates(): this is range: %s/%d",
                                        inet_ntoa(p.prefix), p.prefixlen);
 
                        if (CHECK_FLAG(range->flags,
@@ -1598,8 +1551,7 @@ static void ospf_abr_announce_stub_defaults(struct ospf *ospf)
 
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_abr_announce_stub_defaults(): "
-                               "announcing 0.0.0.0/0 to area %s",
+                               "ospf_abr_announce_stub_defaults(): announcing 0.0.0.0/0 to area %s",
                                inet_ntoa(area->area_id));
                ospf_abr_announce_network_to_area(&p, area->default_cost, area);
        }
@@ -1614,8 +1566,7 @@ static int ospf_abr_remove_unapproved_translates_apply(struct ospf *ospf,
        if (CHECK_FLAG(lsa->flags, OSPF_LSA_LOCAL_XLT)
            && !CHECK_FLAG(lsa->flags, OSPF_LSA_APPROVED)) {
                zlog_info(
-                       "ospf_abr_remove_unapproved_translates(): "
-                       "removing unapproved translates, ID: %s",
+                       "ospf_abr_remove_unapproved_translates(): removing unapproved translates, ID: %s",
                        inet_ntoa(lsa->data->id));
 
                /* FLUSH THROUGHOUT AS */
@@ -1656,8 +1607,7 @@ static void ospf_abr_remove_unapproved_summaries(struct ospf *ospf)
        for (ALL_LIST_ELEMENTS_RO(ospf->areas, node, area)) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_abr_remove_unapproved_summaries(): "
-                               "looking at area %s",
+                               "ospf_abr_remove_unapproved_summaries(): looking at area %s",
                                inet_ntoa(area->area_id));
 
                LSDB_LOOP (SUMMARY_LSDB(area), rn, lsa)
index 49730063b996ec1ddbf2734cd5cc152b404db247..73ce60650470e3bc634b0114804a82dadad9ff6c 100644 (file)
@@ -889,8 +889,7 @@ int ospf_apiserver_register_opaque_type(struct ospf_apiserver *apiserv,
 
        if (IS_DEBUG_OSPF_EVENT)
                zlog_debug(
-                       "API: Add LSA-type(%d)/Opaque-type(%d) into"
-                       " apiserv(%p), total#(%d)",
+                       "API: Add LSA-type(%d)/Opaque-type(%d) into apiserv(%p), total#(%d)",
                        lsa_type, opaque_type, (void *)apiserv,
                        listcount(apiserv->opaque_types));
 
@@ -920,8 +919,7 @@ int ospf_apiserver_unregister_opaque_type(struct ospf_apiserver *apiserv,
 
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "API: Del LSA-type(%d)/Opaque-type(%d)"
-                                       " from apiserv(%p), total#(%d)",
+                                       "API: Del LSA-type(%d)/Opaque-type(%d) from apiserv(%p), total#(%d)",
                                        lsa_type, opaque_type, (void *)apiserv,
                                        listcount(apiserv->opaque_types));
 
index 8747dd1f53f21c36c67a35b9985245630a4e79cd..d2a30477b0666c8189e3afdacdfb9dd5f01148ed 100644 (file)
@@ -194,20 +194,17 @@ ospf_ase_calculate_asbr_route (struct ospf *ospf,
   if (al->e[0].fwd_addr.s_addr != 0)
     {
       if (IS_DEBUG_OSPF (lsa, LSA))
-       zlog_debug ("ospf_ase_calculate(): "
-                   "Forwarding address is not 0.0.0.0.");
+       zlog_debug ("ospf_ase_calculate(): Forwarding address is not 0.0.0.0.");
 
       if (! ospf_ase_forward_address_check (ospf, al->e[0].fwd_addr))
        {
          if (IS_DEBUG_OSPF (lsa, LSA))
-           zlog_debug ("ospf_ase_calculate(): "
-                       "Forwarding address is one of our addresses, Ignore.");
+           zlog_debug ("ospf_ase_calculate(): Forwarding address is one of our addresses, Ignore.");
          return NULL;
         }
 
       if (IS_DEBUG_OSPF (lsa, LSA))
-       zlog_debug ("ospf_ase_calculate(): "
-                   "Looking up in the Network Routing Table.");
+       zlog_debug ("ospf_ase_calculate(): Looking up in the Network Routing Table.");
 
       /* Looking up the path to the fwd_addr from Network route. */
       asbr.family = AF_INET;
@@ -219,8 +216,7 @@ ospf_ase_calculate_asbr_route (struct ospf *ospf,
       if (rn == NULL)
        {
          if (IS_DEBUG_OSPF (lsa, LSA))
-           zlog_debug ("ospf_ase_calculate(): "
-                       "Couldn't find a route to the forwarding address.");
+           zlog_debug ("ospf_ase_calculate(): Couldn't find a route to the forwarding address.");
          return NULL;
        }
 
@@ -229,8 +225,7 @@ ospf_ase_calculate_asbr_route (struct ospf *ospf,
       if ((asbr_route = rn->info) == NULL)
        {
          if (IS_DEBUG_OSPF (lsa, LSA))
-           zlog_debug ("ospf_ase_calculate(): "
-                       "Somehow OSPF route to ASBR is lost");
+           zlog_debug ("ospf_ase_calculate(): Somehow OSPF route to ASBR is lost");
          return NULL;
        }
     }
@@ -393,8 +388,7 @@ int ospf_ase_calculate_route(struct ospf *ospf, struct ospf_lsa *lsa)
                if (!ospf_ase_forward_address_check(ospf, al->e[0].fwd_addr)) {
                        if (IS_DEBUG_OSPF(lsa, LSA))
                                zlog_debug(
-                                       "Route[External]: Forwarding address is our router "
-                                       "address");
+                                       "Route[External]: Forwarding address is our router address");
                        return 0;
                }
 
@@ -407,8 +401,7 @@ int ospf_ase_calculate_route(struct ospf *ospf, struct ospf_lsa *lsa)
                if (rn == NULL || (asbr_route = rn->info) == NULL) {
                        if (IS_DEBUG_OSPF(lsa, LSA))
                                zlog_debug(
-                                       "Route[External]: Can't find route to forwarding "
-                                       "address");
+                                       "Route[External]: Can't find route to forwarding address");
                        if (rn)
                                route_unlock_node(rn);
                        return 0;
index 86088a7137a0c2a69171190afe9b989cd716ee2b..6dd5d78bd0a9adc0948de422b167354352e8ca2f 100644 (file)
@@ -491,8 +491,7 @@ uint32_t ospf_ext_schedule_prefix_index(struct interface *ifp, uint32_t index,
                return rc;
 
        if (p != NULL) {
-               osr_debug("EXT (%s): Schedule new prefix %pFX with index %u "
-                         "on interface %s", __func__, p, index, ifp->name);
+               osr_debug("EXT (%s): Schedule new prefix %pFX with index %u on interface %s", __func__, p, index, ifp->name);
 
                /* Set first Extended Prefix then the Prefix SID information */
                set_ext_prefix(exti, OSPF_PATH_INTRA_AREA, EXT_TLV_PREF_NFLG,
@@ -1006,8 +1005,7 @@ static struct ospf_lsa *ospf_ext_pref_lsa_new(struct ospf_area *area,
        lsa_header_set(s, options, lsa_type, lsa_id, router_id);
 
        osr_debug(
-               "EXT (%s): LSA[Type%u:%pI4]: Create an Opaque-LSA Extended "
-               "Prefix Opaque LSA instance",
+               "EXT (%s): LSA[Type%u:%pI4]: Create an Opaque-LSA Extended Prefix Opaque LSA instance",
                __func__, lsa_type, &lsa_id);
 
        /* Set opaque-LSA body fields. */
@@ -1064,8 +1062,7 @@ static struct ospf_lsa *ospf_ext_link_lsa_new(struct ospf_area *area,
        lsa_id.s_addr = htonl(tmp);
 
        osr_debug(
-               "EXT (%s) LSA[Type%u:%pI4]: Create an Opaque-LSA Extended "
-               "Link Opaque LSA instance",
+               "EXT (%s) LSA[Type%u:%pI4]: Create an Opaque-LSA Extended Link Opaque LSA instance",
                __func__, lsa_type, &lsa_id);
 
        /* Set opaque-LSA header fields. */
@@ -1130,8 +1127,7 @@ static int ospf_ext_pref_lsa_originate1(struct ospf_area *area,
        ospf_flood_through_area(area, NULL /*nbr */, new);
 
        osr_debug(
-               "EXT (%s): LSA[Type%u:%pI4]: Originate Opaque-LSA"
-               "Extended Prefix Opaque LSA: Area(%pI4), Link(%s)",
+               "EXT (%s): LSA[Type%u:%pI4]: Originate Opaque-LSAExtended Prefix Opaque LSA: Area(%pI4), Link(%s)",
                __func__, new->data->type, &new->data->id,
                &area->area_id, exti->ifp->name);
        if (IS_DEBUG_OSPF(lsa, LSA_GENERATE))
@@ -1178,8 +1174,7 @@ static int ospf_ext_link_lsa_originate1(struct ospf_area *area,
        ospf_flood_through_area(area, NULL /*nbr */, new);
 
        osr_debug(
-               "EXT (%s): LSA[Type%u:%pI4]: Originate Opaque-LSA "
-               "Extended Link Opaque LSA: Area(%pI4), Link(%s)",
+               "EXT (%s): LSA[Type%u:%pI4]: Originate Opaque-LSA Extended Link Opaque LSA: Area(%pI4), Link(%s)",
                __func__, new->data->type, &new->data->id,
                &area->area_id, exti->ifp->name);
        if (IS_DEBUG_OSPF(lsa, LSA_GENERATE))
@@ -1237,8 +1232,7 @@ static int ospf_ext_pref_lsa_originate(void *arg)
 
                /* Ok, let's try to originate an LSA */
                osr_debug(
-                       "EXT (%s): Let's finally re-originate the LSA 7.0.0.%u "
-                       "for Itf %s", __func__, exti->instance,
+                       "EXT (%s): Let's finally re-originate the LSA 7.0.0.%u for Itf %s", __func__, exti->instance,
                        exti->ifp ? exti->ifp->name : "");
                ospf_ext_pref_lsa_originate1(area, exti);
        }
@@ -1300,8 +1294,7 @@ static int ospf_ext_link_lsa_originate(void *arg)
 
                /* Ok, let's try to originate an LSA */
                osr_debug(
-                       "EXT (%s): Let's finally reoriginate the LSA 8.0.0.%u "
-                       "for Itf %s through the Area %pI4", __func__,
+                       "EXT (%s): Let's finally reoriginate the LSA 8.0.0.%u for Itf %s through the Area %pI4", __func__,
                        exti->instance, exti->ifp ? exti->ifp->name : "-",
                        &area->area_id);
                ospf_ext_link_lsa_originate1(area, exti);
@@ -1625,8 +1618,7 @@ static uint16_t show_vty_ext_link_rmt_itf_addr(struct vty *vty,
        top = (struct ext_subtlv_rmt_itf_addr *)tlvh;
 
        vty_out(vty,
-               "  Remote Interface Address Sub-TLV: Length %u\n        "
-               "Address: %s\n",
+               "  Remote Interface Address Sub-TLV: Length %u\n        Address: %s\n",
                ntohs(top->header.length), inet_ntoa(top->value));
 
        return TLV_SIZE(tlvh);
@@ -1639,8 +1631,7 @@ static uint16_t show_vty_ext_link_adj_sid(struct vty *vty,
        struct ext_subtlv_adj_sid *top = (struct ext_subtlv_adj_sid *)tlvh;
 
        vty_out(vty,
-               "  Adj-SID Sub-TLV: Length %u\n\tFlags: "
-               "0x%x\n\tMT-ID:0x%x\n\tWeight: 0x%x\n\t%s: %u\n",
+               "  Adj-SID Sub-TLV: Length %u\n\tFlags: 0x%x\n\tMT-ID:0x%x\n\tWeight: 0x%x\n\t%s: %u\n",
                ntohs(top->header.length), top->flags, top->mtid, top->weight,
                CHECK_FLAG(top->flags, EXT_SUBTLV_LINK_ADJ_SID_VFLG) ? "Label"
                                                                     : "Index",
@@ -1659,9 +1650,7 @@ static uint16_t show_vty_ext_link_lan_adj_sid(struct vty *vty,
                (struct ext_subtlv_lan_adj_sid *)tlvh;
 
        vty_out(vty,
-               "  LAN-Adj-SID Sub-TLV: Length %u\n\tFlags: "
-               "0x%x\n\tMT-ID:0x%x\n\tWeight: 0x%x\n\tNeighbor ID: "
-               "%s\n\t%s: %u\n",
+               "  LAN-Adj-SID Sub-TLV: Length %u\n\tFlags: 0x%x\n\tMT-ID:0x%x\n\tWeight: 0x%x\n\tNeighbor ID: %s\n\t%s: %u\n",
                ntohs(top->header.length), top->flags, top->mtid, top->weight,
                inet_ntoa(top->neighbor_id),
                CHECK_FLAG(top->flags, EXT_SUBTLV_LINK_ADJ_SID_VFLG) ? "Label"
@@ -1749,8 +1738,7 @@ static uint16_t show_vty_ext_pref_pref_sid(struct vty *vty,
                (struct ext_subtlv_prefix_sid *)tlvh;
 
        vty_out(vty,
-               "  Prefix SID Sub-TLV: Length %u\n\tAlgorithm: "
-               "%u\n\tFlags: 0x%x\n\tMT-ID:0x%x\n\t%s: %u\n",
+               "  Prefix SID Sub-TLV: Length %u\n\tAlgorithm: %u\n\tFlags: 0x%x\n\tMT-ID:0x%x\n\t%s: %u\n",
                ntohs(top->header.length), top->algorithm, top->flags,
                top->mtid,
                CHECK_FLAG(top->flags, EXT_SUBTLV_PREFIX_SID_VFLG) ? "Label"
index 818e7e72bc3bc147929f3148852174dfda8ca8e0..58afb2b39282c0dcecdd5f45e21146363becfecf 100644 (file)
@@ -507,8 +507,7 @@ static int ospf_flood_through_interface(struct ospf_interface *oi,
                if (NBR_IS_DR(inbr) || NBR_IS_BDR(inbr)) {
                        if (IS_DEBUG_OSPF_NSSA)
                                zlog_debug(
-                                       "ospf_flood_through_interface(): "
-                                       "DR/BDR NOT SEND to int %s",
+                                       "ospf_flood_through_interface(): DR/BDR NOT SEND to int %s",
                                        IF_NAME(oi));
                        return 1;
                }
@@ -522,8 +521,7 @@ static int ospf_flood_through_interface(struct ospf_interface *oi,
                if (oi->state == ISM_Backup) {
                        if (IS_DEBUG_OSPF_NSSA)
                                zlog_debug(
-                                       "ospf_flood_through_interface(): "
-                                       "ISM_Backup NOT SEND to int %s",
+                                       "ospf_flood_through_interface(): ISM_Backup NOT SEND to int %s",
                                        IF_NAME(oi));
                        return 1;
                }
@@ -538,8 +536,7 @@ static int ospf_flood_through_interface(struct ospf_interface *oi,
        /* XXX HASSO: Is this IS_DEBUG_OSPF_NSSA really correct? */
        if (IS_DEBUG_OSPF_NSSA)
                zlog_debug(
-                       "ospf_flood_through_interface(): "
-                       "DR/BDR sending upd to int %s",
+                       "ospf_flood_through_interface(): DR/BDR sending upd to int %s",
                        IF_NAME(oi));
 
        /*  RFC2328  Section 13.3
index f1ba8a31e87c0969221bd5b79f9998280e3cbb46..87929e43698d7907444c04a1c516e09b2afa3151 100644 (file)
@@ -88,8 +88,7 @@ static void ospf_ia_network_route(struct ospf *ospf, struct route_table *rt,
                if ((or = rn1->info)) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_ia_network_route(): "
-                                       "Found a route to the same network");
+                                       "ospf_ia_network_route(): Found a route to the same network");
                        /* Check the existing route. */
                        if ((res = ospf_route_cmp(ospf, new_or, or)) < 0) {
                                /* New route is better, so replace old one. */
@@ -151,8 +150,7 @@ static void ospf_ia_router_route(struct ospf *ospf, struct route_table *rtrs,
        if (or) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_ia_router_route(): "
-                               "a route to the same ABR through the same area exists");
+                               "ospf_ia_router_route(): a route to the same ABR through the same area exists");
                /* New route is better */
                if ((ret = ospf_route_cmp(ospf, new_or, or)) < 0) {
                        listnode_delete(rn->info, or);
@@ -329,8 +327,7 @@ static void ospf_update_network_route(struct ospf *ospf, struct route_table *rt,
                                   backbone paths */
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_update_network_route(): "
-                               "Allowing Shortcut ABR to add new route");
+                               "ospf_update_network_route(): Allowing Shortcut ABR to add new route");
                new_or = ospf_route_new();
                new_or->type = OSPF_DESTINATION_NETWORK;
                new_or->id = lsa->header.id;
@@ -367,8 +364,7 @@ static void ospf_update_network_route(struct ospf *ospf, struct route_table *rt,
                                             or->u.std.area_id)) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_update_network_route(): Shortcut: "
-                                       "this intra-area path is not backbone");
+                                       "ospf_update_network_route(): Shortcut: this intra-area path is not backbone");
                        return;
                }
        } else /* Not Shortcut ABR */
@@ -376,8 +372,7 @@ static void ospf_update_network_route(struct ospf *ospf, struct route_table *rt,
                if (!OSPF_IS_AREA_ID_BACKBONE(or->u.std.area_id)) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_update_network_route(): "
-                                       "route is not BB-associated");
+                                       "ospf_update_network_route(): route is not BB-associated");
                        return; /* We can update only BB routes */
                }
        }
@@ -392,16 +387,14 @@ static void ospf_update_network_route(struct ospf *ospf, struct route_table *rt,
        if (or->cost == cost) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_update_network_route(): "
-                               "new route is same distance, adding nexthops");
+                               "ospf_update_network_route(): new route is same distance, adding nexthops");
                ospf_route_copy_nexthops(or, abr_or->paths);
        }
 
        if (or->cost > cost) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_update_network_route(): "
-                               "new route is better, overriding nexthops");
+                               "ospf_update_network_route(): new route is better, overriding nexthops");
                ospf_route_subst_nexthops(or, abr_or->paths);
                or->cost = cost;
 
@@ -649,8 +642,7 @@ void ospf_ia_routing(struct ospf *ospf, struct route_table *rt,
                                    */
                                if (IS_DEBUG_OSPF_EVENT)
                                        zlog_debug(
-                                               "ospf_ia_routing(): "
-                                               "Active BB connection not found");
+                                               "ospf_ia_routing(): Active BB connection not found");
                                for (ALL_LIST_ELEMENTS_RO(ospf->areas, node,
                                                          area))
                                        OSPF_EXAMINE_SUMMARIES_ALL(area, rt,
index 1622b2fd2591deec3e35c0da5c07386946bb9b79..7977a2a9f4dedc1eb7c9c05105428e06a49d56c4 100644 (file)
@@ -839,8 +839,7 @@ struct ospf_interface *ospf_vl_new(struct ospf *ospf,
        if (vlink_count == OSPF_VL_MAX_COUNT) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_vl_new(): Alarm: "
-                               "cannot create more than OSPF_MAX_VL_COUNT virtual links");
+                               "ospf_vl_new(): Alarm: cannot create more than OSPF_MAX_VL_COUNT virtual links");
                return NULL;
        }
 
@@ -1118,8 +1117,7 @@ void ospf_vl_up_check(struct ospf_area *area, struct in_addr rid,
                        if (ospf_vl_set_params(vl_data, v)) {
                                if (IS_DEBUG_OSPF(ism, ISM_EVENTS))
                                        zlog_debug(
-                                               "ospf_vl_up_check: VL cost change,"
-                                               " scheduling router lsa refresh");
+                                               "ospf_vl_up_check: VL cost change, scheduling router lsa refresh");
                                if (ospf->backbone)
                                        ospf_router_lsa_update_area(
                                                ospf->backbone);
index d089ea76cd51ce4b34a7fb8efab6d141628f41f2..783e84814d039aa290078b3e2b06e48ab440c1e9 100644 (file)
@@ -525,8 +525,7 @@ static int lsa_link_broadcast_set(struct stream **s, struct ospf_interface *oi)
        if (oi->state == ISM_Waiting) {
                if (IS_DEBUG_OSPF(lsa, LSA_GENERATE))
                        zlog_debug(
-                               "LSA[Type1]: Interface %s is in state Waiting. "
-                               "Adding stub interface",
+                               "LSA[Type1]: Interface %s is in state Waiting. Adding stub interface",
                                oi->ifp->name);
                masklen2ip(oi->address->prefixlen, &mask);
                id.s_addr = oi->address->u.prefix4.s_addr & mask.s_addr;
@@ -541,8 +540,7 @@ static int lsa_link_broadcast_set(struct stream **s, struct ospf_interface *oi)
            && ospf_nbr_count(oi, NSM_Full) > 0) {
                if (IS_DEBUG_OSPF(lsa, LSA_GENERATE))
                        zlog_debug(
-                               "LSA[Type1]: Interface %s has a DR. "
-                               "Adding transit interface",
+                               "LSA[Type1]: Interface %s has a DR. Adding transit interface",
                                oi->ifp->name);
                return link_info_set(s, DR(oi), oi->address->u.prefix4,
                                     LSA_LINK_TYPE_TRANSIT, 0, cost);
@@ -551,8 +549,7 @@ static int lsa_link_broadcast_set(struct stream **s, struct ospf_interface *oi)
        else {
                if (IS_DEBUG_OSPF(lsa, LSA_GENERATE))
                        zlog_debug(
-                               "LSA[Type1]: Interface %s has no DR. "
-                               "Adding stub interface",
+                               "LSA[Type1]: Interface %s has no DR. Adding stub interface",
                                oi->ifp->name);
                masklen2ip(oi->address->prefixlen, &mask);
                id.s_addr = oi->address->u.prefix4.s_addr & mask.s_addr;
@@ -1084,8 +1081,7 @@ static struct ospf_lsa *ospf_network_lsa_refresh(struct ospf_lsa *lsa)
        if (oi == NULL) {
                if (IS_DEBUG_OSPF(lsa, LSA_GENERATE)) {
                        zlog_debug(
-                               "LSA[Type%d:%s]: network-LSA refresh: "
-                               "no oi found, ick, ignoring.",
+                               "LSA[Type%d:%s]: network-LSA refresh: no oi found, ick, ignoring.",
                                lsa->data->type, inet_ntoa(lsa->data->id));
                        ospf_lsa_header_dump(lsa->data);
                }
@@ -1761,8 +1757,7 @@ static struct ospf_lsa *ospf_lsa_translated_nssa_new(struct ospf *ospf,
            == NULL) {
                if (IS_DEBUG_OSPF_NSSA)
                        zlog_debug(
-                               "ospf_nssa_translate_originate(): Could not originate "
-                               "Translated Type-5 for %s",
+                               "ospf_nssa_translate_originate(): Could not originate Translated Type-5 for %s",
                                inet_ntoa(ei.p.prefix));
                return NULL;
        }
@@ -1796,8 +1791,7 @@ struct ospf_lsa *ospf_translated_nssa_originate(struct ospf *ospf,
        if ((new = ospf_lsa_translated_nssa_new(ospf, type7)) == NULL) {
                if (IS_DEBUG_OSPF_NSSA)
                        zlog_debug(
-                               "ospf_translated_nssa_originate(): Could not translate "
-                               "Type-7, Id %s, to Type-5",
+                               "ospf_translated_nssa_originate(): Could not translate Type-7, Id %s, to Type-5",
                                inet_ntoa(type7->data->id));
                return NULL;
        }
@@ -1806,8 +1800,7 @@ struct ospf_lsa *ospf_translated_nssa_originate(struct ospf *ospf,
 
        if (IS_DEBUG_OSPF_NSSA) {
                zlog_debug(
-                       "ospf_translated_nssa_originate(): "
-                       "translated Type 7, installed:");
+                       "ospf_translated_nssa_originate(): translated Type 7, installed:");
                ospf_lsa_header_dump(new->data);
                zlog_debug("   Network mask: %d", ip_masklen(extnew->mask));
                zlog_debug("   Forward addr: %s",
@@ -1816,9 +1809,7 @@ struct ospf_lsa *ospf_translated_nssa_originate(struct ospf *ospf,
 
        if ((new = ospf_lsa_install(ospf, NULL, new)) == NULL) {
                flog_warn(EC_OSPF_LSA_INSTALL_FAILURE,
-                         "ospf_lsa_translated_nssa_originate(): "
-                         "Could not install LSA "
-                         "id %s",
+                         "ospf_lsa_translated_nssa_originate(): Could not install LSA id %s",
                          inet_ntoa(type7->data->id));
                return NULL;
        }
@@ -1885,8 +1876,7 @@ struct ospf_lsa *ospf_translated_nssa_refresh(struct ospf *ospf,
        if (!type7) {
                if (IS_DEBUG_OSPF_NSSA)
                        zlog_debug(
-                               "ospf_translated_nssa_refresh(): no Type-7 found for "
-                               "Type-5 LSA Id %s",
+                               "ospf_translated_nssa_refresh(): no Type-7 found for Type-5 LSA Id %s",
                                inet_ntoa(type5->data->id));
                return NULL;
        }
@@ -1895,8 +1885,7 @@ struct ospf_lsa *ospf_translated_nssa_refresh(struct ospf *ospf,
        if (type5 == NULL || !CHECK_FLAG(type5->flags, OSPF_LSA_LOCAL_XLT)) {
                if (IS_DEBUG_OSPF_NSSA)
                        zlog_debug(
-                               "ospf_translated_nssa_refresh(): No translated Type-5 "
-                               "found for Type-7 with Id %s",
+                               "ospf_translated_nssa_refresh(): No translated Type-5 found for Type-7 with Id %s",
                                inet_ntoa(type7->data->id));
                return NULL;
        }
@@ -1908,8 +1897,7 @@ struct ospf_lsa *ospf_translated_nssa_refresh(struct ospf *ospf,
        if ((new = ospf_lsa_translated_nssa_new(ospf, type7)) == NULL) {
                if (IS_DEBUG_OSPF_NSSA)
                        zlog_debug(
-                               "ospf_translated_nssa_refresh(): Could not translate "
-                               "Type-7 for %s to Type-5",
+                               "ospf_translated_nssa_refresh(): Could not translate Type-7 for %s to Type-5",
                                inet_ntoa(type7->data->id));
                return NULL;
        }
@@ -2269,8 +2257,7 @@ struct ospf_lsa *ospf_external_lsa_refresh(struct ospf *ospf,
        if (!ospf_redistribute_check(ospf, ei, &changed)) {
                if (IS_DEBUG_OSPF(lsa, LSA_GENERATE))
                        zlog_debug(
-                               "LSA[Type%d:%s]: Could not be refreshed, "
-                               "redist check fail",
+                               "LSA[Type%d:%s]: Could not be refreshed, redist check fail",
                                lsa->data->type, inet_ntoa(lsa->data->id));
                ospf_external_lsa_flush(ospf, ei->type, &ei->p,
                                        ei->ifindex /*, ei->nexthop */);
@@ -2616,8 +2603,7 @@ struct ospf_lsa *ospf_lsa_install(struct ospf *ospf, struct ospf_interface *oi,
 
                        if (IS_DEBUG_OSPF(lsa, LSA_REFRESH)) {
                                zlog_debug(
-                                       "ospf_lsa_install() Premature Aging "
-                                       "lsa 0x%p, seqnum 0x%x",
+                                       "ospf_lsa_install() Premature Aging lsa 0x%p, seqnum 0x%x",
                                        (void *)lsa,
                                        ntohl(lsa->data->ls_seqnum));
                                ospf_lsa_header_dump(lsa->data);
@@ -2625,8 +2611,7 @@ struct ospf_lsa *ospf_lsa_install(struct ospf *ospf, struct ospf_interface *oi,
                } else {
                        if (IS_DEBUG_OSPF(lsa, LSA_GENERATE)) {
                                zlog_debug(
-                                       "ospf_lsa_install() got an lsa with seq 0x80000000 "
-                                       "that was not self originated. Ignoring\n");
+                                       "ospf_lsa_install() got an lsa with seq 0x80000000 that was not self originated. Ignoring\n");
                                ospf_lsa_header_dump(lsa->data);
                        }
                        return old;
@@ -3368,8 +3353,7 @@ struct in_addr ospf_lsa_unique_id(struct ospf *ospf, struct ospf_lsdb *lsdb,
                if (ip_masklen(al->mask) == p->prefixlen) {
                        if (IS_DEBUG_OSPF(lsa, LSA_GENERATE))
                                zlog_debug(
-                                       "ospf_lsa_unique_id(): "
-                                       "Can't get Link State ID for %s/%d",
+                                       "ospf_lsa_unique_id(): Can't get Link State ID for %s/%d",
                                        inet_ntoa(p->prefix), p->prefixlen);
                        /*        id.s_addr = 0; */
                        id.s_addr = 0xffffffff;
@@ -3386,8 +3370,7 @@ struct in_addr ospf_lsa_unique_id(struct ospf *ospf, struct ospf_lsdb *lsdb,
                        if (lsa) {
                                if (IS_DEBUG_OSPF(lsa, LSA_GENERATE))
                                        zlog_debug(
-                                               "ospf_lsa_unique_id(): "
-                                               "Can't get Link State ID for %s/%d",
+                                               "ospf_lsa_unique_id(): Can't get Link State ID for %s/%d",
                                                inet_ntoa(p->prefix),
                                                p->prefixlen);
                                /*            id.s_addr = 0; */
@@ -3550,8 +3533,7 @@ void ospf_refresher_register_lsa(struct ospf *ospf, struct ospf_lsa *lsa)
 
                if (IS_DEBUG_OSPF(lsa, LSA_REFRESH))
                        zlog_debug(
-                               "LSA[Refresh:Type%d:%s]: ospf_refresher_register_lsa(): "
-                               "setting refresh_list on lsa %p (slod %d)",
+                               "LSA[Refresh:Type%d:%s]: ospf_refresher_register_lsa(): setting refresh_list on lsa %p (slod %d)",
                                lsa->data->type, inet_ntoa(lsa->data->id),
                                (void *)lsa, index);
        }
@@ -3609,8 +3591,7 @@ int ospf_lsa_refresh_walker(struct thread *t)
             i = (i + 1) % OSPF_LSA_REFRESHER_SLOTS) {
                if (IS_DEBUG_OSPF(lsa, LSA_REFRESH))
                        zlog_debug(
-                               "LSA[Refresh]: ospf_lsa_refresh_walker(): "
-                               "refresh index %d",
+                               "LSA[Refresh]: ospf_lsa_refresh_walker(): refresh index %d",
                                i);
 
                refresh_list = ospf->lsa_refresh_queue.qs[i];
@@ -3624,8 +3605,7 @@ int ospf_lsa_refresh_walker(struct thread *t)
                                               lsa)) {
                                if (IS_DEBUG_OSPF(lsa, LSA_REFRESH))
                                        zlog_debug(
-                                               "LSA[Refresh:Type%d:%s]: ospf_lsa_refresh_walker(): "
-                                               "refresh lsa %p (slot %d)",
+                                               "LSA[Refresh:Type%d:%s]: ospf_lsa_refresh_walker(): refresh lsa %p (slot %d)",
                                                lsa->data->type,
                                                inet_ntoa(lsa->data->id),
                                                (void *)lsa, i);
index b8e2dac70e83f30a7a09680f3dff6bfe77814658..3a1547978a8dd80cb66e8871128c4eb9d4e9054f 100644 (file)
@@ -53,9 +53,7 @@ int ospf_if_add_allspfrouters(struct ospf *top, struct prefix *p,
        if (ret < 0)
                flog_err(
                        EC_LIB_SOCKET,
-                       "can't setsockopt IP_ADD_MEMBERSHIP (fd %d, addr %s, "
-                       "ifindex %u, AllSPFRouters): %s; perhaps a kernel limit "
-                       "on # of multicast group memberships has been exceeded?",
+                       "can't setsockopt IP_ADD_MEMBERSHIP (fd %d, addr %s, ifindex %u, AllSPFRouters): %s; perhaps a kernel limit on # of multicast group memberships has been exceeded?",
                        top->fd, inet_ntoa(p->u.prefix4), ifindex,
                        safe_strerror(errno));
        else {
@@ -78,8 +76,7 @@ int ospf_if_drop_allspfrouters(struct ospf *top, struct prefix *p,
                                        ifindex);
        if (ret < 0)
                flog_err(EC_LIB_SOCKET,
-                        "can't setsockopt IP_DROP_MEMBERSHIP (fd %d, addr %s, "
-                        "ifindex %u, AllSPFRouters): %s",
+                        "can't setsockopt IP_DROP_MEMBERSHIP (fd %d, addr %s, ifindex %u, AllSPFRouters): %s",
                         top->fd, inet_ntoa(p->u.prefix4), ifindex,
                         safe_strerror(errno));
        else {
@@ -104,9 +101,7 @@ int ospf_if_add_alldrouters(struct ospf *top, struct prefix *p,
        if (ret < 0)
                flog_err(
                        EC_LIB_SOCKET,
-                       "can't setsockopt IP_ADD_MEMBERSHIP (fd %d, addr %s, "
-                       "ifindex %u, AllDRouters): %s; perhaps a kernel limit "
-                       "on # of multicast group memberships has been exceeded?",
+                       "can't setsockopt IP_ADD_MEMBERSHIP (fd %d, addr %s, ifindex %u, AllDRouters): %s; perhaps a kernel limit on # of multicast group memberships has been exceeded?",
                        top->fd, inet_ntoa(p->u.prefix4), ifindex,
                        safe_strerror(errno));
        else
@@ -127,8 +122,7 @@ int ospf_if_drop_alldrouters(struct ospf *top, struct prefix *p,
                                        ifindex);
        if (ret < 0)
                flog_err(EC_LIB_SOCKET,
-                        "can't setsockopt IP_DROP_MEMBERSHIP (fd %d, addr %s, "
-                        "ifindex %u, AllDRouters): %s",
+                        "can't setsockopt IP_DROP_MEMBERSHIP (fd %d, addr %s, ifindex %u, AllDRouters): %s",
                         top->fd, inet_ntoa(p->u.prefix4), ifindex,
                         safe_strerror(errno));
        else
@@ -167,8 +161,7 @@ int ospf_if_ipmulticast(struct ospf *top, struct prefix *p, ifindex_t ifindex)
        ret = setsockopt_ipv4_multicast_if(top->fd, p->u.prefix4, ifindex);
        if (ret < 0)
                flog_err(EC_LIB_SOCKET,
-                        "can't setsockopt IP_MULTICAST_IF(fd %d, addr %s, "
-                        "ifindex %u): %s",
+                        "can't setsockopt IP_MULTICAST_IF(fd %d, addr %s, ifindex %u): %s",
                         top->fd, inet_ntoa(p->u.prefix4), ifindex,
                         safe_strerror(errno));
 #endif
index 47688babbfda11bad07f0a49e631760d860241f2..dffbfb7d17b43e93a49c1ac95f969c6d28f534cd 100644 (file)
@@ -683,8 +683,7 @@ static void nsm_change_state(struct ospf_neighbor *nbr, int state)
 
                if (CHECK_FLAG(oi->ospf->config, OSPF_LOG_ADJACENCY_DETAIL))
                        zlog_info(
-                               "%s:[%s:%s], %s -> %s): "
-                               "scheduling new router-LSA origination",
+                               "%s:[%s:%s], %s -> %s): scheduling new router-LSA origination",
                                __func__, inet_ntoa(nbr->router_id),
                                ospf_get_name(oi->ospf),
                                lookup_msg(ospf_nsm_state_msg, old_state, NULL),
@@ -785,8 +784,7 @@ int ospf_nsm_event(struct thread *thread)
                         */
                        flog_err(
                                EC_OSPF_FSM_INVALID_STATE,
-                               "NSM[%s:%s:%s]: %s (%s): "
-                               "Warning: action tried to change next_state to %s",
+                               "NSM[%s:%s:%s]: %s (%s): Warning: action tried to change next_state to %s",
                                IF_NAME(nbr->oi), inet_ntoa(nbr->router_id),
                                ospf_get_name(nbr->oi->ospf),
                                lookup_msg(ospf_nsm_state_msg, nbr->state,
index 35fa5da74b06cd6ae0732ee91194746aeb81ca9b..061ada5b167e318dee0ad7609da2323af7809fe8 100644 (file)
@@ -1781,8 +1781,7 @@ void ospf_opaque_lsa_reoriginate_schedule(void *lsa_type_dependent,
        if (oipt->t_opaque_lsa_self != NULL) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "Type-%u Opaque-LSA has already scheduled to"
-                               " RE-ORIGINATE: [opaque-type=%u]",
+                               "Type-%u Opaque-LSA has already scheduled to RE-ORIGINATE: [opaque-type=%u]",
                                lsa_type,
                                GET_OPAQUE_TYPE(ntohl(lsa->data->id.s_addr)));
                goto out;
@@ -1799,8 +1798,7 @@ void ospf_opaque_lsa_reoriginate_schedule(void *lsa_type_dependent,
 
        if (IS_DEBUG_OSPF_EVENT)
                zlog_debug(
-                       "Schedule Type-%u Opaque-LSA to RE-ORIGINATE in %d"
-                       " ms later: [opaque-type=%u]",
+                       "Schedule Type-%u Opaque-LSA to RE-ORIGINATE in %d ms later: [opaque-type=%u]",
                        lsa_type, delay,
                        GET_OPAQUE_TYPE(ntohl(lsa->data->id.s_addr)));
 
@@ -1919,8 +1917,7 @@ static int ospf_opaque_type10_lsa_reoriginate_timer(struct thread *t)
        if (n == 0 || !CHECK_FLAG(top->config, OSPF_OPAQUE_CAPABLE)) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "Suspend re-origination of Type-10 Opaque-LSAs"
-                               " (opaque-type=%u) for a while...",
+                               "Suspend re-origination of Type-10 Opaque-LSAs (opaque-type=%u) for a while...",
                                oipt->opaque_type);
 
                oipt->status = PROC_SUSPEND;
@@ -1930,8 +1927,7 @@ static int ospf_opaque_type10_lsa_reoriginate_timer(struct thread *t)
 
        if (IS_DEBUG_OSPF_EVENT)
                zlog_debug(
-                       "Timer[Type10-LSA]: Re-originate Opaque-LSAs"
-                       " (opaque-type=%u) for Area %s",
+                       "Timer[Type10-LSA]: Re-originate Opaque-LSAs (opaque-type=%u) for Area %s",
                        oipt->opaque_type, inet_ntoa(area->area_id));
 
        rc = (*functab->lsa_originator)(area);
index a39d19cc5a6b5bda32df86e257caff4d58e448ec..b0dd5c6fc2b1813d5c05bb4e1c461f0406625305 100644 (file)
@@ -604,8 +604,7 @@ static void ospf_write_frags(int fd, struct ospf_packet *op, struct ip *iph,
                if (ret < 0)
                        flog_err(
                                EC_LIB_SOCKET,
-                               "*** ospf_write_frags: sendmsg failed to %s,"
-                               " id %d, off %d, len %d, mtu %u failed with %s",
+                               "*** ospf_write_frags: sendmsg failed to %s, id %d, off %d, len %d, mtu %u failed with %s",
                                inet_ntoa(iph->ip_dst), iph->ip_id, iph->ip_off,
                                iph->ip_len, mtu, safe_strerror(errno));
 
@@ -798,16 +797,14 @@ static int ospf_write(struct thread *thread)
                sockopt_iphdrincl_swab_systoh(&iph);
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_write to %s, "
-                               "id %d, off %d, len %d, interface %s, mtu %u:",
+                               "ospf_write to %s, id %d, off %d, len %d, interface %s, mtu %u:",
                                inet_ntoa(iph.ip_dst), iph.ip_id, iph.ip_off,
                                iph.ip_len, oi->ifp->name, oi->ifp->mtu);
 
                if (ret < 0)
                        flog_err(
                                EC_LIB_SOCKET,
-                               "*** sendmsg in ospf_write failed to %s, "
-                               "id %d, off %d, len %d, interface %s, mtu %u: %s",
+                               "*** sendmsg in ospf_write failed to %s, id %d, off %d, len %d, interface %s, mtu %u: %s",
                                inet_ntoa(iph.ip_dst), iph.ip_id, iph.ip_off,
                                iph.ip_len, oi->ifp->name, oi->ifp->mtu,
                                safe_strerror(errno));
@@ -897,8 +894,7 @@ static void ospf_hello(struct ip *iph, struct ospf_header *ospfh,
        if (IPV4_ADDR_SAME(&ospfh->router_id, &oi->ospf->router_id)) {
                if (IS_DEBUG_OSPF_PACKET(ospfh->type - 1, RECV)) {
                        zlog_debug(
-                               "ospf_header[%s/%s]: selforiginated, "
-                               "dropping.",
+                               "ospf_header[%s/%s]: selforiginated, dropping.",
                                lookup_msg(ospf_packet_type_str, ospfh->type,
                                           NULL),
                                inet_ntoa(iph->ip_src));
@@ -927,8 +923,7 @@ static void ospf_hello(struct ip *iph, struct ospf_header *ospfh,
        /* Compare Router Dead Interval. */
        if (OSPF_IF_PARAM(oi, v_wait) != ntohl(hello->dead_interval)) {
                flog_warn(EC_OSPF_PACKET,
-                         "Packet %s [Hello:RECV]: RouterDeadInterval mismatch "
-                         "(expected %u, but received %u).",
+                         "Packet %s [Hello:RECV]: RouterDeadInterval mismatch (expected %u, but received %u).",
                          inet_ntoa(ospfh->router_id),
                          OSPF_IF_PARAM(oi, v_wait),
                          ntohl(hello->dead_interval));
@@ -941,8 +936,7 @@ static void ospf_hello(struct ip *iph, struct ospf_header *ospfh,
                    != ntohs(hello->hello_interval)) {
                        flog_warn(
                                EC_OSPF_PACKET,
-                               "Packet %s [Hello:RECV]: HelloInterval mismatch "
-                               "(expected %u, but received %u).",
+                               "Packet %s [Hello:RECV]: HelloInterval mismatch (expected %u, but received %u).",
                                inet_ntoa(ospfh->router_id),
                                OSPF_IF_PARAM(oi, v_hello),
                                ntohs(hello->hello_interval));
@@ -1213,8 +1207,7 @@ static void ospf_db_desc_proc(struct stream *s, struct ospf_interface *oi,
                         */
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "Packet [DD:RECV]: LSA received Type %d, "
-                                       "ID %s is not recent.",
+                                       "Packet [DD:RECV]: LSA received Type %d, ID %s is not recent.",
                                        lsah->type, inet_ntoa(lsah->id));
                        ospf_lsa_discard(new);
                }
@@ -1402,8 +1395,7 @@ static void ospf_db_desc(struct ip *iph, struct ospf_header *ospfh,
                                if (CHECK_FLAG(oi->ospf->config,
                                               OSPF_LOG_ADJACENCY_DETAIL))
                                        zlog_info(
-                                               "Packet[DD]: Neighbor %s: Initial DBD from Slave, "
-                                               "ignoring.",
+                                               "Packet[DD]: Neighbor %s: Initial DBD from Slave, ignoring.",
                                                inet_ntoa(nbr->router_id));
                                break;
                        }
@@ -1527,8 +1519,7 @@ static void ospf_db_desc(struct ip *iph, struct ospf_header *ospfh,
                        if (IS_SET_DD_MS(nbr->dd_flags)) {
                                /* Master should discard duplicate DD packet. */
                                zlog_info(
-                                       "Packet[DD]: Neighbor %s duplicated, "
-                                       "packet discarded.",
+                                       "Packet[DD]: Neighbor %s duplicated, packet discarded.",
                                        inet_ntoa(nbr->router_id));
                                break;
                        } else {
@@ -1848,8 +1839,7 @@ static void ospf_ls_upd(struct ospf *ospf, struct ip *iph,
        if (nbr->state < NSM_Exchange) {
                if (IS_DEBUG_OSPF(nsm, NSM_EVENTS))
                        zlog_debug(
-                               "Link State Update: "
-                               "Neighbor[%s] state %s is less than Exchange",
+                               "Link State Update: Neighbor[%s] state %s is less than Exchange",
                                inet_ntoa(ospfh->router_id),
                                lookup_msg(ospf_nsm_state_msg, nbr->state,
                                           NULL));
@@ -1948,8 +1938,7 @@ static void ospf_ls_upd(struct ospf *ospf, struct ip *iph,
                                char buf3[INET_ADDRSTRLEN];
 
                                flog_err(EC_OSPF_ROUTER_LSA_MISMATCH,
-                                        "Incoming Router-LSA from %s with "
-                                        "Adv-ID[%s] != LS-ID[%s]",
+                                        "Incoming Router-LSA from %s with Adv-ID[%s] != LS-ID[%s]",
                                         inet_ntop(AF_INET, &ospfh->router_id,
                                                   buf1, INET_ADDRSTRLEN),
                                         inet_ntop(AF_INET, &lsa->data->id,
@@ -1959,8 +1948,7 @@ static void ospf_ls_upd(struct ospf *ospf, struct ip *iph,
                                                   INET_ADDRSTRLEN));
                                flog_err(
                                        EC_OSPF_DOMAIN_CORRUPT,
-                                       "OSPF domain compromised by attack or corruption. "
-                                       "Verify correct operation of -ALL- OSPF routers.");
+                                       "OSPF domain compromised by attack or corruption. Verify correct operation of -ALL- OSPF routers.");
                                DISCARD_LSA(lsa, 0);
                        }
 
@@ -2032,8 +2020,7 @@ static void ospf_ls_upd(struct ospf *ospf, struct ip *iph,
                        if (current == NULL) {
                                if (IS_DEBUG_OSPF_EVENT)
                                        zlog_debug(
-                                               "LSA[%s]: Previously originated Opaque-LSA,"
-                                               "not found in the LSDB.",
+                                               "LSA[%s]: Previously originated Opaque-LSA,not found in the LSDB.",
                                                dump_lsa_key(lsa));
 
                                SET_FLAG(lsa->flags, OSPF_LSA_SELF);
@@ -2254,8 +2241,7 @@ static void ospf_ls_ack(struct ip *iph, struct ospf_header *ospfh,
        if (nbr->state < NSM_Exchange) {
                if (IS_DEBUG_OSPF(nsm, NSM_EVENTS))
                        zlog_debug(
-                               "Link State Acknowledgment: "
-                               "Neighbor[%s] state %s is less than Exchange",
+                               "Link State Acknowledgment: Neighbor[%s] state %s is less than Exchange",
                                inet_ntoa(ospfh->router_id),
                                lookup_msg(ospf_nsm_state_msg, nbr->state,
                                           NULL));
@@ -2322,8 +2308,7 @@ static struct stream *ospf_recv_packet(struct ospf *ospf, int fd,
        if ((unsigned int)ret < sizeof(struct ip)) {
                flog_warn(
                        EC_OSPF_PACKET,
-                       "ospf_recv_packet: discarding runt packet of length %d "
-                       "(ip header size is %u)",
+                       "ospf_recv_packet: discarding runt packet of length %d (ip header size is %u)",
                        ret, (unsigned int)sizeof(iph));
                return NULL;
        }
@@ -2369,8 +2354,7 @@ static struct stream *ospf_recv_packet(struct ospf *ospf, int fd,
        if (ret != ip_len) {
                flog_warn(
                        EC_OSPF_PACKET,
-                       "ospf_recv_packet read length mismatch: ip_len is %d, "
-                       "but recvmsg returned %d",
+                       "ospf_recv_packet read length mismatch: ip_len is %d, but recvmsg returned %d",
                        ip_len, ret);
                return NULL;
        }
@@ -3141,8 +3125,7 @@ static enum ospf_read_return_enum ospf_read_helper(struct ospf *ospf)
        if (ret < 0) {
                if (IS_DEBUG_OSPF_PACKET(0, RECV))
                        zlog_debug(
-                               "ospf_read[%s]: Header check failed, "
-                               "dropping.",
+                               "ospf_read[%s]: Header check failed, dropping.",
                                inet_ntoa(iph->ip_src));
                return OSPF_READ_CONTINUE;
        }
@@ -3992,17 +3975,13 @@ static struct ospf_packet *ospf_ls_upd_packet_new(struct list *update,
                if (!warned) {
                        flog_warn(
                                EC_OSPF_LARGE_LSA,
-                               "ospf_ls_upd_packet_new: oversized LSA encountered!"
-                               "will need to fragment. Not optimal. Try divide up"
-                               " your network with areas. Use 'debug ospf packet send'"
-                               " to see details, or look at 'show ip ospf database ..'");
+                               "ospf_ls_upd_packet_new: oversized LSA encountered!will need to fragment. Not optimal. Try divide up your network with areas. Use 'debug ospf packet send' to see details, or look at 'show ip ospf database ..'");
                        warned = 1;
                }
 
                if (IS_DEBUG_OSPF_PACKET(0, SEND))
                        zlog_debug(
-                               "ospf_ls_upd_packet_new: oversized LSA id:%s,"
-                               " %d bytes originated by %s, will be fragmented!",
+                               "ospf_ls_upd_packet_new: oversized LSA id:%s, %d bytes originated by %s, will be fragmented!",
                                inet_ntoa(lsa->data->id),
                                ntohs(lsa->data->length),
                                inet_ntoa(lsa->data->adv_router));
@@ -4020,9 +3999,7 @@ static struct ospf_packet *ospf_ls_upd_packet_new(struct list *update,
 
        if (size > OSPF_MAX_PACKET_SIZE) {
                flog_warn(EC_OSPF_LARGE_LSA,
-                         "ospf_ls_upd_packet_new: oversized LSA id:%s too big,"
-                         " %d bytes, packet size %ld, dropping it completely."
-                         " OSPF routing is broken!",
+                         "ospf_ls_upd_packet_new: oversized LSA id:%s too big, %d bytes, packet size %ld, dropping it completely. OSPF routing is broken!",
                          inet_ntoa(lsa->data->id), ntohs(lsa->data->length),
                          (long int)size);
                list_delete_node(update, ln);
@@ -4153,8 +4130,7 @@ static int ospf_ls_upd_send_queue_event(struct thread *thread)
        if (again != 0) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_ls_upd_send_queue: update lists not cleared,"
-                               " %d nodes to try again, raising new event",
+                               "ospf_ls_upd_send_queue: update lists not cleared, %d nodes to try again, raising new event",
                                again);
                oi->t_ls_upd_event = NULL;
                thread_add_event(master, ospf_ls_upd_send_queue_event, oi, 0,
index a661c80a91399126ddd532160a35bf14a28bd774..776f50b33ad35d272b9cc8fa84c97a774550f99d 100644 (file)
@@ -322,8 +322,7 @@ void ospf_intra_add_router(struct route_table *rt, struct vertex *v,
        if (!IS_ROUTER_LSA_BORDER(lsa) && !IS_ROUTER_LSA_EXTERNAL(lsa)) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_intra_add_router: "
-                               "this router is neither ASBR nor ABR, skipping it");
+                               "ospf_intra_add_router: this router is neither ASBR nor ABR, skipping it");
                return;
        }
 
@@ -506,8 +505,7 @@ void ospf_intra_add_stub(struct route_table *rt, struct router_lsa_link *link,
 
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_intra_add_stub(): "
-                               "another route to the same prefix found with cost %u",
+                               "ospf_intra_add_stub(): another route to the same prefix found with cost %u",
                                cur_or->cost);
 
                /* Compare this distance to the current best cost to the stub
@@ -923,16 +921,14 @@ int ospf_add_discard_route(struct ospf *ospf, struct route_table *rt,
                if (or->path_type == OSPF_PATH_INTRA_AREA) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_add_discard_route(): "
-                                       "an intra-area route exists");
+                                       "ospf_add_discard_route(): an intra-area route exists");
                        return 0;
                }
 
                if (or->type == OSPF_DESTINATION_DISCARD) {
                        if (IS_DEBUG_OSPF_EVENT)
                                zlog_debug(
-                                       "ospf_add_discard_route(): "
-                                       "discard entry already installed");
+                                       "ospf_add_discard_route(): discard entry already installed");
                        return 0;
                }
 
@@ -941,8 +937,7 @@ int ospf_add_discard_route(struct ospf *ospf, struct route_table *rt,
 
        if (IS_DEBUG_OSPF_EVENT)
                zlog_debug(
-                       "ospf_add_discard_route(): "
-                       "adding %s/%d",
+                       "ospf_add_discard_route(): adding %s/%d",
                        inet_ntoa(p->prefix), p->prefixlen);
 
        new_or = ospf_route_new();
@@ -967,8 +962,7 @@ void ospf_delete_discard_route(struct ospf *ospf, struct route_table *rt,
 
        if (IS_DEBUG_OSPF_EVENT)
                zlog_debug(
-                       "ospf_delete_discard_route(): "
-                       "deleting %s/%d",
+                       "ospf_delete_discard_route(): deleting %s/%d",
                        inet_ntoa(p->prefix), p->prefixlen);
 
        rn = route_node_lookup(rt, (struct prefix *)p);
@@ -985,16 +979,14 @@ void ospf_delete_discard_route(struct ospf *ospf, struct route_table *rt,
        if (or->path_type == OSPF_PATH_INTRA_AREA) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_delete_discard_route(): "
-                               "an intra-area route exists");
+                               "ospf_delete_discard_route(): an intra-area route exists");
                return;
        }
 
        if (or->type != OSPF_DESTINATION_DISCARD) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_delete_discard_route(): "
-                               "not a discard entry");
+                               "ospf_delete_discard_route(): not a discard entry");
                return;
        }
 
index 64c59c9abf097922bbc3384deeefb2bdbdbe95df..91fc20475d9472c8e3de261f8320d2345c8d7f75 100644 (file)
@@ -540,8 +540,7 @@ static unsigned int ospf_nexthop_calculation(struct ospf_area *area,
 
                if (IS_DEBUG_OSPF_EVENT) {
                        zlog_debug(
-                               "%s: considering link:%s "
-                               "type:%d link_id:%s link_data:%s",
+                               "%s: considering link:%s type:%d link_id:%s link_data:%s",
                                __func__, oi->ifp->name, l->m[0].type,
                                inet_ntop(AF_INET, &l->link_id, buf1, BUFSIZ),
                                inet_ntop(AF_INET, &l->link_data, buf2,
@@ -676,8 +675,7 @@ static unsigned int ospf_nexthop_calculation(struct ospf_area *area,
                                        return 1;
                                } else
                                        zlog_info(
-                                               "ospf_nexthop_calculation(): "
-                                               "vl_data for VL link not found");
+                                               "ospf_nexthop_calculation(): vl_data for VL link not found");
                        } /* end virtual-link from V to W */
                        return 0;
                } /* end W is a Router vertex */
@@ -1183,8 +1181,7 @@ static void ospf_spf_calculate(struct ospf *ospf, struct ospf_area *area,
        if (!area->router_lsa_self) {
                if (IS_DEBUG_OSPF_EVENT)
                        zlog_debug(
-                               "ospf_spf_calculate: "
-                               "Skip area %s's calculation due to empty router_lsa_self",
+                               "ospf_spf_calculate: Skip area %s's calculation due to empty router_lsa_self",
                                inet_ntoa(area->area_id));
                return;
        }
index 1a65bfa4118fc585c94fd6dc08ffc90868390f84..8110bc2d029ec37774a809c8fbba20255e3269a7 100644 (file)
@@ -1022,8 +1022,7 @@ void ospf_sr_ri_lsa_update(struct ospf_lsa *lsa)
        if ((srn != NULL) && (srn->instance != 0)
            && (srn->instance != ntohl(lsah->id.s_addr))) {
                flog_err(EC_OSPF_SR_INVALID_LSA_ID,
-                        "SR (%s): Abort! Wrong "
-                        "LSA ID 4.0.0.%u for SR node %pI4/%u",
+                        "SR (%s): Abort! Wrong LSA ID 4.0.0.%u for SR node %pI4/%u",
                         __func__, GET_OPAQUE_ID(ntohl(lsah->id.s_addr)),
                         &lsah->adv_router, srn->instance);
                return;
@@ -1638,8 +1637,7 @@ void ospf_sr_config_write_router(struct vty *vty)
                        for (ALL_LIST_ELEMENTS_RO(OspfSR.self->ext_prefix, node,
                                                  srp)) {
                                vty_out(vty,
-                                       " segment-routing prefix %s/%u "
-                                       "index %u%s\n",
+                                       " segment-routing prefix %s/%u index %u%s\n",
                                        inet_ntoa(srp->prefv4.prefix),
                                        srp->prefv4.prefixlen, srp->sid,
                                        CHECK_FLAG(srp->flags,
@@ -1665,8 +1663,7 @@ DEFUN(ospf_sr_enable,
 
        if (ospf->vrf_id != VRF_DEFAULT) {
                vty_out(vty,
-                       "Segment Routing is only supported in default "
-                       "VRF\n");
+                       "Segment Routing is only supported in default VRF\n");
                return CMD_WARNING_CONFIG_FAILED;
        }
 
@@ -1954,8 +1951,7 @@ DEFUN (sr_prefix_sid,
                 */
                listnode_add(OspfSR.self->ext_prefix, new);
                zlog_info(
-                       "Interface for prefix %pFX not found. Deferred LSA "
-                       "flooding",
+                       "Interface for prefix %pFX not found. Deferred LSA flooding",
                        &p);
                return CMD_SUCCESS;
        }
@@ -2245,11 +2241,9 @@ static void show_sr_node(struct vty *vty, struct json_object *json,
 
        if (!json) {
                sbuf_push(&sbuf, 0,
-                         "\n\n    Prefix or Link       Node or Adj. SID  "
-                         "     Label Operation  Interface          Nexthop\n");
+                         "\n\n    Prefix or Link       Node or Adj. SID       Label Operation  Interface          Nexthop\n");
                sbuf_push(&sbuf, 0,
-                         "------------------  ---------------------  "
-                         "--------------------  ---------  ---------------\n");
+                         "------------------  ---------------------  --------------------  ---------  ---------------\n");
        }
        for (ALL_LIST_ELEMENTS_RO(srn->ext_prefix, node, srp)) {
                if (json) {
index 4093837ba72c57444841c605cdc02526f5c73f96..c5557bc7ac814188dbe1405b9f44a270435ebb07 100644 (file)
@@ -313,8 +313,7 @@ DEFPY (ospf_router_id,
        for (ALL_LIST_ELEMENTS_RO(ospf->areas, node, area))
                if (area->full_nbrs) {
                        vty_out(vty,
-                               "For this router-id change to take effect,"
-                               " save config and restart ospfd\n");
+                               "For this router-id change to take effect, save config and restart ospfd\n");
                        return CMD_SUCCESS;
                }
 
@@ -347,8 +346,7 @@ DEFUN_HIDDEN (ospf_router_id_old,
        for (ALL_LIST_ELEMENTS_RO(ospf->areas, node, area))
                if (area->full_nbrs) {
                        vty_out(vty,
-                               "For this router-id change to take effect,"
-                               " save config and restart ospfd\n");
+                               "For this router-id change to take effect, save config and restart ospfd\n");
                        return CMD_SUCCESS;
                }
 
@@ -381,8 +379,7 @@ DEFPY (no_ospf_router_id,
        for (ALL_LIST_ELEMENTS_RO(ospf->areas, node, area))
                if (area->full_nbrs) {
                        vty_out(vty,
-                               "For this router-id change to take effect,"
-                               " save config and restart ospfd\n");
+                               "For this router-id change to take effect, save config and restart ospfd\n");
                        return CMD_SUCCESS;
                }
 
@@ -1385,8 +1382,7 @@ DEFUN (ospf_area_shortcut,
 
        if (ospf->abr_type != OSPF_ABR_SHORTCUT)
                vty_out(vty,
-                       "Shortcut area setting will take effect "
-                       "only when the router is configured as Shortcut ABR\n");
+                       "Shortcut area setting will take effect only when the router is configured as Shortcut ABR\n");
 
        return CMD_SUCCESS;
 }
@@ -1718,8 +1714,7 @@ DEFUN (ospf_area_default_cost,
        p.prefixlen = 0;
        if (IS_DEBUG_OSPF_EVENT)
                zlog_debug(
-                       "ospf_abr_announce_stub_defaults(): "
-                       "announcing 0.0.0.0/0 to area %s",
+                       "ospf_abr_announce_stub_defaults(): announcing 0.0.0.0/0 to area %s",
                        inet_ntoa(area->area_id));
        ospf_abr_announce_network_to_area(&p, area->default_cost, area);
 
@@ -1762,8 +1757,7 @@ DEFUN (no_ospf_area_default_cost,
        p.prefixlen = 0;
        if (IS_DEBUG_OSPF_EVENT)
                zlog_debug(
-                       "ospf_abr_announce_stub_defaults(): "
-                       "announcing 0.0.0.0/0 to area %s",
+                       "ospf_abr_announce_stub_defaults(): announcing 0.0.0.0/0 to area %s",
                        inet_ntoa(area->area_id));
        ospf_abr_announce_network_to_area(&p, area->default_cost, area);
 
@@ -2712,8 +2706,7 @@ static void show_ip_ospf_area(struct vty *vty, struct ospf_area *area,
                                    area->act_ints);
        } else
                vty_out(vty,
-                       "   Number of interfaces in this area: Total: %d, "
-                       "Active: %d\n",
+                       "   Number of interfaces in this area: Total: %d, Active: %d\n",
                        listcount(area->oiflist), area->act_ints);
 
        if (area->external_routing == OSPF_AREA_NSSA) {
@@ -2871,8 +2864,7 @@ static void show_ip_ospf_area(struct vty *vty, struct ospf_area *area,
        } else {
                /* Show number of fully adjacent neighbors. */
                vty_out(vty,
-                       "   Number of fully adjacent neighbors in this area:"
-                       " %d\n",
+                       "   Number of fully adjacent neighbors in this area: %d\n",
                        area->full_nbrs);
 
                /* Show authentication type. */
@@ -2886,8 +2878,7 @@ static void show_ip_ospf_area(struct vty *vty, struct ospf_area *area,
 
                if (!OSPF_IS_AREA_BACKBONE(area))
                        vty_out(vty,
-                               "   Number of full virtual adjacencies going through"
-                               " this area: %d\n",
+                               "   Number of full virtual adjacencies going through this area: %d\n",
                                area->full_vls);
 
                /* Show SPF calculation times. */
@@ -3173,8 +3164,7 @@ static int show_ip_ospf_common(struct vty *vty, struct ospf *ospf,
                                "injectingExternalRoutingInformation");
                else
                        vty_out(vty,
-                               " This router is an ASBR "
-                               "(injecting external routing information)\n");
+                               " This router is an ASBR (injecting external routing information)\n");
        }
 
        /* Show Number of AS-external-LSAs. */
@@ -10205,8 +10195,7 @@ static int config_write_virtual_link(struct vty *vty, struct ospf *ospf)
                                             ->auth_crypt,
                                     n2, ck))
                                vty_out(vty,
-                                       " area %s virtual-link %s"
-                                       " message-digest-key %d md5 %s\n",
+                                       " area %s virtual-link %s message-digest-key %d md5 %s\n",
                                        buf, inet_ntoa(vl_data->vl_peer),
                                        ck->key_id, ck->auth_key);
                }
@@ -10385,8 +10374,7 @@ static int ospf_config_write_one(struct vty *vty, struct ospf *ospf)
        /* auto-cost reference-bandwidth configuration.  */
        if (ospf->ref_bandwidth != OSPF_DEFAULT_REF_BANDWIDTH) {
                vty_out(vty,
-                       "! Important: ensure reference bandwidth "
-                       "is consistent across all routers\n");
+                       "! Important: ensure reference bandwidth is consistent across all routers\n");
                vty_out(vty, " auto-cost reference-bandwidth %d\n",
                        ospf->ref_bandwidth);
        }
index 644ea7f92278e66abdc72764d7ce0112c0d2b792..14b3550ecfb17f95cf113a9a51276afd566adc85 100644 (file)
@@ -770,8 +770,7 @@ static int ospf_external_lsa_originate_check(struct ospf *ospf,
        /* If prefix is multicast, then do not originate LSA. */
        if (IN_MULTICAST(htonl(ei->p.prefix.s_addr))) {
                zlog_info(
-                       "LSA[Type5:%s]: Not originate AS-external-LSA, "
-                       "Prefix belongs multicast",
+                       "LSA[Type5:%s]: Not originate AS-external-LSA, Prefix belongs multicast",
                        inet_ntoa(ei->p.prefix));
                return 0;
        }
@@ -780,8 +779,7 @@ static int ospf_external_lsa_originate_check(struct ospf *ospf,
        if (is_prefix_default(&ei->p))
                if (ospf->default_originate == DEFAULT_ORIGINATE_NONE) {
                        zlog_info(
-                               "LSA[Type5:0.0.0.0]: Not originate AS-external-LSA "
-                               "for default");
+                               "LSA[Type5:0.0.0.0]: Not originate AS-external-LSA for default");
                        return 0;
                }
 
index 6919ed9a6dfedda0c8b4e976f5c6d48fef5f4302..6ede015a0e184ceaef5a0ffae2f85d954063c9c6 100644 (file)
@@ -4979,8 +4979,7 @@ static void pim_show_mlag_help_string(struct vty *vty, bool uj)
        if (!uj) {
                vty_out(vty, "Owner codes:\n");
                vty_out(vty,
-                       "L: EVPN-MLAG Entry, I:PIM-MLAG Entry, "
-                       "P: Peer Entry\n");
+                       "L: EVPN-MLAG Entry, I:PIM-MLAG Entry, P: Peer Entry\n");
        }
 }
 
@@ -8404,8 +8403,7 @@ DEFUN_HIDDEN (interface_ip_pim_ssm,
        }
 
        vty_out(vty,
-               "WARN: Enabled PIM SM on interface; configure PIM SSM "
-               "range if needed\n");
+               "WARN: Enabled PIM SM on interface; configure PIM SSM range if needed\n");
        return CMD_SUCCESS;
 }
 
index 89fd2bd21588bfb16a7c9098feb85c8f0495e965..212c77c039dc6d630f56fdef78245a9a01536778 100644 (file)
@@ -139,8 +139,7 @@ void pim_ifchannel_delete(struct pim_ifchannel *ch)
        if (PIM_I_am_DualActive(pim_ifp)) {
                if (PIM_DEBUG_MLAG)
                        zlog_debug(
-                               "%s: if-chnanel-%s is deleted from a Dual "
-                               "active Interface",
+                               "%s: if-chnanel-%s is deleted from a Dual active Interface",
                                __func__, ch->sg_str);
                /* Post Delete only if it is the last Dual-active Interface */
                if (ch->upstream->dualactive_ifchannel_count == 1) {
@@ -214,8 +213,7 @@ void pim_ifchannel_delete(struct pim_ifchannel *ch)
        else {
                if (PIM_DEBUG_PIM_TRACE)
                        zlog_debug(
-                               "%s: Avoiding deletion of upstream with ref_count %d "
-                               "from ifchannel(%s): %s",
+                               "%s: Avoiding deletion of upstream with ref_count %d from ifchannel(%s): %s",
                                __func__, ch->upstream->ref_count,
                                ch->interface->name, ch->sg_str);
        }
@@ -622,8 +620,7 @@ struct pim_ifchannel *pim_ifchannel_add(struct interface *ifp,
                }
                if (PIM_DEBUG_MLAG)
                        zlog_debug(
-                               "%s: New Dual active if-chnanel is added to upstream:%s "
-                               "count:%d, flags:0x%x",
+                               "%s: New Dual active if-chnanel is added to upstream:%s count:%d, flags:0x%x",
                                __func__, up->sg_str,
                                up->dualactive_ifchannel_count, up->flags);
        }
index 851b00b2ac2dec0fd5a9b2a770c82f9f55f7de7b..a8612f91fa53156129a64ab780efc0cc8705ab46 100644 (file)
@@ -351,9 +351,7 @@ static int igmp_recv_query(struct igmp_sock *igmp, int query_version,
         */
        if (query_version != pim_ifp->igmp_version) {
                zlog_warn(
-                       "Recv IGMP query v%d from %s on %s but we are using v%d, please "
-                       "configure all PIM routers on this subnet to use the same "
-                       "IGMP version",
+                       "Recv IGMP query v%d from %s on %s but we are using v%d, please configure all PIM routers on this subnet to use the same IGMP version",
                        query_version, from_str, ifp->name,
                        pim_ifp->igmp_version);
                return 0;
index cac6fab2714b92126b6ae0c785a2113ac7ad1f09..9e78b76008c0939d9f77a43daff31456f0259fdf 100644 (file)
@@ -231,9 +231,7 @@ static void mtrace_debug(struct pim_interface *pim_ifp,
        ra = mtracep->rsp_addr;
 
        zlog_debug(
-               "Rx mtrace packet incoming on %s: "
-               "hops=%d type=%d size=%d, grp=%s, src=%s,"
-               " dst=%s rsp=%s ttl=%d qid=%ud",
+               "Rx mtrace packet incoming on %s: hops=%d type=%d size=%d, grp=%s, src=%s, dst=%s rsp=%s ttl=%d qid=%ud",
                inet_ntop(AF_INET, &(pim_ifp->primary_address), inc_str,
                          sizeof(inc_str)),
                mtracep->hops, mtracep->type, mtrace_len,
@@ -255,8 +253,7 @@ static void mtrace_debug(struct pim_interface *pim_ifp,
                if ((responses % sizeof(struct igmp_mtrace_rsp)) != 0)
                        if (PIM_DEBUG_MTRACE)
                                zlog_debug(
-                                       "Mtrace response block of wrong"
-                                       " length");
+                                       "Mtrace response block of wrong length");
 
                responses = responses / sizeof(struct igmp_mtrace_rsp);
 
@@ -358,17 +355,14 @@ static int mtrace_send_packet(struct interface *ifp,
                if (sent < 0) {
                        if (PIM_DEBUG_MTRACE)
                                zlog_warn(
-                                       "Send mtrace request failed for %s on"
-                                       "%s: group=%s msg_size=%zd: errno=%d: "
-                                       " %s",
+                                       "Send mtrace request failed for %s on%s: group=%s msg_size=%zd: errno=%d:  %s",
                                        dst_str, ifp->name, group_str,
                                        mtrace_buf_len, errno,
                                        safe_strerror(errno));
                } else {
                        if (PIM_DEBUG_MTRACE)
                                zlog_warn(
-                                       "Send mtrace request failed for %s on"
-                                       " %s: group=%s msg_size=%zd: sent=%zd",
+                                       "Send mtrace request failed for %s on %s: group=%s msg_size=%zd: sent=%zd",
                                        dst_str, ifp->name, group_str,
                                        mtrace_buf_len, sent);
                }
@@ -418,8 +412,7 @@ static int mtrace_un_forward_packet(struct pim_instance *pim, struct ip *ip_hdr,
                        close(fd);
                        if (PIM_DEBUG_MTRACE)
                                zlog_warn(
-                                       "Dropping mtrace packet, "
-                                       "no route to destination");
+                                       "Dropping mtrace packet, no route to destination");
                        return -1;
                }
 
@@ -448,8 +441,7 @@ static int mtrace_un_forward_packet(struct pim_instance *pim, struct ip *ip_hdr,
        if (sent < 0) {
                if (PIM_DEBUG_MTRACE)
                        zlog_warn(
-                               "Failed to forward mtrace packet:"
-                               " sendto errno=%d, %s",
+                               "Failed to forward mtrace packet: sendto errno=%d, %s",
                                errno, safe_strerror(errno));
                return -1;
        }
@@ -480,8 +472,7 @@ static int mtrace_mc_forward_packet(struct pim_instance *pim, struct ip *ip_hdr)
        if (c_oil == NULL) {
                if (PIM_DEBUG_MTRACE) {
                        zlog_debug(
-                               "Dropping mtrace multicast packet "
-                               "len=%u to %s ttl=%u",
+                               "Dropping mtrace multicast packet len=%u to %s ttl=%u",
                                ntohs(ip_hdr->ip_len),
                                inet_ntoa(ip_hdr->ip_dst), ip_hdr->ip_ttl);
                }
@@ -532,8 +523,7 @@ static int mtrace_send_mc_response(struct pim_instance *pim,
        if (c_oil == NULL) {
                if (PIM_DEBUG_MTRACE) {
                        zlog_debug(
-                               "Dropping mtrace multicast response packet "
-                               "len=%u to %s",
+                               "Dropping mtrace multicast response packet len=%u to %s",
                                (unsigned int)mtrace_len,
                                inet_ntoa(mtracep->rsp_addr));
                }
@@ -595,8 +585,7 @@ static int mtrace_send_response(struct pim_instance *pim,
                if (!pim_nexthop_lookup(pim, &nexthop, mtracep->rsp_addr, 1)) {
                        if (PIM_DEBUG_MTRACE)
                                zlog_warn(
-                                       "Dropped response qid=%ud, no route to "
-                                       "response address",
+                                       "Dropped response qid=%ud, no route to response address",
                                        mtracep->qry_id);
                        return -1;
                }
@@ -645,8 +634,7 @@ int igmp_mtrace_recv_qry_req(struct igmp_sock *igmp, struct ip *ip_hdr,
        if (igmp_msg_len < (int)sizeof(struct igmp_mtrace)) {
                if (PIM_DEBUG_MTRACE)
                        zlog_warn(
-                               "Recv mtrace packet from %s on %s: too short,"
-                               " len=%d, min=%zu",
+                               "Recv mtrace packet from %s on %s: too short, len=%d, min=%zu",
                                from_str, ifp->name, igmp_msg_len,
                                sizeof(struct igmp_mtrace));
                return -1;
@@ -663,8 +651,7 @@ int igmp_mtrace_recv_qry_req(struct igmp_sock *igmp, struct ip *ip_hdr,
        if (recv_checksum != checksum) {
                if (PIM_DEBUG_MTRACE)
                        zlog_warn(
-                               "Recv mtrace packet from %s on %s: checksum"
-                               " mismatch: received=%x computed=%x",
+                               "Recv mtrace packet from %s on %s: checksum mismatch: received=%x computed=%x",
                                from_str, ifp->name, recv_checksum, checksum);
                return -1;
        }
@@ -688,8 +675,7 @@ int igmp_mtrace_recv_qry_req(struct igmp_sock *igmp, struct ip *ip_hdr,
                        if (IPV4_CLASS_DE(ntohl(ip_hdr->ip_dst.s_addr))) {
                                if (PIM_DEBUG_MTRACE)
                                        zlog_debug(
-                                               "Dropping multicast query "
-                                               "on wrong interface");
+                                               "Dropping multicast query on wrong interface");
                                return -1;
                        }
                        /* Unicast query on wrong interface */
@@ -700,8 +686,7 @@ int igmp_mtrace_recv_qry_req(struct igmp_sock *igmp, struct ip *ip_hdr,
                if (qry_id == mtracep->qry_id && qry_src == from.s_addr) {
                        if (PIM_DEBUG_MTRACE)
                                zlog_debug(
-                                       "Dropping multicast query with "
-                                       "duplicate source and id");
+                                       "Dropping multicast query with duplicate source and id");
                        return -1;
                }
                qry_id = mtracep->qry_id;
@@ -721,8 +706,7 @@ int igmp_mtrace_recv_qry_req(struct igmp_sock *igmp, struct ip *ip_hdr,
        } else {
                if (PIM_DEBUG_MTRACE)
                        zlog_warn(
-                               "Recv mtrace packet from %s on %s: "
-                               "invalid length %d",
+                               "Recv mtrace packet from %s on %s: invalid length %d",
                                from_str, ifp->name, igmp_msg_len);
                return -1;
        }
@@ -732,8 +716,7 @@ int igmp_mtrace_recv_qry_req(struct igmp_sock *igmp, struct ip *ip_hdr,
            && !IPV4_MC_LINKLOCAL(ntohl(ip_hdr->ip_dst.s_addr))) {
                if (PIM_DEBUG_MTRACE)
                        zlog_warn(
-                               "Recv mtrace packet from %s on %s:"
-                               " not link-local multicast %s",
+                               "Recv mtrace packet from %s on %s: not link-local multicast %s",
                                from_str, ifp->name, inet_ntoa(ip_hdr->ip_dst));
                return -1;
        }
@@ -866,8 +849,7 @@ int igmp_mtrace_recv_response(struct igmp_sock *igmp, struct ip *ip_hdr,
        if (igmp_msg_len < (int)sizeof(struct igmp_mtrace)) {
                if (PIM_DEBUG_MTRACE)
                        zlog_warn(
-                               "Recv mtrace packet from %s on %s: too short,"
-                               " len=%d, min=%zu",
+                               "Recv mtrace packet from %s on %s: too short, len=%d, min=%zu",
                                from_str, ifp->name, igmp_msg_len,
                                sizeof(struct igmp_mtrace));
                return -1;
@@ -884,8 +866,7 @@ int igmp_mtrace_recv_response(struct igmp_sock *igmp, struct ip *ip_hdr,
        if (recv_checksum != checksum) {
                if (PIM_DEBUG_MTRACE)
                        zlog_warn(
-                               "Recv mtrace response from %s on %s: checksum"
-                               " mismatch: received=%x computed=%x",
+                               "Recv mtrace response from %s on %s: checksum mismatch: received=%x computed=%x",
                                from_str, ifp->name, recv_checksum, checksum);
                return -1;
        }
index 177f53db4547ef22fbadb776c061663adb3402ca..6ea657401fc4cbc253cb556303a0c3f724ce977e 100644 (file)
@@ -118,8 +118,7 @@ void rip_interface_multicast_set(int sock, struct connected *connected)
        if (setsockopt_ipv4_multicast_if(sock, addr, connected->ifp->ifindex)
            < 0) {
                zlog_warn(
-                       "Can't setsockopt IP_MULTICAST_IF on fd %d to "
-                       "ifindex %d for interface %s",
+                       "Can't setsockopt IP_MULTICAST_IF on fd %d to ifindex %d for interface %s",
                        sock, connected->ifp->ifindex, connected->ifp->name);
        }
 
index fc53796bd2d45497b9684392546a640090bd31f8..ecadf8fb712f82d39d7eba181a5567c8e9176135 100644 (file)
@@ -742,8 +742,7 @@ static void rip_packet_dump(struct rip_packet *packet, int size,
                                                ntohs(md5->family),
                                                ntohs(md5->type));
                                        zlog_debug(
-                                               "    RIP-2 packet len %d Key ID %d"
-                                               " Auth Data len %d",
+                                               "    RIP-2 packet len %d Key ID %d Auth Data len %d",
                                                ntohs(md5->packet_len),
                                                md5->keyid, md5->auth_len);
                                        zlog_debug("    Sequence Number %ld",
@@ -757,8 +756,7 @@ static void rip_packet_dump(struct rip_packet *packet, int size,
                                                ntohs(rte->family),
                                                ntohs(rte->tag));
                                        zlog_debug(
-                                               "    MD5: %02X%02X%02X%02X%02X%02X%02X%02X"
-                                               "%02X%02X%02X%02X%02X%02X%02X%02X",
+                                               "    MD5: %02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
                                                p[0], p[1], p[2], p[3], p[4],
                                                p[5], p[6], p[7], p[8], p[9],
                                                p[10], p[11], p[12], p[13],
@@ -904,8 +902,7 @@ static int rip_auth_md5(struct rip_packet *packet, struct sockaddr_in *from,
              || (md5->auth_len == RIP_AUTH_MD5_COMPAT_SIZE))) {
                if (IS_RIP_DEBUG_EVENT)
                        zlog_debug(
-                               "RIPv2 MD5 authentication, strange authentication "
-                               "length field %d",
+                               "RIPv2 MD5 authentication, strange authentication length field %d",
                                md5->auth_len);
                return 0;
        }
@@ -916,8 +913,7 @@ static int rip_auth_md5(struct rip_packet *packet, struct sockaddr_in *from,
        if (packet_len > (length - RIP_HEADER_SIZE - RIP_AUTH_MD5_SIZE)) {
                if (IS_RIP_DEBUG_EVENT)
                        zlog_debug(
-                               "RIPv2 MD5 authentication, packet length field %d "
-                               "greater than received length %d!",
+                               "RIPv2 MD5 authentication, packet length field %d greater than received length %d!",
                                md5->packet_len, length);
                return 0;
        }
@@ -1645,8 +1641,7 @@ void rip_redistribute_delete(struct rip *rip, int type, int sub_type,
 
                                if (IS_RIP_DEBUG_EVENT)
                                        zlog_debug(
-                                               "Poison %s/%d on the interface %s with an "
-                                               "infinity metric [delete]",
+                                               "Poison %s/%d on the interface %s with an infinity metric [delete]",
                                                inet_ntoa(p->prefix),
                                                p->prefixlen,
                                                ifindex2ifname(
@@ -1814,8 +1809,7 @@ static int rip_read(struct thread *t)
 
        if (ifc == NULL) {
                zlog_info(
-                       "rip_read: cannot find connected address for packet from %s "
-                       "port %d on interface %s (VRF %s)",
+                       "rip_read: cannot find connected address for packet from %s port %d on interface %s (VRF %s)",
                        inet_ntoa(from.sin_addr), ntohs(from.sin_port),
                        ifp->name, rip->vrf_name);
                return -1;
@@ -1937,8 +1931,7 @@ static int rip_read(struct thread *t)
                if (packet->command != RIP_REQUEST) {
                        if (IS_RIP_DEBUG_PACKET)
                                zlog_debug(
-                                       "RIPv1"
-                                       " dropped because authentication enabled");
+                                       "RIPv1 dropped because authentication enabled");
                        ripd_notif_send_auth_type_failure(ifp->name);
                        rip_peer_bad_packet(rip, &from);
                        return -1;
@@ -1961,8 +1954,7 @@ static int rip_read(struct thread *t)
                if (packet->rte->family != htons(RIP_FAMILY_AUTH)) {
                        if (IS_RIP_DEBUG_PACKET)
                                zlog_debug(
-                                       "RIPv2"
-                                       " dropped because authentication enabled");
+                                       "RIPv2 dropped because authentication enabled");
                        ripd_notif_send_auth_type_failure(ifp->name);
                        rip_peer_bad_packet(rip, &from);
                        return -1;
index 625adcaa3cd0b1745fc164a4710582c883758ec4..bf6c6ff27b2ae13b53cc31792409f71d1385c266 100644 (file)
@@ -1047,8 +1047,7 @@ void ripng_redistribute_delete(struct ripng *ripng, int type, int sub_type,
 
                                if (IS_RIPNG_DEBUG_EVENT)
                                        zlog_debug(
-                                               "Poisone %s/%d on the interface %s with an "
-                                               "infinity metric [delete]",
+                                               "Poisone %s/%d on the interface %s with an infinity metric [delete]",
                                                inet6_ntoa(p->prefix),
                                                p->prefixlen,
                                                ifindex2ifname(
index b94355e8b82ec2f0c78c91d837d6e69d5b99f473..439891b559da5935b1199d9ab18d8e08e94ca1d0 100644 (file)
@@ -271,57 +271,9 @@ static struct test_segment {
                        0x03, 0xce, 0x01, 0x10, 0x00, 0x85, 0xed,
                },
                502,
-               {"8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285",
-
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285",
+               {"8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285",
+
+                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285",
                 250, 0, NOT_ALL_PRIVATE, 4096, 4, 8466},
        },
        {
@@ -383,15 +335,13 @@ static struct test_segment {
        {
                /* 20 */
                "reconcile_confed",
-               "confseq(123,456,789) confset(456,124,788) seq(6435,59408,21665)"
-               " set(23456,23456,23456), seq(23456,23456,23456)",
+               "confseq(123,456,789) confset(456,124,788) seq(6435,59408,21665) set(23456,23456,23456), seq(23456,23456,23456)",
                {0x3,  0x3,  0x00, 0x7b, 0x01, 0xc8, 0x03, 0x15, 0x4,  0x3,
                 0x01, 0xc8, 0x00, 0x7c, 0x03, 0x14, 0x2,  0x3,  0x19, 0x23,
                 0xe8, 0x10, 0x54, 0xa1, 0x1,  0x3,  0x5b, 0xa0, 0x5b, 0xa0,
                 0x5b, 0xa0, 0x2,  0x3,  0x5b, 0xa0, 0x5b, 0xa0, 0x5b, 0xa0},
                40,
-               {"(123 456 789) [124,456,788] 6435 59408 21665"
-                " {23456} 23456 23456 23456",
+               {"(123 456 789) [124,456,788] 6435 59408 21665 {23456} 23456 23456 23456",
                 "6435 59408 21665 {23456} 23456 23456 23456", 7, 4,
                 NOT_ALL_PRIVATE, 23456, 1, 6435},
        },
@@ -739,10 +689,8 @@ static struct tests {
        /* 3 */
        {&test_segments[4],
         &test_segments[5],
-        {"8467 59649 {4196,48658} {17322,30745} 6435 59408 21665"
-         " {2457,4369,61697} 1842 41590 51793",
-         "8467 59649 {4196,48658} {17322,30745} 6435 59408 21665"
-         " {2457,4369,61697} 1842 41590 51793",
+        {"8467 59649 {4196,48658} {17322,30745} 6435 59408 21665 {2457,4369,61697} 1842 41590 51793",
+         "8467 59649 {4196,48658} {17322,30745} 6435 59408 21665 {2457,4369,61697} 1842 41590 51793",
          11, 0, NOT_ALL_PRIVATE, 61697, 1, 8467}},
        /* 4 */
        {
@@ -777,59 +725,9 @@ static struct tests {
        {
                &test_segments[14],
                &test_segments[11],
-               {"8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 2 52737 4096 8722 4 8722",
-
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 "
-                "8466 2 52737 4096 8722 4 8722",
+               {"8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 2 52737 4096 8722 4 8722",
+
+                "8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 3 52737 4096 34285 8466 2 52737 4096 8722 4 8722",
                 257, 0, NOT_ALL_PRIVATE, 4096, 1000, 8466},
        },
        {NULL,
@@ -861,8 +759,7 @@ struct tests reconcile_tests[] = {
        {
                &test_segments[20],
                &test_segments[19],
-               {"(123 456 789) [124,456,788] 6435 59408 21665"
-                " {2457,4369,61697} 1842 41591 51793",
+               {"(123 456 789) [124,456,788] 6435 59408 21665 {2457,4369,61697} 1842 41591 51793",
                 "6435 59408 21665 {2457,4369,61697} 1842 41591 51793", 7, 4,
                 NOT_ALL_PRIVATE, 51793, 1, 6435},
        },
index ddb76c8f9d681b09e82a5e4670b4d6f5dd2a574b..301078867ace182fb225d7aa72c28e8fd18e868a 100644 (file)
@@ -489,8 +489,7 @@ int main(int argc, char **argv)
                in_csum_res = in_cksum_optimized(buffer, exercise);
                in_csum_rfc = in_cksum_rfc(buffer, exercise);
                if (in_csum_res != in_csum || in_csum != in_csum_rfc)
-                       printf("verify: in_chksum failed in_csum:%x, in_csum_res:%x,"
-                              "in_csum_rfc %x, len:%d\n",
+                       printf("verify: in_chksum failed in_csum:%x, in_csum_res:%x,in_csum_rfc %x, len:%d\n",
                               in_csum, in_csum_res, in_csum_rfc, exercise);
 
                ospfd = ospfd_checksum(buffer, exercise + sizeof(uint16_t),
index 674179b6ab96be9cf3b8893d6c1d8125a9a164a1..43b8adcb97316c5ba87ea9ffb4279045a00b7cde 100644 (file)
@@ -93,8 +93,7 @@ int main(int argc, char **argv)
 
        /* add bigger row */
        ttable_add_row(tt, "%s|%s||%s|%s",
-                      "nebula dusk session streets twilight "
-                      "pioneer beats yeah",
+                      "nebula dusk session streets twilight pioneer beats yeah",
                       "prarie dog", "cornmeal", ":O -*_-*");
        assert(tt->ncols == 5);
        assert(tt->nrows == 2);
index 174f403d48622187165bd67965bc86536f1f5e38..be28bfd81803dea11a080963044a41ad9730753b 100644 (file)
@@ -268,8 +268,7 @@ check_format_string (tree fntype, unsigned HOST_WIDE_INT format_num,
   /* We expect a string object type as the format arg.  */
   if (is_char_ref)
     {
-      error ("format argument should be a %qs reference but"
-            " a string was found", format_name (expected_format_type));
+      error ("format argument should be a %qs reference but a string was found", format_name (expected_format_type));
       *no_add_attrs = true;
       return false;
     }
@@ -741,8 +740,7 @@ check_function_format (tree attrs, int nargs, tree *argarray,
                        break;
                    }
                  if (args != 0)
-                   warning (OPT_Wsuggest_attribute_format, "function %qD "
-                            "might be a candidate for %qs frr_format attribute",
+                   warning (OPT_Wsuggest_attribute_format, "function %qD might be a candidate for %qs frr_format attribute",
                             current_function_decl,
                             format_types[info.format_type].name);
                }
@@ -1534,8 +1532,7 @@ flag_chars_t::validate (const format_kind_info *fki,
                                       : s->long_name);
              if (ADJ_STD (t->std) > C_STD_VER)
                warning_at (format_string_loc, OPT_Wformat_,
-                           "%s does not support %s with"
-                           " the %<%%%c%> %s format",
+                           "%s does not support %s with the %<%%%c%> %s format",
                            C_STD_NAME (t->std), _(long_name),
                            format_char, fki->name);
            }
@@ -2040,8 +2037,7 @@ argument_parser::find_format_char_info (char format_char)
       format_warning_at_char (format_string_loc, format_string_cst,
                              format_chars - orig_format_chars,
                              OPT_Wformat_,
-                             "unknown conversion type character"
-                             " %qc in format",
+                             "unknown conversion type character %qc in format",
                              format_char);
       return NULL;
     }
@@ -2128,8 +2124,7 @@ argument_parser::give_y2k_warnings (const format_char_info *fci,
     y2k_level = 2;
   if (y2k_level == 3)
     warning_at (format_string_loc, OPT_Wformat_y2k,
-               "%<%%%c%> yields only last 2 digits of "
-               "year in some locales", format_char);
+               "%<%%%c%> yields only last 2 digits of year in some locales", format_char);
   else if (y2k_level == 2)
     warning_at (format_string_loc, OPT_Wformat_y2k,
                "%<%%%c%> yields only last 2 digits of year",
@@ -2188,9 +2183,7 @@ argument_parser::handle_conversions (const format_char_info *fci,
       format_warning_at_char (format_string_loc, format_string_cst,
                              format_chars - orig_format_chars,
                              OPT_Wformat_,
-                             "use of %qs length modifier with %qc type"
-                             " character has either no effect"
-                             " or undefined behavior",
+                             "use of %qs length modifier with %qc type character has either no effect or undefined behavior",
                              len_modifier.chars, format_char);
       /* Heuristic: skip one argument when an invalid length/type
         combination is encountered.  */
@@ -2249,12 +2242,10 @@ check_argument_type (const format_char_info *fci,
        {
          if (suppressed)
            warning_at (format_string_loc, OPT_Wformat_,
-                       "operand number specified with "
-                       "suppressed assignment");
+                       "operand number specified with suppressed assignment");
          else
            warning_at (format_string_loc, OPT_Wformat_,
-                       "operand number specified for format "
-                       "taking no argument");
+                       "operand number specified for format taking no argument");
        }
     }
   else
@@ -2576,8 +2567,7 @@ check_format_info_main (format_check_results *res,
            format_warning_at_char (format_string_loc, format_string_cst,
                                    format_chars - orig_format_chars,
                                    OPT_Wformat_,
-                                   "%qc directive redundant after prior "
-                                   "occurence of the same", format_char);
+                                   "%qc directive redundant after prior occurence of the same", format_char);
          else if (!color_begin)
            format_warning_at_char (format_string_loc, format_string_cst,
                                    format_chars - orig_format_chars,
@@ -2594,8 +2584,7 @@ check_format_info_main (format_check_results *res,
            format_warning_at_char (format_string_loc, format_string_cst,
                                    format_chars - orig_format_chars,
                                    OPT_Wformat_,
-                                   "%qc conversion used within a quoted "
-                                   "sequence",
+                                   "%qc conversion used within a quoted sequence",
                                    format_char);
        }
 
@@ -2821,16 +2810,14 @@ check_format_types (const substring_loc &fmt_loc,
                  && i == 0
                  && cur_param != 0
                  && integer_zerop (cur_param))
-               warning (OPT_Wformat_, "writing through null pointer "
-                        "(argument %d)", arg_num);
+               warning (OPT_Wformat_, "writing through null pointer (argument %d)", arg_num);
 
              /* Check for reading through a NULL pointer.  */
              if (types->reading_from_flag
                  && i == 0
                  && cur_param != 0
                  && integer_zerop (cur_param))
-               warning (OPT_Wformat_, "reading through null pointer "
-                        "(argument %d)", arg_num);
+               warning (OPT_Wformat_, "reading through null pointer (argument %d)", arg_num);
 
              if (cur_param != 0 && TREE_CODE (cur_param) == ADDR_EXPR)
                cur_param = TREE_OPERAND (cur_param, 0);
@@ -2849,8 +2836,7 @@ check_format_types (const substring_loc &fmt_loc,
                          && (CONSTANT_CLASS_P (cur_param)
                              || (DECL_P (cur_param)
                                  && TREE_READONLY (cur_param))))))
-               warning (OPT_Wformat_, "writing into constant object "
-                        "(argument %d)", arg_num);
+               warning (OPT_Wformat_, "writing into constant object (argument %d)", arg_num);
 
              /* If there are extra type qualifiers beyond the first
                 indirection, then this makes the types technically
@@ -2861,8 +2847,7 @@ check_format_types (const substring_loc &fmt_loc,
                      || TYPE_VOLATILE (cur_type)
                      || TYPE_ATOMIC (cur_type)
                      || TYPE_RESTRICT (cur_type)))
-               warning (OPT_Wformat_, "extra type qualifiers in format "
-                        "argument (argument %d)",
+               warning (OPT_Wformat_, "extra type qualifiers in format argument (argument %d)",
                         arg_num);
 
            }
@@ -3095,8 +3080,7 @@ check_kef_type (const substring_loc &fmt_loc,
                  || TYPE_VOLATILE (cur_type)
                  || TYPE_ATOMIC (cur_type)
                  || TYPE_RESTRICT (cur_type)))
-           warning (OPT_Wformat_, "extra type qualifiers in format "
-                    "argument (argument %d)",
+           warning (OPT_Wformat_, "extra type qualifiers in format argument (argument %d)",
                     arg_num);
 
        }
@@ -3695,8 +3679,7 @@ format_type_warning (const substring_loc &whole_fmt_loc,
        format_warning_at_substring
          (fmt_loc, &fmt_label, param_loc, &param_label,
           corrected_substring, OPT_Wformat_,
-          "%s %<%s%.*s%> expects argument of type %<%s%s%>, "
-          "but argument %d has type %qT%s",
+          "%s %<%s%.*s%> expects argument of type %<%s%s%>, but argument %d has type %qT%s",
           gettext (kind_descriptions[kind]),
           (kind == CF_KIND_FORMAT ? "%" : ""),
           format_length, format_start,
@@ -3716,8 +3699,7 @@ format_type_warning (const substring_loc &whole_fmt_loc,
        format_warning_at_substring
          (fmt_loc, &fmt_label, param_loc, &param_label,
           corrected_substring, OPT_Wformat_,
-          "%s %<%s%.*s%> expects argument of type %<%T%s%>, "
-          "but argument %d has type %qT%s",
+          "%s %<%s%.*s%> expects argument of type %<%T%s%>, but argument %d has type %qT%s",
           gettext (kind_descriptions[kind]),
           (kind == CF_KIND_FORMAT ? "%" : ""),
           format_length, format_start,
index 7ad2a845002d76aad521ffc413094a4be8e39b1e..0e4cf271f3e42877dda3f6bbaaad1bf16e20be08 100644 (file)
@@ -410,8 +410,7 @@ static void parse_schedule_item(const char *string, struct schedule_item *item)
                item->type = sched_signal;
        } else {
                badusage(
-                       "invalid schedule item (must be [-]<signal-name>, "
-                       "-<signal-number>, <timeout> or `forever'");
+                       "invalid schedule item (must be [-]<signal-name>, -<signal-number>, <timeout> or `forever'");
        }
 }
 
@@ -436,8 +435,7 @@ static void parse_schedule(const char *schedule_str)
                parse_schedule_item(schedule_str, &schedule[1]);
                if (schedule[1].type != sched_timeout) {
                        badusage(
-                               "--retry takes timeout, or schedule list"
-                               " of at least two items");
+                               "--retry takes timeout, or schedule list of at least two items");
                }
                schedule[2].type = sched_signal;
                schedule[2].value = SIGKILL;
@@ -451,8 +449,7 @@ static void parse_schedule(const char *schedule_str)
                                        : (ptrdiff_t)strlen(schedule_str);
                        if (str_len >= (ptrdiff_t)sizeof(item_buf))
                                badusage(
-                                       "invalid schedule item: far too long"
-                                       " (you must delimit items with slashes)");
+                                       "invalid schedule item: far too long (you must delimit items with slashes)");
                        memcpy(item_buf, schedule_str, str_len);
                        item_buf[str_len] = 0;
                        schedule_str = slash ? slash + 1 : NULL;
@@ -461,8 +458,7 @@ static void parse_schedule(const char *schedule_str)
                        if (schedule[count].type == sched_forever) {
                                if (repeatat >= 0)
                                        badusage(
-                                               "invalid schedule: `forever'"
-                                               " appears more than once");
+                                               "invalid schedule: `forever' appears more than once");
                                repeatat = count;
                                continue;
                        }
@@ -574,8 +570,7 @@ static void parse_options(int argc, char *const *argv)
        if (signal_str != NULL) {
                if (parse_signal(signal_str, &signal_nr) != 0)
                        badusage(
-                               "signal value must be numeric or name"
-                               " of signal (KILL, INTR, ...)");
+                               "signal value must be numeric or name of signal (KILL, INTR, ...)");
        }
 
        if (schedule_str != NULL) {
index 9e5885c7b6b38133969cccd15d7524a5bff83ea5..d3fc8bc338a691bf327d8b1cc1e4c5c57680ea97 100644 (file)
@@ -3073,9 +3073,7 @@ DEFUN (vtysh_write_memory,
                 * ourselves
                 */
                if (!used_watchfrr) {
-                       printf("\nWarning: attempting direct configuration write without "
-                              "watchfrr.\nFile permissions and ownership may be "
-                              "incorrect, or write may fail.\n\n");
+                       printf("\nWarning: attempting direct configuration write without watchfrr.\nFile permissions and ownership may be incorrect, or write may fail.\n\n");
                        ret = vtysh_write_config_integrated();
                }
                return ret;
index 25d1bf7db0661b5dd95e5820a472b6bad1c8a6cc..1ca219a26c50eb4ebf29b8ecff90d4ec135b3cc2 100644 (file)
@@ -421,14 +421,12 @@ int main(int argc, char **argv, char **env)
 
        if (markfile + writeconfig + dryrun + boot_flag > 1) {
                fprintf(stderr,
-                       "Invalid combination of arguments.  Please specify at "
-                       "most one of:\n\t-b, -C, -m, -w\n");
+                       "Invalid combination of arguments.  Please specify at most one of:\n\t-b, -C, -m, -w\n");
                return 1;
        }
        if (inputfile && (writeconfig || boot_flag)) {
                fprintf(stderr,
-                       "WARNING: Combinining the -f option with -b or -w is "
-                       "NOT SUPPORTED since its\nresults are inconsistent!\n");
+                       "WARNING: Combinining the -f option with -b or -w is NOT SUPPORTED since its\nresults are inconsistent!\n");
        }
 
        snprintf(vtysh_config, sizeof(vtysh_config), "%s%s%s", sysconfdir,
index 2db612adca721621bbf8e401d2aa690a7f6fdbd0..db327a0fa2e7fdcae3257935d0d6272aa331b5d1 100644 (file)
@@ -346,8 +346,7 @@ static int restart_kill(struct thread *t_kill)
 
        time_elapsed(&delay, &restart->time);
        zlog_warn(
-               "Warning: %s %s child process %d still running after "
-               "%ld seconds, sending signal %d",
+               "Warning: %s %s child process %d still running after %ld seconds, sending signal %d",
                restart->what, restart->name, (int)restart->pid,
                (long)delay.tv_sec, (restart->kills ? SIGKILL : SIGTERM));
        kill(-restart->pid, (restart->kills ? SIGKILL : SIGTERM));
@@ -476,8 +475,7 @@ static int run_job(struct restart_info *restart, const char *cmdtype,
 
                if (gs.loglevel > LOG_DEBUG + 1)
                        zlog_debug(
-                               "postponing %s %s: "
-                               "elapsed time %ld < retry interval %ld",
+                               "postponing %s %s: elapsed time %ld < retry interval %ld",
                                cmdtype, restart->name, (long)delay.tv_sec,
                                restart->interval);
                return -1;
@@ -646,8 +644,7 @@ static int handle_read(struct thread *t_read)
        if ((rc != sizeof(resp)) || memcmp(buf, resp, sizeof(resp))) {
                char why[100 + sizeof(buf)];
                snprintf(why, sizeof(why),
-                        "read returned bad echo response of %d bytes "
-                        "(expecting %u): %.*s",
+                        "read returned bad echo response of %d bytes (expecting %u): %.*s",
                         (int)rc, (unsigned int)sizeof(resp), (int)rc, buf);
                daemon_down(dmn, why);
                return 0;
@@ -659,14 +656,12 @@ static int handle_read(struct thread *t_read)
                if (delay.tv_sec < gs.timeout) {
                        dmn->state = DAEMON_UP;
                        zlog_warn(
-                               "%s state -> up : echo response received after %ld.%06ld "
-                               "seconds",
+                               "%s state -> up : echo response received after %ld.%06ld seconds",
                                dmn->name, (long)delay.tv_sec,
                                (long)delay.tv_usec);
                } else
                        zlog_warn(
-                               "%s: slow echo response finally received after %ld.%06ld "
-                               "seconds",
+                               "%s: slow echo response finally received after %ld.%06ld seconds",
                                dmn->name, (long)delay.tv_sec,
                                (long)delay.tv_usec);
        } else if (gs.loglevel > LOG_DEBUG + 1)
@@ -698,13 +693,11 @@ static void daemon_send_ready(int exitcode)
                zlog_notice("all daemons up, doing startup-complete notify");
        else if (gs.numdown < gs.numdaemons)
                flog_err(EC_WATCHFRR_CONNECTION,
-                        "startup did not complete within timeout"
-                        " (%d/%d daemons running)",
+                        "startup did not complete within timeout (%d/%d daemons running)",
                         gs.numdaemons - gs.numdown, gs.numdaemons);
        else {
                flog_err(EC_WATCHFRR_CONNECTION,
-                        "all configured daemons failed to start"
-                        " -- exiting watchfrr");
+                        "all configured daemons failed to start -- exiting watchfrr");
                exit(exitcode);
 
        }
@@ -948,8 +941,7 @@ static void try_restart(struct daemon *dmn)
                                1);
                else
                        zlog_debug(
-                               "%s: postponing restart attempt because master %s daemon "
-                               "not up [%s], or phased restart in progress",
+                               "%s: postponing restart attempt because master %s daemon not up [%s], or phased restart in progress",
                                dmn->name, gs.special->name,
                                state_str[gs.special->state]);
                return;
@@ -958,8 +950,7 @@ static void try_restart(struct daemon *dmn)
        if ((gs.phase != PHASE_NONE) || gs.numpids) {
                if (gs.loglevel > LOG_DEBUG + 1)
                        zlog_debug(
-                               "postponing phased global restart: restart already in "
-                               "progress [%s], or outstanding child processes [%d]",
+                               "postponing phased global restart: restart already in progress [%s], or outstanding child processes [%d]",
                                phase_str[gs.phase], gs.numpids);
                return;
        }
@@ -970,8 +961,7 @@ static void try_restart(struct daemon *dmn)
                    < gs.special->restart.interval) {
                        if (gs.loglevel > LOG_DEBUG + 1)
                                zlog_debug(
-                                       "postponing phased global restart: "
-                                       "elapsed time %ld < retry interval %ld",
+                                       "postponing phased global restart: elapsed time %ld < retry interval %ld",
                                        (long)delay.tv_sec,
                                        gs.special->restart.interval);
                        return;
@@ -987,8 +977,7 @@ static int wakeup_unresponsive(struct thread *t_wakeup)
        dmn->t_wakeup = NULL;
        if (dmn->state != DAEMON_UNRESPONSIVE)
                flog_err(EC_WATCHFRR_CONNECTION,
-                        "%s: no longer unresponsive (now %s), "
-                        "wakeup should have been cancelled!",
+                        "%s: no longer unresponsive (now %s), wakeup should have been cancelled!",
                         dmn->name, state_str[dmn->state]);
        else {
                SET_WAKEUP_UNRESPONSIVE(dmn);
@@ -1006,8 +995,7 @@ static int wakeup_no_answer(struct thread *t_wakeup)
        if (dmn->ignore_timeout)
                return 0;
        flog_err(EC_WATCHFRR_CONNECTION,
-                "%s state -> unresponsive : no response yet to ping "
-                "sent %ld seconds ago",
+                "%s state -> unresponsive : no response yet to ping sent %ld seconds ago",
                 dmn->name, gs.timeout);
        SET_WAKEUP_UNRESPONSIVE(dmn);
        try_restart(dmn);
@@ -1066,8 +1054,7 @@ void watchfrr_status(struct vty *vty)
                else if (dmn->state == DAEMON_DOWN &&
                        time_elapsed(&delay, &dmn->restart.time)->tv_sec
                                < dmn->restart.interval)
-                       vty_out(vty, "      restarting in %jd seconds"
-                               " (%jds backoff interval)\n",
+                       vty_out(vty, "      restarting in %jd seconds (%jds backoff interval)\n",
                                (intmax_t)dmn->restart.interval
                                        - (intmax_t)delay.tv_sec,
                                (intmax_t)dmn->restart.interval);
index a982ac9b46c6f7d9e275fb741d04d0f21f330182..3b9ebe14a4c743cedeca66229caeb6eff94543a4 100644 (file)
@@ -312,13 +312,11 @@ void connected_add_ipv4(struct interface *ifp, int flags, struct in_addr *addr,
                        if (IPV4_ADDR_SAME(addr, dest))
                                flog_warn(
                                        EC_ZEBRA_IFACE_SAME_LOCAL_AS_PEER,
-                                       "warning: interface %s has same local and peer "
-                                       "address %s, routing protocols may malfunction",
+                                       "warning: interface %s has same local and peer address %s, routing protocols may malfunction",
                                        ifp->name, inet_ntoa(*addr));
                } else {
                        zlog_debug(
-                               "warning: %s called for interface %s "
-                               "with peer flag set, but no peer address supplied",
+                               "warning: %s called for interface %s with peer flag set, but no peer address supplied",
                                __func__, ifp->name);
                        UNSET_FLAG(ifc->flags, ZEBRA_IFA_PEER);
                }
@@ -328,8 +326,7 @@ void connected_add_ipv4(struct interface *ifp, int flags, struct in_addr *addr,
        if (!dest && (prefixlen == IPV4_MAX_PREFIXLEN)
                && if_is_pointopoint(ifp))
                zlog_debug(
-                       "warning: PtP interface %s with addr %s/%d needs a "
-                       "peer address",
+                       "warning: PtP interface %s with addr %s/%d needs a peer address",
                        ifp->name, inet_ntoa(*addr), prefixlen);
 
        /* Label of this address. */
index a29a81090271cb03061a1c4de966c6b6303799fd..a15f93245121979782247c5742c22fe3bc43ec9f 100644 (file)
@@ -513,8 +513,7 @@ static int netlink_extract_vxlan_info(struct rtattr *link_data,
 
        if (!attr[IFLA_VXLAN_LINK]) {
                if (IS_ZEBRA_DEBUG_KERNEL)
-                       zlog_debug("IFLA_VXLAN_LINK missing "
-                                  "from VXLAN IF message");
+                       zlog_debug("IFLA_VXLAN_LINK missing from VXLAN IF message");
        } else {
                ifindex_link =
                        *(ifindex_t *)RTA_DATA(attr[IFLA_VXLAN_LINK]);
@@ -1307,8 +1306,7 @@ int netlink_link_change(struct nlmsghdr *h, ns_id_t ns_id, int startup)
                        /* Add interface notification from kernel */
                        if (IS_ZEBRA_DEBUG_KERNEL)
                                zlog_debug(
-                                       "RTM_NEWLINK ADD for %s(%u) vrf_id %u type %d "
-                                       "sl_type %d master %u flags 0x%x",
+                                       "RTM_NEWLINK ADD for %s(%u) vrf_id %u type %d sl_type %d master %u flags 0x%x",
                                        name, ifi->ifi_index, vrf_id, zif_type,
                                        zif_slave_type, bridge_ifindex,
                                        ifi->ifi_flags);
@@ -1364,8 +1362,7 @@ int netlink_link_change(struct nlmsghdr *h, ns_id_t ns_id, int startup)
                        /* VRF change for an interface. */
                        if (IS_ZEBRA_DEBUG_KERNEL)
                                zlog_debug(
-                                       "RTM_NEWLINK vrf-change for %s(%u) "
-                                       "vrf_id %u -> %u flags 0x%x",
+                                       "RTM_NEWLINK vrf-change for %s(%u) vrf_id %u -> %u flags 0x%x",
                                        name, ifp->ifindex, ifp->vrf_id, vrf_id,
                                        ifi->ifi_flags);
 
@@ -1376,8 +1373,7 @@ int netlink_link_change(struct nlmsghdr *h, ns_id_t ns_id, int startup)
                        /* Interface update. */
                        if (IS_ZEBRA_DEBUG_KERNEL)
                                zlog_debug(
-                                       "RTM_NEWLINK update for %s(%u) "
-                                       "sl_type %d master %u flags 0x%x",
+                                       "RTM_NEWLINK update for %s(%u) sl_type %d master %u flags 0x%x",
                                        name, ifp->ifindex, zif_slave_type,
                                        bridge_ifindex, ifi->ifi_flags);
 
index 982a63a022b76c7e41d9f1db7dbb84a7221f04d9..53ae1d2089c644cc8219d9934cefa475debe3abd 100644 (file)
@@ -385,8 +385,7 @@ int if_subnet_delete(struct interface *ifp, struct connected *ifc)
        rn = route_node_lookup(zebra_if->ipv4_subnets, &cp);
        if (!(rn && rn->info)) {
                flog_warn(EC_ZEBRA_REMOVE_ADDR_UNKNOWN_SUBNET,
-                         "Trying to remove an address from an unknown subnet."
-                         " (please report this bug)");
+                         "Trying to remove an address from an unknown subnet. (please report this bug)");
                return -1;
        }
        route_unlock_node(rn);
@@ -400,8 +399,7 @@ int if_subnet_delete(struct interface *ifp, struct connected *ifc)
        if (!listnode_lookup(addr_list, ifc)) {
                flog_warn(
                        EC_ZEBRA_REMOVE_UNREGISTERED_ADDR,
-                       "Trying to remove an address from a subnet where it is not"
-                       " currently registered. (please report this bug)");
+                       "Trying to remove an address from a subnet where it is not currently registered. (please report this bug)");
                return -1;
        }
 
@@ -618,8 +616,7 @@ void if_add_update(struct interface *ifp)
                if (if_data->shutdown == IF_ZEBRA_SHUTDOWN_ON) {
                        if (IS_ZEBRA_DEBUG_KERNEL) {
                                zlog_debug(
-                                       "interface %s vrf %s(%u) index %d is shutdown. "
-                                       "Won't wake it up.",
+                                       "interface %s vrf %s(%u) index %d is shutdown. Won't wake it up.",
                                        ifp->name, VRF_LOGNAME(zvrf->vrf),
                                        ifp->vrf_id, ifp->ifindex);
                        }
@@ -1625,14 +1622,12 @@ static void if_dump_vty(struct vty *vty, struct interface *ifp)
 #ifdef HAVE_PROC_NET_DEV
        /* Statistics print out using proc file system. */
        vty_out(vty,
-               "    %lu input packets (%lu multicast), %lu bytes, "
-               "%lu dropped\n",
+               "    %lu input packets (%lu multicast), %lu bytes, %lu dropped\n",
                ifp->stats.rx_packets, ifp->stats.rx_multicast,
                ifp->stats.rx_bytes, ifp->stats.rx_dropped);
 
        vty_out(vty,
-               "    %lu input errors, %lu length, %lu overrun,"
-               " %lu CRC, %lu frame\n",
+               "    %lu input errors, %lu length, %lu overrun, %lu CRC, %lu frame\n",
                ifp->stats.rx_errors, ifp->stats.rx_length_errors,
                ifp->stats.rx_over_errors, ifp->stats.rx_crc_errors,
                ifp->stats.rx_frame_errors);
@@ -1645,8 +1640,7 @@ static void if_dump_vty(struct vty *vty, struct interface *ifp)
                ifp->stats.tx_dropped);
 
        vty_out(vty,
-               "    %lu output errors, %lu aborted, %lu carrier,"
-               " %lu fifo, %lu heartbeat\n",
+               "    %lu output errors, %lu aborted, %lu carrier, %lu fifo, %lu heartbeat\n",
                ifp->stats.tx_errors, ifp->stats.tx_aborted_errors,
                ifp->stats.tx_carrier_errors, ifp->stats.tx_fifo_errors,
                ifp->stats.tx_heartbeat_errors);
@@ -1658,8 +1652,7 @@ static void if_dump_vty(struct vty *vty, struct interface *ifp)
 #ifdef HAVE_NET_RT_IFLIST
        /* Statistics print out using sysctl (). */
        vty_out(vty,
-               "    input packets %llu, bytes %llu, dropped %llu,"
-               " multicast packets %llu\n",
+               "    input packets %llu, bytes %llu, dropped %llu, multicast packets %llu\n",
                (unsigned long long)ifp->stats.ifi_ipackets,
                (unsigned long long)ifp->stats.ifi_ibytes,
                (unsigned long long)ifp->stats.ifi_iqdrops,
@@ -1669,8 +1662,7 @@ static void if_dump_vty(struct vty *vty, struct interface *ifp)
                (unsigned long long)ifp->stats.ifi_ierrors);
 
        vty_out(vty,
-               "    output packets %llu, bytes %llu,"
-               " multicast packets %llu\n",
+               "    output packets %llu, bytes %llu, multicast packets %llu\n",
                (unsigned long long)ifp->stats.ifi_opackets,
                (unsigned long long)ifp->stats.ifi_obytes,
                (unsigned long long)ifp->stats.ifi_omcasts);
index 1a45328248be9ac8f393504eaca233a0a1d73cd8..3d6a29bec63056262b17ae70f8991c0bd90adb8e 100644 (file)
@@ -72,8 +72,7 @@ static int solaris_nd(const int cmd, const char *parameter, const int value)
                snprintf(nd_buf, ND_BUFFER_SIZE, "%s", parameter);
        else {
                flog_err_sys(EC_LIB_SYSTEM_CALL,
-                            "internal error - inappropriate command given to "
-                            "solaris_nd()%s:%d",
+                            "internal error - inappropriate command given to solaris_nd()%s:%d",
                             __FILE__, __LINE__);
                return -1;
        }
index 87a1f5fdc7c036e9aee7ceeda525da96dfa5ccae..2ab5fd3a4c1d150b8a980c446f0badd3027d686f 100644 (file)
@@ -224,8 +224,7 @@ static void irdp_if_start(struct interface *ifp, int multicast,
        }
        if ((irdp_sock < 0) && ((irdp_sock = irdp_sock_init()) < 0)) {
                flog_warn(EC_ZEBRA_IRDP_CANNOT_ACTIVATE_IFACE,
-                         "IRDP: Cannot activate interface %s (cannot create "
-                         "IRDP socket)",
+                         "IRDP: Cannot activate interface %s (cannot create IRDP socket)",
                          ifp->name);
                return;
        }
@@ -503,8 +502,7 @@ DEFUN (ip_irdp_minadvertinterval,
                return CMD_SUCCESS;
        } else {
                vty_out(vty,
-                       "%% MinAdvertInterval must be less than or equal to "
-                       "MaxAdvertInterval\n");
+                       "%% MinAdvertInterval must be less than or equal to MaxAdvertInterval\n");
                return CMD_WARNING_CONFIG_FAILED;
        }
 }
@@ -528,8 +526,7 @@ DEFUN (ip_irdp_maxadvertinterval,
                return CMD_SUCCESS;
        } else {
                vty_out(vty,
-                       "%% MaxAdvertInterval must be greater than or equal to "
-                       "MinAdvertInterval\n");
+                       "%% MaxAdvertInterval must be greater than or equal to MinAdvertInterval\n");
                return CMD_WARNING_CONFIG_FAILED;
        }
 }
index 950690b943d2bd2d4b1f72960d76e38d2524095c..873d221149dad95d658dfae963038b0bf3cbe162 100644 (file)
@@ -712,8 +712,7 @@ int ifm_read(struct if_msghdr *ifm)
        {
                if (ifp->ifindex != ifm->ifm_index) {
                        zlog_debug(
-                               "%s: index mismatch, ifname %s, ifp index %d, "
-                               "ifm index %d",
+                               "%s: index mismatch, ifname %s, ifp index %d, ifm index %d",
                                __func__, ifp->name, ifp->ifindex,
                                ifm->ifm_index);
                        return -1;
@@ -833,9 +832,7 @@ static void ifam_read_mesg(struct ifa_msghdr *ifm, union sockunion *addr,
                                        ? ip_masklen(mask->sin.sin_addr)
                                        : ip6_masklen(mask->sin6.sin6_addr);
                        zlog_debug(
-                               "%s: ifindex %d, ifname %s, ifam_addrs {%s}, "
-                               "ifam_flags 0x%x, addr %s/%d broad %s dst %s "
-                               "gateway %s",
+                               "%s: ifindex %d, ifname %s, ifam_addrs {%s}, ifam_flags 0x%x, addr %s/%d broad %s dst %s gateway %s",
                                __func__, ifm->ifam_index,
                                (ifnlen ? ifname : "(nil)"),
                                rtatostr(ifm->ifam_addrs, fbuf, sizeof(fbuf)),
@@ -978,8 +975,7 @@ static int rtm_read_mesg(struct rt_msghdr *rtm, union sockunion *dest,
        /* rt_msghdr version check. */
        if (rtm->rtm_version != RTM_VERSION)
                flog_warn(EC_ZEBRA_RTM_VERSION_MISMATCH,
-                         "Routing message version different %d should be %d."
-                         "This may cause problem\n",
+                         "Routing message version different %d should be %d.This may cause problem\n",
                          rtm->rtm_version, RTM_VERSION);
 
        /* Be sure structure is cleared */
index 71c7ebb62fbb3906fafdd317cb754ba1a263ac5b..748e43b8d98ed4396b7c9272ec642ee7f3e3019a 100644 (file)
@@ -264,8 +264,7 @@ FRR_DAEMON_INFO(
        zebra, ZEBRA, .vty_port = ZEBRA_VTY_PORT, .flags = FRR_NO_ZCLIENT,
 
        .proghelp =
-               "Daemon which manages kernel routing table management "
-               "and\nredistribution between different routing protocols.",
+               "Daemon which manages kernel routing table management and\nredistribution between different routing protocols.",
 
        .signals = zebra_signals, .n_signals = array_size(zebra_signals),
 
index 64fd7fa491f2e78883c3f56e8f0c2d134b55b6e8..2eadaf48f47f1ca806f9225e1c7c169aa69a3dbc 100644 (file)
@@ -50,8 +50,7 @@ static int kernel_rtm_add_labels(struct mpls_label_stack *nh_label,
 {
        if (nh_label->num_labels > 1) {
                flog_warn(EC_ZEBRA_MAX_LABELS_PUSH,
-                         "%s: can't push %u labels at "
-                         "once (maximum is 1)",
+                         "%s: can't push %u labels at once (maximum is 1)",
                          __func__, nh_label->num_labels);
                return -1;
        }
index fa0a682d075e1b3e86aaa27acdeee6e1fbb2eca2..13b7c150a3424643609ee7e9cd83933da30cab41 100644 (file)
@@ -2282,13 +2282,11 @@ static int nd_dump_vty(struct vty *vty, struct interface *ifp)
                interval = rtadv->MaxRtrAdvInterval;
                if (interval % 1000)
                        vty_out(vty,
-                               "  ND router advertisements are sent every "
-                               "%d milliseconds\n",
+                               "  ND router advertisements are sent every %d milliseconds\n",
                                interval);
                else
                        vty_out(vty,
-                               "  ND router advertisements are sent every "
-                               "%d seconds\n",
+                               "  ND router advertisements are sent every %d seconds\n",
                                interval / 1000);
                if (!rtadv->UseFastRexmit)
                        vty_out(vty,
@@ -2302,8 +2300,7 @@ static int nd_dump_vty(struct vty *vty, struct interface *ifp)
                        vty_out(vty,
                                "  ND router advertisements lifetime tracks ra-interval\n");
                vty_out(vty,
-                       "  ND router advertisement default router preference is "
-                       "%s\n",
+                       "  ND router advertisement default router preference is %s\n",
                        rtadv_pref_strs[rtadv->DefaultPreference]);
                if (rtadv->AdvManagedFlag)
                        vty_out(vty,
index 28529cc138e22e2183fcd18e4704169b77524f40..0a1fb82d950f7f0dbbbd60955771c2f6d88f9ba0 100644 (file)
@@ -230,8 +230,7 @@ void route_read(struct zebra_ns *zns)
                                if (msgdata.len % sizeof(mib2_ipRouteEntry_t)
                                    != 0) {
                                        zlog_debug(
-                                               "getmsg(data) returned "
-                                               "msgdata.len = %d (%% sizeof(mib2_ipRouteEntry_t) != 0)",
+                                               "getmsg(data) returned msgdata.len = %d (%% sizeof(mib2_ipRouteEntry_t) != 0)",
                                                msgdata.len);
                                        goto exit;
                                }
index e34b6f23ffeee8e92e210106d8dd6eed65242208..4e19e58d7aedb019f468217fa2bf25419d6032f9 100644 (file)
@@ -3261,8 +3261,7 @@ int dplane_show_provs_helper(struct vty *vty, bool detailed)
                out_max = atomic_load_explicit(&prov->dp_out_max,
                                               memory_order_relaxed);
 
-               vty_out(vty, "%s (%u): in: %"PRIu64", q_max: %"PRIu64", "
-                       "out: %"PRIu64", q_max: %"PRIu64"\n",
+               vty_out(vty, "%s (%u): in: %"PRIu64", q_max: %"PRIu64", out: %"PRIu64", q_max: %"PRIu64"\n",
                        prov->dp_name, prov->dp_id, in, in_max, out, out_max);
 
                DPLANE_LOCK();
index 47b49653969e196723a3910534b220b04d84b2b3..f84c8c1fcc364a20a52be0bfc48bd34c35123fc1 100644 (file)
@@ -1908,8 +1908,7 @@ static inline void zfpm_init_message_format(const char *format)
                        return;
                }
                flog_warn(EC_ZEBRA_PROTOBUF_NOT_AVAILABLE,
-                         "FPM protobuf message format is deprecated and scheduled to be removed. "
-                         "Please convert to using netlink format or contact dev@lists.frrouting.org with your use case.");
+                         "FPM protobuf message format is deprecated and scheduled to be removed. Please convert to using netlink format or contact dev@lists.frrouting.org with your use case.");
                zfpm_g->message_format = ZFPM_MSG_FORMAT_PROTOBUF;
                return;
        }
index e741268ebb947ede9065745db85a9729cca8a914..996afd12dd9418c6011815b378303c3ef06bfc26 100644 (file)
@@ -232,8 +232,7 @@ static int lsp_install(struct zebra_vrf *zvrf, mpls_label_t label,
                        if (IS_ZEBRA_DEBUG_MPLS) {
                                nhlfe2str(nhlfe, buf, BUFSIZ);
                                zlog_debug(
-                                       "LSP in-label %u type %d nexthop %s "
-                                       "out-label changed",
+                                       "LSP in-label %u type %d nexthop %s out-label changed",
                                        lsp->ile.in_label, lsp_type, buf);
                        }
 
@@ -254,8 +253,7 @@ static int lsp_install(struct zebra_vrf *zvrf, mpls_label_t label,
                        if (IS_ZEBRA_DEBUG_MPLS) {
                                nhlfe2str(nhlfe, buf, BUFSIZ);
                                zlog_debug(
-                                       "Add LSP in-label %u type %d nexthop %s "
-                                       "out-label %u",
+                                       "Add LSP in-label %u type %d nexthop %s out-label %u",
                                        lsp->ile.in_label, lsp_type, buf,
                                        nexthop->nh_label->label[0]);
                        }
@@ -928,8 +926,7 @@ static wq_item_status lsp_process(struct work_queue *wq, void *data)
                if (newbest)
                        nhlfe2str(newbest, buf2, sizeof(buf2));
                zlog_debug(
-                       "Process LSP in-label %u oldbest %s newbest %s "
-                       "flags 0x%x ecmp# %d",
+                       "Process LSP in-label %u oldbest %s newbest %s flags 0x%x ecmp# %d",
                        lsp->ile.in_label, oldbest ? buf : "NULL",
                        newbest ? buf2 : "NULL", lsp->flags, lsp->num_ecmp);
        }
@@ -3641,8 +3638,7 @@ int zebra_mpls_static_lsp_add(struct zebra_vrf *zvrf, mpls_label_t in_label,
                if (IS_ZEBRA_DEBUG_MPLS) {
                        snhlfe2str(snhlfe, buf, BUFSIZ);
                        zlog_debug(
-                               "Upd static LSP in-label %u nexthop %s "
-                               "out-label %u (old %u)",
+                               "Upd static LSP in-label %u nexthop %s out-label %u (old %u)",
                                in_label, buf, out_label, snhlfe->out_label);
                }
                snhlfe->out_label = out_label;
index c8a3cbbbceb394e09574e3270f59958b7b73fa79..b767929dc0a554898aea8456b241a662771a5b41 100644 (file)
@@ -276,8 +276,7 @@ static int kernel_lsp_cmd(struct zebra_dplane_ctx *ctx)
                            && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB)))) {
                        if (nhlfe->nexthop->nh_label->num_labels > 1) {
                                flog_warn(EC_ZEBRA_MAX_LABELS_PUSH,
-                                         "%s: can't push %u labels at once "
-                                         "(maximum is 1)",
+                                         "%s: can't push %u labels at once (maximum is 1)",
                                          __func__,
                                          nhlfe->nexthop->nh_label->num_labels);
                                continue;
index 72e4fd005567d80aa0dca09c60b988a7f18ad644..4e504c48b09117ca86afb39103695e34865a7fd1 100644 (file)
@@ -230,14 +230,12 @@ static int zebra_ns_ready_read(struct thread *t)
 
        /* check default name is not already set */
        if (strmatch(VRF_DEFAULT_NAME, basename(netnspath))) {
-               zlog_warn("NS notify : NS %s is already default VRF."
-                         "Cancel VRF Creation", basename(netnspath));
+               zlog_warn("NS notify : NS %s is already default VRF.Cancel VRF Creation", basename(netnspath));
                return zebra_ns_continue_read(zns_info, 1);
        }
        if (zebra_ns_notify_is_default_netns(basename(netnspath))) {
                zlog_warn(
-                         "NS notify : NS %s is default VRF."
-                         " Updating VRF Name", basename(netnspath));
+                         "NS notify : NS %s is default VRF. Updating VRF Name", basename(netnspath));
                vrf_set_default_name(basename(netnspath), false);
                return zebra_ns_continue_read(zns_info, 1);
        }
@@ -333,14 +331,12 @@ void zebra_ns_notify_parse(void)
                }
                /* check default name is not already set */
                if (strmatch(VRF_DEFAULT_NAME, basename(dent->d_name))) {
-                       zlog_warn("NS notify : NS %s is already default VRF."
-                                 "Cancel VRF Creation", dent->d_name);
+                       zlog_warn("NS notify : NS %s is already default VRF.Cancel VRF Creation", dent->d_name);
                        continue;
                }
                if (zebra_ns_notify_is_default_netns(dent->d_name)) {
                        zlog_warn(
-                                 "NS notify : NS %s is default VRF."
-                                 " Updating VRF Name", dent->d_name);
+                                 "NS notify : NS %s is default VRF. Updating VRF Name", dent->d_name);
                        vrf_set_default_name(dent->d_name, false);
                        continue;
                }
index 88ea2b87b1ca4376a8725ff3839c92f4ed32a82d..9a3b567b5aa2b3e80495579d39d25125358e982b 100644 (file)
@@ -434,8 +434,7 @@ static void if_bfd_session_update(struct interface *ifp, struct prefix *dp,
 
                if (ifp) {
                        zlog_debug(
-                               "MESSAGE: ZEBRA_INTERFACE_BFD_DEST_UPDATE %s/%d on %s"
-                               " %s event",
+                               "MESSAGE: ZEBRA_INTERFACE_BFD_DEST_UPDATE %s/%d on %s %s event",
                                inet_ntop(dp->family, &dp->u.prefix, buf[0],
                                          INET6_ADDRSTRLEN),
                                dp->prefixlen, ifp->name,
@@ -444,8 +443,7 @@ static void if_bfd_session_update(struct interface *ifp, struct prefix *dp,
                        struct vrf *vrf = vrf_lookup_by_id(vrf_id);
 
                        zlog_debug(
-                               "MESSAGE: ZEBRA_INTERFACE_BFD_DEST_UPDATE %s/%d "
-                               "with src %s/%d and vrf %s(%u) %s event",
+                               "MESSAGE: ZEBRA_INTERFACE_BFD_DEST_UPDATE %s/%d with src %s/%d and vrf %s(%u) %s event",
                                inet_ntop(dp->family, &dp->u.prefix, buf[0],
                                          INET6_ADDRSTRLEN),
                                dp->prefixlen,
@@ -502,8 +500,7 @@ static int zebra_ptm_handle_bfd_msg(void *arg, void *in_ctxt,
 
        if (IS_ZEBRA_DEBUG_EVENT)
                zlog_debug(
-                       "%s: Recv Port [%s] bfd status [%s] vrf [%s]"
-                       " peer [%s] local [%s]",
+                       "%s: Recv Port [%s] bfd status [%s] vrf [%s] peer [%s] local [%s]",
                        __func__, ifp ? ifp->name : "N/A", bfdst_str, vrf_str,
                        dest_str, src_str);
 
index 2328ab650af74e162947e48275db4a1cb6345e5d..c00cd88fe3ad4bc6f32dfecc1d83ae7015061d35 100644 (file)
@@ -215,8 +215,7 @@ void zebra_pw_install_failure(struct zebra_pw *pw, int pwstatus)
 {
        if (IS_ZEBRA_DEBUG_PW)
                zlog_debug(
-                       "%u: failed installing pseudowire %s, "
-                       "scheduling retry in %u seconds",
+                       "%u: failed installing pseudowire %s, scheduling retry in %u seconds",
                        pw->vrf_id, pw->ifname, PW_INSTALL_RETRY_INTERVAL);
 
        /* schedule to retry later */
@@ -680,8 +679,7 @@ static int zebra_pw_config(struct vty *vty)
                                pw->local_label, pw->remote_label);
                else
                        vty_out(vty,
-                               " ! Incomplete config, specify the static "
-                               "MPLS labels\n");
+                               " ! Incomplete config, specify the static MPLS labels\n");
 
                if (pw->af != AF_UNSPEC) {
                        char buf[INET6_ADDRSTRLEN];
@@ -689,8 +687,7 @@ static int zebra_pw_config(struct vty *vty)
                        vty_out(vty, " neighbor %s\n", buf);
                } else
                        vty_out(vty,
-                               " ! Incomplete config, specify a neighbor "
-                               "address\n");
+                               " ! Incomplete config, specify a neighbor address\n");
 
                if (!(pw->flags & F_PSEUDOWIRE_CWORD))
                        vty_out(vty, " control-word exclude\n");
index 67b3812ed3a4e58fe60522feb0f38ed54618d6b8..ddf2766737ea7ca20c7001e9739dfda13c2e1eff 100644 (file)
@@ -1081,8 +1081,7 @@ static void rib_process(struct route_node *rn)
                                if (re != old_selected) {
                                        if (IS_ZEBRA_DEBUG_RIB)
                                                zlog_debug(
-                                                       "%s: %s(%u):%s: imported via import-table but denied "
-                                                       "by the ip protocol table route-map",
+                                                       "%s: %s(%u):%s: imported via import-table but denied by the ip protocol table route-map",
                                                        __func__,
                                                        VRF_LOGNAME(vrf),
                                                        vrf_id, buf);
@@ -3149,8 +3148,7 @@ void rib_delete(afi_t afi, safi_t safi, vrf_id_t vrf_id, int type,
                                if (nh)
                                        rnode_debug(
                                                rn, vrf_id,
-                                               "via %s ifindex %d type %d "
-                                               "doesn't exist in rib",
+                                               "via %s ifindex %d type %d doesn't exist in rib",
                                                inet_ntop(afi2family(afi),
                                                          &nh->gate, buf2,
                                                          sizeof(buf2)),
index 998c03565685b1e1bd2363bb054cce07926ad0a2..66441e1756f295949eff2fe5ab42f390c640e488 100644 (file)
@@ -1938,8 +1938,7 @@ static void zvni_print(zebra_vni_t *zvni, void **ctxt)
                        " Number of MACs (local and remote) known for this VNI: %u\n",
                        num_macs);
                vty_out(vty,
-                       " Number of ARPs (IPv4 and IPv6, local and remote) "
-                       "known for this VNI: %u\n",
+                       " Number of ARPs (IPv4 and IPv6, local and remote) known for this VNI: %u\n",
                        num_neigh);
                vty_out(vty, " Advertise-gw-macip: %s\n",
                        zvni->advertise_gw_macip ? "Yes" : "No");
@@ -4274,8 +4273,7 @@ static int zvni_build_hash_table_ns(struct ns *ns,
                if (zvrf->zns->ns_id != vxl->link_nsid) {
                        if (IS_ZEBRA_DEBUG_VXLAN)
                                zlog_debug(
-                                       "Intf %s(%u) VNI %u, link not in same "
-                                       "namespace than BGP EVPN core instance ",
+                                       "Intf %s(%u) VNI %u, link not in same namespace than BGP EVPN core instance ",
                                        ifp->name, ifp->ifindex, vni);
                        continue;
                }
@@ -5218,8 +5216,7 @@ static int zl3vni_map_to_vxlan_if_ns(struct ns *ns,
                if (zvrf->zns->ns_id != vxl->link_nsid) {
                        if (IS_ZEBRA_DEBUG_VXLAN)
                                zlog_debug(
-                                       "Intf %s(%u) VNI %u, link not in same "
-                                       "namespace than BGP EVPN core instance ",
+                                       "Intf %s(%u) VNI %u, link not in same namespace than BGP EVPN core instance ",
                                        ifp->name, ifp->ifindex, vxl->vni);
                        continue;
                }
@@ -8285,8 +8282,7 @@ int zebra_vxlan_local_mac_add_update(struct interface *ifp,
                            && mac->fwd_info.local.vid == vid) {
                                if (IS_ZEBRA_DEBUG_VXLAN)
                                        zlog_debug(
-                                               "        Add/Update %sMAC %s intf %s(%u) VID %u -> VNI %u, "
-                                               "entry exists and has not changed ",
+                                               "        Add/Update %sMAC %s intf %s(%u) VID %u -> VNI %u, entry exists and has not changed ",
                                                sticky ? "sticky " : "",
                                                prefix_mac2str(macaddr, buf,
                                                               sizeof(buf)),
@@ -8434,8 +8430,7 @@ void zebra_vxlan_remote_vtep_del(ZAPI_HANDLER_ARGS)
                if (!zvni) {
                        if (IS_ZEBRA_DEBUG_VXLAN)
                                zlog_debug(
-                                       "Failed to locate VNI hash upon remote VTEP DEL, "
-                                       "VNI %u",
+                                       "Failed to locate VNI hash upon remote VTEP DEL, VNI %u",
                                        vni);
                        continue;
                }