From: Juan Quintela Date: Tue, 30 May 2023 18:39:40 +0000 (+0200) Subject: qemu-file: Simplify qemu_file_shutdown() X-Git-Tag: qemu-xen-4.20.0~614^2~2 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8c5ee0bfb86eae89c5480dc616bb9d2234ac1fd6;p=qemu-xen.git qemu-file: Simplify qemu_file_shutdown() Reviewed-by: Peter Xu Message-ID: <20230530183941.7223-20-quintela@redhat.com> Signed-off-by: Juan Quintela --- diff --git a/migration/qemu-file.c b/migration/qemu-file.c index 9a89e17924..4c577bdff8 100644 --- a/migration/qemu-file.c +++ b/migration/qemu-file.c @@ -65,8 +65,6 @@ struct QEMUFile { */ int qemu_file_shutdown(QEMUFile *f) { - int ret = 0; - /* * We must set qemufile error before the real shutdown(), otherwise * there can be a race window where we thought IO all went though @@ -96,10 +94,10 @@ int qemu_file_shutdown(QEMUFile *f) } if (qio_channel_shutdown(f->ioc, QIO_CHANNEL_SHUTDOWN_BOTH, NULL) < 0) { - ret = -EIO; + return -EIO; } - return ret; + return 0; } bool qemu_file_mode_is_not_valid(const char *mode)