Re: [PATCH 09/11] replay: stop us hanging in rr_wait_io_event

2023-12-08 Thread Alex Bennée
Pavel Dovgalyuk writes: > On 05.12.2023 23:41, Alex Bennée wrote: >> A lot of the hang I see are when we end up spinning in >> rr_wait_io_event for an event that will never come in playback. As a >> new check functions which can see if we are in PLAY mode and kick us >> us the wait function so

Re: [PATCH 09/11] replay: stop us hanging in rr_wait_io_event

2023-12-08 Thread Pavel Dovgalyuk
On 05.12.2023 23:41, Alex Bennée wrote: A lot of the hang I see are when we end up spinning in rr_wait_io_event for an event that will never come in playback. As a new check functions which can see if we are in PLAY mode and kick us us the wait function so the event can be processed. This fixes

Re: [PATCH 09/11] replay: stop us hanging in rr_wait_io_event

2023-12-06 Thread Richard Henderson
On 12/5/23 12:41, Alex Bennée wrote: A lot of the hang I see are when we end up spinning in rr_wait_io_event for an event that will never come in playback. As a new check functions which can see if we are in PLAY mode and kick us us the wait function so the event can be processed. This fixes

[PATCH 09/11] replay: stop us hanging in rr_wait_io_event

2023-12-05 Thread Alex Bennée
A lot of the hang I see are when we end up spinning in rr_wait_io_event for an event that will never come in playback. As a new check functions which can see if we are in PLAY mode and kick us us the wait function so the event can be processed. This fixes most of the failures in replay_kernel.py