mirror of https://github.com/xemu-project/xemu.git
migration: Remove SaveStateHandler and LoadStateHandler typedefs
They are only used once. Reviewed-by: Fabiano Rosas <farosas@suse.de> Reviewed-by: Peter Xu <peterx@redhat.com> Signed-off-by: Cédric Le Goater <clg@redhat.com> Link: https://lore.kernel.org/r/20240304122844.1888308-8-clg@redhat.com Signed-off-by: Peter Xu <peterx@redhat.com>
This commit is contained in:
parent
e8c44363fb
commit
f61efdee1e
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
typedef struct SaveVMHandlers {
|
typedef struct SaveVMHandlers {
|
||||||
/* This runs inside the BQL. */
|
/* This runs inside the BQL. */
|
||||||
SaveStateHandler *save_state;
|
void (*save_state)(QEMUFile *f, void *opaque);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* save_prepare is called early, even before migration starts, and can be
|
* save_prepare is called early, even before migration starts, and can be
|
||||||
|
@ -71,7 +71,7 @@ typedef struct SaveVMHandlers {
|
||||||
/* This calculate the exact remaining data to transfer */
|
/* This calculate the exact remaining data to transfer */
|
||||||
void (*state_pending_exact)(void *opaque, uint64_t *must_precopy,
|
void (*state_pending_exact)(void *opaque, uint64_t *must_precopy,
|
||||||
uint64_t *can_postcopy);
|
uint64_t *can_postcopy);
|
||||||
LoadStateHandler *load_state;
|
int (*load_state)(QEMUFile *f, void *opaque, int version_id);
|
||||||
int (*load_setup)(QEMUFile *f, void *opaque);
|
int (*load_setup)(QEMUFile *f, void *opaque);
|
||||||
int (*load_cleanup)(void *opaque);
|
int (*load_cleanup)(void *opaque);
|
||||||
/* Called when postcopy migration wants to resume from failure */
|
/* Called when postcopy migration wants to resume from failure */
|
||||||
|
|
|
@ -151,8 +151,6 @@ typedef struct IRQState *qemu_irq;
|
||||||
/*
|
/*
|
||||||
* Function types
|
* Function types
|
||||||
*/
|
*/
|
||||||
typedef void SaveStateHandler(QEMUFile *f, void *opaque);
|
|
||||||
typedef int LoadStateHandler(QEMUFile *f, void *opaque, int version_id);
|
|
||||||
typedef void (*qemu_irq_handler)(void *opaque, int n, int level);
|
typedef void (*qemu_irq_handler)(void *opaque, int n, int level);
|
||||||
|
|
||||||
#endif /* QEMU_TYPEDEFS_H */
|
#endif /* QEMU_TYPEDEFS_H */
|
||||||
|
|
Loading…
Reference in New Issue