summaryrefslogtreecommitdiff
path: root/migration-fd.c
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2012-07-23 06:15:02 +0200
committerJuan Quintela <quintela@redhat.com>2012-12-20 23:09:25 +0100
commitdd217b8732b93d97c22fa70dc15a72d92a2b2380 (patch)
tree11a8aed85b6e5bb87e45b1196c8fcf2923bca7e8 /migration-fd.c
parent766bd1769e70835e0cc25f3f057f101619494b59 (diff)
downloadqemu-dd217b8732b93d97c22fa70dc15a72d92a2b2380.tar.gz
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 'migration-fd.c')
-rw-r--r--migration-fd.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/migration-fd.c b/migration-fd.c
index 5086a9038a..a99e0e3971 100644
--- a/migration-fd.c
+++ b/migration-fd.c
@@ -75,7 +75,6 @@ void fd_start_outgoing_migration(MigrationState *s, const char *fdname, Error **
return;
}
- fcntl(s->fd, F_SETFL, O_NONBLOCK);
s->get_error = fd_errno;
s->write = fd_write;
s->close = fd_close;