mirror of https://github.com/xemu-project/xemu.git
migration: Make checkpatch happy with comments
Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
a6703e4d33
commit
857a4bbb86
|
@ -1320,10 +1320,12 @@ static void multifd_recv_terminate_threads(Error *err)
|
||||||
|
|
||||||
qemu_mutex_lock(&p->mutex);
|
qemu_mutex_lock(&p->mutex);
|
||||||
p->quit = true;
|
p->quit = true;
|
||||||
/* We could arrive here for two reasons:
|
/*
|
||||||
- normal quit, i.e. everything went fine, just finished
|
* We could arrive here for two reasons:
|
||||||
- error quit: We close the channels so the channel threads
|
* - normal quit, i.e. everything went fine, just finished
|
||||||
finish the qio_channel_read_all_eof() */
|
* - error quit: We close the channels so the channel threads
|
||||||
|
* finish the qio_channel_read_all_eof()
|
||||||
|
*/
|
||||||
if (p->c) {
|
if (p->c) {
|
||||||
qio_channel_shutdown(p->c, QIO_CHANNEL_SHUTDOWN_BOTH, NULL);
|
qio_channel_shutdown(p->c, QIO_CHANNEL_SHUTDOWN_BOTH, NULL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue