summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Stapp <mjs.ietf@gmail.com>2024-11-26 16:39:47 -0500
committerGitHub <noreply@github.com>2024-11-26 16:39:47 -0500
commit8ef5282c8da4ebf51a6ec25d1d7594698c002053 (patch)
tree7b0c5c942a8049b534e3c9ca9999d730f9e9fc27
parent4c2f5c70ba8ce2b292400e9fbb30b631c1b36bc8 (diff)
parent887a0840f647878e68969ce73ad94c867b72019d (diff)
Merge pull request #17519 from chiragshah6/evpn_dev4
zebra: EVPN fix code style in vlan vni map debugs
-rw-r--r--zebra/zebra_vxlan.c7
-rw-r--r--zebra/zebra_vxlan_if.c2
2 files changed, 4 insertions, 5 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c
index 0658f996e6..ad112a4ab1 100644
--- a/zebra/zebra_vxlan.c
+++ b/zebra/zebra_vxlan.c
@@ -4757,10 +4757,9 @@ void zebra_vxlan_remote_vtep_add(vrf_id_t vrf_id, vni_t vni,
/* If down or not mapped to a bridge, we're done. */
if (!if_is_operative(ifp) || !zif->brslave_info.br_if) {
if (IS_ZEBRA_DEBUG_KERNEL)
- zlog_debug(
- "%s VNI %u VTEP %pI4 ifp %s oper %u br_if %u skipping update",
- __func__, zevpn->vni, &vtep_ip, ifp->name,
- if_is_operative(ifp), !zif->brslave_info.br_if);
+ zlog_debug("%s VNI %u VTEP %pI4 ifp %s oper %u br_if %u skipping update",
+ __func__, zevpn->vni, &vtep_ip, ifp->name, if_is_operative(ifp),
+ !zif->brslave_info.br_if);
return;
}
diff --git a/zebra/zebra_vxlan_if.c b/zebra/zebra_vxlan_if.c
index 2658c9f01c..ea0be2f644 100644
--- a/zebra/zebra_vxlan_if.c
+++ b/zebra/zebra_vxlan_if.c
@@ -1037,7 +1037,7 @@ int zebra_vxlan_if_vni_up(struct interface *ifp, struct zebra_vxlan_vni *vnip)
} else {
if (IS_ZEBRA_DEBUG_KERNEL || IS_ZEBRA_DEBUG_VXLAN)
zlog_debug("%s VNI %u vxlan_if %s oper down skipping vni up to client",
- __func__, zevpn->vni, zevpn->vxlan_if->name);
+ __func__, zevpn->vni, zevpn->vxlan_if->name);
}
zebra_evpn_read_mac_neigh(zevpn, ifp);
}