[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 4/6] migration: remove iohandlers before closing the
From: |
Paolo Bonzini |
Subject: |
[Qemu-devel] [PATCH 4/6] migration: remove iohandlers before closing the file |
Date: |
Tue, 7 Aug 2012 17:51:45 +0200 |
This will be needed as soon as process_incoming_migration will set
handlers on the file. The patch may be removed if
Signed-off-by: Paolo Bonzini <address@hidden>
---
savevm.c | 3 +++
1 file modificato, 3 inserzioni(+)
diff --git a/savevm.c b/savevm.c
index 57cae52..8f075e5 100644
--- a/savevm.c
+++ b/savevm.c
@@ -210,6 +210,7 @@ static int socket_get_buffer(void *opaque, uint8_t *buf,
int64_t pos, int size)
static int socket_close(void *opaque)
{
QEMUFileSocket *s = opaque;
+ qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
close(s->fd);
g_free(s);
return 0;
@@ -238,6 +239,7 @@ static int stdio_pclose(void *opaque)
{
QEMUFileStdio *s = opaque;
int ret;
+ qemu_set_fd_handler(fileno(s->stdio_file), NULL, NULL, NULL);
ret = pclose(s->stdio_file);
if (ret == -1) {
ret = -errno;
@@ -250,6 +252,7 @@ static int stdio_fclose(void *opaque)
{
QEMUFileStdio *s = opaque;
int ret = 0;
+ qemu_set_fd_handler(fileno(s->stdio_file), NULL, NULL, NULL);
if (fclose(s->stdio_file) == EOF) {
ret = -errno;
}
--
1.7.11.2
- [Qemu-devel] [RFC PATCH 0/6] Run incoming migration in a coroutine, Paolo Bonzini, 2012/08/07
- [Qemu-devel] [PATCH 2/6] migration: close socket QEMUFile from socket_close, Paolo Bonzini, 2012/08/07
- [Qemu-devel] [PATCH 3/6] migration: move qemu_fclose to process_incoming_migration, Paolo Bonzini, 2012/08/07
- [Qemu-devel] [PATCH 1/6] migration: clean up server sockets and handlers before invoking process_incoming_migration, Paolo Bonzini, 2012/08/07
- [Qemu-devel] [PATCH 4/6] migration: remove iohandlers before closing the file,
Paolo Bonzini <=
- [Qemu-devel] [PATCH 5/6] migration: handle EAGAIN while reading QEMUFile, Paolo Bonzini, 2012/08/07
- [Qemu-devel] [PATCH 6/6] migration: move process_incoming_migration to a coroutine, Paolo Bonzini, 2012/08/07