2009-11-02 14:40:58 +01:00
|
|
|
/*
|
|
|
|
* QEMU live block migration
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2009
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Liran Schour <lirans@il.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BLOCK_MIGRATION_H
|
|
|
|
#define BLOCK_MIGRATION_H
|
|
|
|
|
|
|
|
void blk_mig_init(void);
|
2009-11-30 18:21:21 +01:00
|
|
|
int blk_mig_active(void);
|
|
|
|
uint64_t blk_mig_bytes_transferred(void);
|
|
|
|
uint64_t blk_mig_bytes_remaining(void);
|
|
|
|
uint64_t blk_mig_bytes_total(void);
|
2009-11-30 18:21:20 +01:00
|
|
|
|
2009-11-02 14:40:58 +01:00
|
|
|
#endif /* BLOCK_MIGRATION_H */
|