diff options
author | Juan Quintela <quintela@redhat.com> | 2020-01-22 19:12:28 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2020-01-29 11:28:59 +0100 |
commit | 857a4bbb86d45fe9cd008480d3d6460a998cbb66 (patch) | |
tree | d876007c168582ed2d648ab3682c9490e9c0ab62 | |
parent | a6703e4d336b29668b3f5f84da82619dafe33f10 (diff) | |
download | qemu-857a4bbb86d45fe9cd008480d3d6460a998cbb66.zip qemu-857a4bbb86d45fe9cd008480d3d6460a998cbb66.tar.gz qemu-857a4bbb86d45fe9cd008480d3d6460a998cbb66.tar.bz2 |
migration: Make checkpatch happy with comments
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
-rw-r--r-- | migration/ram.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/migration/ram.c b/migration/ram.c index 8f04b5a..12b76b7 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -1320,10 +1320,12 @@ static void multifd_recv_terminate_threads(Error *err) qemu_mutex_lock(&p->mutex); p->quit = true; - /* We could arrive here for two reasons: - - normal quit, i.e. everything went fine, just finished - - error quit: We close the channels so the channel threads - finish the qio_channel_read_all_eof() */ + /* + * We could arrive here for two reasons: + * - normal quit, i.e. everything went fine, just finished + * - error quit: We close the channels so the channel threads + * finish the qio_channel_read_all_eof() + */ if (p->c) { qio_channel_shutdown(p->c, QIO_CHANNEL_SHUTDOWN_BOTH, NULL); } |