diff options
| author | Juan Quintela | 2012-07-23 06:15:02 +0200 |
|---|---|---|
| committer | Juan Quintela | 2012-12-20 23:09:25 +0100 |
| commit | dd217b8732b93d97c22fa70dc15a72d92a2b2380 (patch) | |
| tree | 11a8aed85b6e5bb87e45b1196c8fcf2923bca7e8 /include/migration | |
| parent | migration: move migration thread init code to migrate_fd_put_ready (diff) | |
| download | qemu-dd217b8732b93d97c22fa70dc15a72d92a2b2380.tar.gz qemu-dd217b8732b93d97c22fa70dc15a72d92a2b2380.tar.xz qemu-dd217b8732b93d97c22fa70dc15a72d92a2b2380.zip | |
migration: make writes blocking
Move all the writes to the migration_thread, and make writings
blocking. Notice that are still using the iothread for everything
that we do.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'include/migration')
| -rw-r--r-- | include/migration/qemu-file.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/migration/qemu-file.h b/include/migration/qemu-file.h index d64bdbb19b..68deefbcfb 100644 --- a/include/migration/qemu-file.h +++ b/include/migration/qemu-file.h @@ -113,11 +113,6 @@ int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate); int64_t qemu_file_get_rate_limit(QEMUFile *f); int qemu_file_get_error(QEMUFile *f); -/* Try to send any outstanding data. This function is useful when output is - * halted due to rate limiting or EAGAIN errors occur as it can be used to - * resume output. */ -int qemu_file_put_notify(QEMUFile *f); - static inline void qemu_put_be64s(QEMUFile *f, const uint64_t *pv) { qemu_put_be64(f, *pv); |
