lirans@il.ibm.com | c163b5c | 2009-11-02 15:40:58 +0200 | [diff] [blame] | 1 | /* |
| 2 | * QEMU live block migration |
| 3 | * |
| 4 | * Copyright IBM, Corp. 2009 |
| 5 | * |
| 6 | * Authors: |
| 7 | * Liran Schour <lirans@il.ibm.com> |
| 8 | * |
| 9 | * This work is licensed under the terms of the GNU GPL, version 2. See |
| 10 | * the COPYING file in the top-level directory. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | #ifndef BLOCK_MIGRATION_H |
| 15 | #define BLOCK_MIGRATION_H |
| 16 | |
lirans@il.ibm.com | c163b5c | 2009-11-02 15:40:58 +0200 | [diff] [blame] | 17 | void blk_mig_init(void); |
Jan Kiszka | 25f2364 | 2009-11-30 18:21:21 +0100 | [diff] [blame] | 18 | int blk_mig_active(void); |
| 19 | uint64_t blk_mig_bytes_transferred(void); |
| 20 | uint64_t blk_mig_bytes_remaining(void); |
| 21 | uint64_t blk_mig_bytes_total(void); |
Jan Kiszka | 3c095c3 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 22 | |
lirans@il.ibm.com | c163b5c | 2009-11-02 15:40:58 +0200 | [diff] [blame] | 23 | #endif /* BLOCK_MIGRATION_H */ |