[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/5] net/slirp: use different IDs for each instance
From: |
marcandre . lureau |
Subject: |
[PATCH 3/5] net/slirp: use different IDs for each instance |
Date: |
Tue, 26 Sep 2023 19:59:23 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
Using always 0, QEMU will end up loading the same instance, even if
multiple have been saved.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
net/slirp.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net/slirp.c b/net/slirp.c
index c33b3e02e7..af1451b60f 100644
--- a/net/slirp.c
+++ b/net/slirp.c
@@ -47,6 +47,7 @@
#include "util.h"
#include "migration/register.h"
#include "migration/qemu-file-types.h"
+#include "migration/vmstate.h"
static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
{
@@ -659,7 +660,7 @@ static int net_slirp_init(NetClientState *peer, const char
*model,
* specific version?
*/
g_assert(slirp_state_version() == 4);
- register_savevm_live("slirp", 0, slirp_state_version(),
+ register_savevm_live("slirp", VMSTATE_INSTANCE_ID_ANY,
slirp_state_version(),
&savevm_slirp_state, s->slirp);
s->poll_notifier.notify = net_slirp_poll_notify;
--
2.41.0
- [PATCH 0/5] RFC: migration: check required entries and sections are loaded, marcandre . lureau, 2023/09/26
- [PATCH 1/5] block/fdc: 'phase' is not needed on load, marcandre . lureau, 2023/09/26
- [PATCH 2/5] virtio: make endian_needed() work during loading, marcandre . lureau, 2023/09/26
- [PATCH 3/5] net/slirp: use different IDs for each instance,
marcandre . lureau <=
- [PATCH 4/5] RFC: migration: check required subsections are loaded, once, marcandre . lureau, 2023/09/26
- [PATCH 5/5] RFC: migration: check required entries are loaded, once, marcandre . lureau, 2023/09/26