mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 06:43:53 -06:00
migration: Replace migration's JSON writer by the general one
Commit8118f0950f
"migration: Append JSON description of migration stream" needs a JSON writer. The existing qobject_to_json() wasn't a good fit, because it requires building a QObject to convert. Instead, migration got its very own JSON writer, in commit190c882ce2
"QJSON: Add JSON writer". It tacitly limits numbers to int64_t, and strings contents to characters that don't need escaping, unlike qobject_to_json(). The previous commit factored the JSON writer out of qobject_to_json(). Replace migration's JSON writer by it. Cc: Juan Quintela <quintela@redhat.com> Cc: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20201211171152.146877-17-armbru@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
998da0b158
commit
3ddba9a9e9
29 changed files with 114 additions and 253 deletions
|
@ -134,7 +134,7 @@ static int get_avr(QEMUFile *f, void *pv, size_t size,
|
|||
}
|
||||
|
||||
static int put_avr(QEMUFile *f, void *pv, size_t size,
|
||||
const VMStateField *field, QJSON *vmdesc)
|
||||
const VMStateField *field, JSONWriter *vmdesc)
|
||||
{
|
||||
ppc_avr_t *v = pv;
|
||||
|
||||
|
@ -166,7 +166,7 @@ static int get_fpr(QEMUFile *f, void *pv, size_t size,
|
|||
}
|
||||
|
||||
static int put_fpr(QEMUFile *f, void *pv, size_t size,
|
||||
const VMStateField *field, QJSON *vmdesc)
|
||||
const VMStateField *field, JSONWriter *vmdesc)
|
||||
{
|
||||
ppc_vsr_t *v = pv;
|
||||
|
||||
|
@ -197,7 +197,7 @@ static int get_vsr(QEMUFile *f, void *pv, size_t size,
|
|||
}
|
||||
|
||||
static int put_vsr(QEMUFile *f, void *pv, size_t size,
|
||||
const VMStateField *field, QJSON *vmdesc)
|
||||
const VMStateField *field, JSONWriter *vmdesc)
|
||||
{
|
||||
ppc_vsr_t *v = pv;
|
||||
|
||||
|
@ -455,7 +455,7 @@ static int get_vscr(QEMUFile *f, void *opaque, size_t size,
|
|||
}
|
||||
|
||||
static int put_vscr(QEMUFile *f, void *opaque, size_t size,
|
||||
const VMStateField *field, QJSON *vmdesc)
|
||||
const VMStateField *field, JSONWriter *vmdesc)
|
||||
{
|
||||
PowerPCCPU *cpu = opaque;
|
||||
qemu_put_be32(f, helper_mfvscr(&cpu->env));
|
||||
|
@ -580,7 +580,7 @@ static int get_slbe(QEMUFile *f, void *pv, size_t size,
|
|||
}
|
||||
|
||||
static int put_slbe(QEMUFile *f, void *pv, size_t size,
|
||||
const VMStateField *field, QJSON *vmdesc)
|
||||
const VMStateField *field, JSONWriter *vmdesc)
|
||||
{
|
||||
ppc_slb_t *v = pv;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue