diff options
author | Daniel P. Berrange | 2016-04-27 12:05:18 +0200 |
---|---|---|
committer | Amit Shah | 2016-05-26 08:02:21 +0200 |
commit | 12992c16d9afd8a23a94a84ad532a1adedf9e511 (patch) | |
tree | 083645f6a967ce460761ae32ad53815614cc7098 /include | |
parent | migration: remove support for non-iovec based write handlers (diff) | |
download | qemu-12992c16d9afd8a23a94a84ad532a1adedf9e511.tar.gz qemu-12992c16d9afd8a23a94a84ad532a1adedf9e511.tar.xz qemu-12992c16d9afd8a23a94a84ad532a1adedf9e511.zip |
migration: remove qemu_get_fd method from QEMUFile
Now that there is a set_blocking callback in QEMUFileOps,
and all users needing non-blocking support have been
converted to QIOChannel, there is no longer any codepath
requiring the qemu_get_fd() method for QEMUFile. Remove it
to avoid further code being introduced with an expectation
of direct file handle access.
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-Id: <1461751518-12128-29-git-send-email-berrange@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/migration/qemu-file.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/migration/qemu-file.h b/include/migration/qemu-file.h index 36af5f4236..2409a98967 100644 --- a/include/migration/qemu-file.h +++ b/include/migration/qemu-file.h @@ -103,7 +103,6 @@ typedef int (QEMUFileShutdownFunc)(void *opaque, bool rd, bool wr); typedef struct QEMUFileOps { QEMUFileGetBufferFunc *get_buffer; QEMUFileCloseFunc *close; - QEMUFileGetFD *get_fd; QEMUFileSetBlocking *set_blocking; QEMUFileWritevBufferFunc *writev_buffer; QEMURetPathFunc *get_return_path; |