|
@@ -289,7 +289,6 @@ typedef struct RDMALocalBlocks {
|
|
typedef struct RDMAContext {
|
|
typedef struct RDMAContext {
|
|
char *host;
|
|
char *host;
|
|
int port;
|
|
int port;
|
|
- char *host_port;
|
|
|
|
|
|
|
|
RDMAWorkRequestData wr_data[RDMA_WRID_MAX];
|
|
RDMAWorkRequestData wr_data[RDMA_WRID_MAX];
|
|
|
|
|
|
@@ -2431,9 +2430,7 @@ static void qemu_rdma_cleanup(RDMAContext *rdma)
|
|
rdma->channel = NULL;
|
|
rdma->channel = NULL;
|
|
}
|
|
}
|
|
g_free(rdma->host);
|
|
g_free(rdma->host);
|
|
- g_free(rdma->host_port);
|
|
|
|
rdma->host = NULL;
|
|
rdma->host = NULL;
|
|
- rdma->host_port = NULL;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -2723,28 +2720,16 @@ static void qemu_rdma_return_path_dest_init(RDMAContext *rdma_return_path,
|
|
rdma_return_path->is_return_path = true;
|
|
rdma_return_path->is_return_path = true;
|
|
}
|
|
}
|
|
|
|
|
|
-static RDMAContext *qemu_rdma_data_init(const char *host_port, Error **errp)
|
|
|
|
|
|
+static RDMAContext *qemu_rdma_data_init(InetSocketAddress *saddr, Error **errp)
|
|
{
|
|
{
|
|
RDMAContext *rdma = NULL;
|
|
RDMAContext *rdma = NULL;
|
|
- InetSocketAddress *addr;
|
|
|
|
|
|
|
|
rdma = g_new0(RDMAContext, 1);
|
|
rdma = g_new0(RDMAContext, 1);
|
|
rdma->current_index = -1;
|
|
rdma->current_index = -1;
|
|
rdma->current_chunk = -1;
|
|
rdma->current_chunk = -1;
|
|
|
|
|
|
- addr = g_new(InetSocketAddress, 1);
|
|
|
|
- if (!inet_parse(addr, host_port, NULL)) {
|
|
|
|
- rdma->port = atoi(addr->port);
|
|
|
|
- rdma->host = g_strdup(addr->host);
|
|
|
|
- rdma->host_port = g_strdup(host_port);
|
|
|
|
- } else {
|
|
|
|
- error_setg(errp, "RDMA ERROR: bad RDMA migration address '%s'",
|
|
|
|
- host_port);
|
|
|
|
- g_free(rdma);
|
|
|
|
- rdma = NULL;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- qapi_free_InetSocketAddress(addr);
|
|
|
|
|
|
+ rdma->host = g_strdup(saddr->host);
|
|
|
|
+ rdma->port = atoi(saddr->port);
|
|
return rdma;
|
|
return rdma;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -3353,6 +3338,7 @@ static int qemu_rdma_accept(RDMAContext *rdma)
|
|
.private_data_len = sizeof(cap),
|
|
.private_data_len = sizeof(cap),
|
|
};
|
|
};
|
|
RDMAContext *rdma_return_path = NULL;
|
|
RDMAContext *rdma_return_path = NULL;
|
|
|
|
+ g_autoptr(InetSocketAddress) isock = g_new0(InetSocketAddress, 1);
|
|
struct rdma_cm_event *cm_event;
|
|
struct rdma_cm_event *cm_event;
|
|
struct ibv_context *verbs;
|
|
struct ibv_context *verbs;
|
|
int ret;
|
|
int ret;
|
|
@@ -3367,13 +3353,16 @@ static int qemu_rdma_accept(RDMAContext *rdma)
|
|
goto err_rdma_dest_wait;
|
|
goto err_rdma_dest_wait;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ isock->host = rdma->host;
|
|
|
|
+ isock->port = g_strdup_printf("%d", rdma->port);
|
|
|
|
+
|
|
/*
|
|
/*
|
|
* initialize the RDMAContext for return path for postcopy after first
|
|
* initialize the RDMAContext for return path for postcopy after first
|
|
* connection request reached.
|
|
* connection request reached.
|
|
*/
|
|
*/
|
|
if ((migrate_postcopy() || migrate_return_path())
|
|
if ((migrate_postcopy() || migrate_return_path())
|
|
&& !rdma->is_return_path) {
|
|
&& !rdma->is_return_path) {
|
|
- rdma_return_path = qemu_rdma_data_init(rdma->host_port, NULL);
|
|
|
|
|
|
+ rdma_return_path = qemu_rdma_data_init(isock, NULL);
|
|
if (rdma_return_path == NULL) {
|
|
if (rdma_return_path == NULL) {
|
|
rdma_ack_cm_event(cm_event);
|
|
rdma_ack_cm_event(cm_event);
|
|
goto err_rdma_dest_wait;
|
|
goto err_rdma_dest_wait;
|
|
@@ -4074,7 +4063,8 @@ static void rdma_accept_incoming_migration(void *opaque)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-void rdma_start_incoming_migration(const char *host_port, Error **errp)
|
|
|
|
|
|
+void rdma_start_incoming_migration(InetSocketAddress *host_port,
|
|
|
|
+ Error **errp)
|
|
{
|
|
{
|
|
MigrationState *s = migrate_get_current();
|
|
MigrationState *s = migrate_get_current();
|
|
int ret;
|
|
int ret;
|
|
@@ -4118,13 +4108,12 @@ cleanup_rdma:
|
|
err:
|
|
err:
|
|
if (rdma) {
|
|
if (rdma) {
|
|
g_free(rdma->host);
|
|
g_free(rdma->host);
|
|
- g_free(rdma->host_port);
|
|
|
|
}
|
|
}
|
|
g_free(rdma);
|
|
g_free(rdma);
|
|
}
|
|
}
|
|
|
|
|
|
void rdma_start_outgoing_migration(void *opaque,
|
|
void rdma_start_outgoing_migration(void *opaque,
|
|
- const char *host_port, Error **errp)
|
|
|
|
|
|
+ InetSocketAddress *host_port, Error **errp)
|
|
{
|
|
{
|
|
MigrationState *s = opaque;
|
|
MigrationState *s = opaque;
|
|
RDMAContext *rdma_return_path = NULL;
|
|
RDMAContext *rdma_return_path = NULL;
|