Re: [PATCH 1/3] migration/multifd: fix nullptr access in terminating multifd threads

2020-01-09 Thread Juan Quintela
cenjiahui wrote: > From: Jiahui Cen > > One multifd channel will shutdown all the other multifd's IOChannel when it > fails to receive an IOChannel. In this senario, if some multifds had not > received its IOChannel yet, it would try to shutdown its IOChannel which could > cause nullptr access

[PATCH 1/3] migration/multifd: fix nullptr access in terminating multifd threads

2019-10-22 Thread cenjiahui
From: Jiahui Cen One multifd channel will shutdown all the other multifd's IOChannel when it fails to receive an IOChannel. In this senario, if some multifds had not received its IOChannel yet, it would try to shutdown its IOChannel which could cause nullptr access at qio_channel_shutdown. Here