aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2025-02-27 16:55:13 +1100
committerDavid Gibson <david@gibson.dropbear.id.au>2025-04-02 14:32:10 +1100
commit2aa1b789b437fd92b314c8a5adcef827d6499951 (patch)
tree6b1ae4df2b7cf43e10158babc7ca02443b3ac721
parente5575743d9a51941ff652f8edf98aec1642b521b (diff)
downloadpasst-2aa1b789b437fd92b314c8a5adcef827d6499951.tar
passt-2aa1b789b437fd92b314c8a5adcef827d6499951.tar.gz
passt-2aa1b789b437fd92b314c8a5adcef827d6499951.tar.bz2
passt-2aa1b789b437fd92b314c8a5adcef827d6499951.tar.lz
passt-2aa1b789b437fd92b314c8a5adcef827d6499951.tar.xz
passt-2aa1b789b437fd92b314c8a5adcef827d6499951.tar.zst
passt-2aa1b789b437fd92b314c8a5adcef827d6499951.zip
migrate, flow: Trivially succeed if migrating with no flows
We could get a migration request when we have no active flows; or at least none that we need or are able to migrate. In this case after sending or receiving the number of flows we continue to step through various lists. In the target case, this could include communication with passt-repair. If passt-repair wasn't started that could cause further errors, but of course they shouldn't matter if we have nothing to repair. Make it more obvious that there's nothing to do and avoid such errors by short-circuiting flow_migrate_{source,target}() if there are no migratable flows. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r--flow.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/flow.c b/flow.c
index cc881e8..b187dff 100644
--- a/flow.c
+++ b/flow.c
@@ -1019,6 +1019,9 @@ int flow_migrate_source(struct ctx *c, const struct migrate_stage *stage,
debug("Sending %u flows", ntohl(count));
+ if (!count)
+ return 0;
+
/* Dump and send information that can be stored in the flow table.
*
* Limited rollback options here: if we fail to transfer any data (that
@@ -1088,6 +1091,9 @@ int flow_migrate_target(struct ctx *c, const struct migrate_stage *stage,
count = ntohl(count);
debug("Receiving %u flows", count);
+ if (!count)
+ return 0;
+
if ((rc = flow_migrate_repair_all(c, true)))
return -rc;