The update of logical port or IP in the NB wouldn't be properly
reflected in the SB entry. Make sure we check and update
those columns too if needed.
Fixes: 42ffb62a5392 ("northd: Use the same UUID for SB representation of
Static_Mac_Binding.")
Reported-by: Ilya Maximets <[email protected]>
Signed-off-by: Ales Musil <[email protected]>
---
northd/northd.c | 10 ++++++++++
tests/ovn-northd.at | 9 +++++++++
2 files changed, 19 insertions(+)
diff --git a/northd/northd.c b/northd/northd.c
index 015f30a35..7b524e958 100644
--- a/northd/northd.c
+++ b/northd/northd.c
@@ -18900,6 +18900,16 @@ build_static_mac_binding_table(
if (strcmp(mb->mac, nb_smb->mac)) {
sbrec_static_mac_binding_set_mac(mb, nb_smb->mac);
}
+
+ if (strcmp(mb->logical_port, nb_smb->logical_port)) {
+ sbrec_static_mac_binding_set_logical_port(mb,
+ nb_smb->logical_port);
+ }
+
+ if (strcmp(mb->ip, nb_smb->ip)) {
+ sbrec_static_mac_binding_set_ip(mb, nb_smb->ip);
+ }
+
if (mb->override_dynamic_mac !=
nb_smb->override_dynamic_mac) {
sbrec_static_mac_binding_set_override_dynamic_mac(mb,
diff --git a/tests/ovn-northd.at b/tests/ovn-northd.at
index 11bbb211d..28282f0ca 100644
--- a/tests/ovn-northd.at
+++ b/tests/ovn-northd.at
@@ -8505,6 +8505,15 @@ wait_row_count Static_MAC_Binding 1 logical_port=lr0-p1
ip=10.0.0.10 mac="00\:00
check ovn-nbctl --may-exist static-mac-binding-add lr0-p0 192.168.10.100
00:00:22:33:55:66
wait_row_count Static_MAC_Binding 1 logical_port=lr0-p0 ip=192.168.10.100
mac="00\:00\:22\:33\:55\:66"
+# Update the logical port.
+mb_uuid=$(fetch_column nb:Static_MAC_Binding _uuid logical_port=lr0-p0
ip=192.168.10.100)
+check ovn-nbctl --wait=sb set Static_MAC_Binding $mb_uuid logical_port=lr0-p1
+wait_row_count Static_MAC_Binding 1 logical_port=lr0-p1 ip=192.168.10.100
mac="00\:00\:22\:33\:55\:66"
+
+# Update the IP.
+check ovn-nbctl --wait=sb set Static_MAC_Binding $mb_uuid ip=192.168.10.200
+wait_row_count Static_MAC_Binding 1 logical_port=lr0-p1 ip=192.168.10.200
mac="00\:00\:22\:33\:55\:66"
+
AT_CLEANUP
])
--
2.50.1
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev