vmstate: constify SaveVMHandlers

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20181114133139.27346-1-marcandre.lureau@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
Marc-André Lureau 2018-11-14 17:31:39 +04:00 committed by Dr. David Alan Gilbert
parent b95d6588f2
commit de22ded044
2 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ int register_savevm_live(DeviceState *dev,
const char *idstr, const char *idstr,
int instance_id, int instance_id,
int version_id, int version_id,
SaveVMHandlers *ops, const SaveVMHandlers *ops,
void *opaque); void *opaque);
void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque); void unregister_savevm(DeviceState *dev, const char *idstr, void *opaque);

View File

@ -303,7 +303,7 @@ typedef struct SaveStateEntry {
int section_id; int section_id;
/* section id read from the stream */ /* section id read from the stream */
int load_section_id; int load_section_id;
SaveVMHandlers *ops; const SaveVMHandlers *ops;
const VMStateDescription *vmsd; const VMStateDescription *vmsd;
void *opaque; void *opaque;
CompatEntry *compat; CompatEntry *compat;
@ -614,7 +614,7 @@ int register_savevm_live(DeviceState *dev,
const char *idstr, const char *idstr,
int instance_id, int instance_id,
int version_id, int version_id,
SaveVMHandlers *ops, const SaveVMHandlers *ops,
void *opaque) void *opaque)
{ {
SaveStateEntry *se; SaveStateEntry *se;