Re: [PATCH] replay: use CF_NOIRQ for special exception-replaying TB

2022-02-01 Thread Richard Henderson
On 1/31/22 22:25, Pavel Dovgalyuk wrote: Commit aff0e204cb1f1c036a496c94c15f5dfafcd9b4b4 introduced CF_NOIRQ usage, but one case was forgotten. Record/replay uses one special TB which is not really executed, but used to cause a correct exception in replay mode. This patch adds CF_NOIRQ flag for s

Re: [PATCH] replay: use CF_NOIRQ for special exception-replaying TB

2022-01-31 Thread Richard Henderson
On 1/31/22 22:25, Pavel Dovgalyuk wrote: Commit aff0e204cb1f1c036a496c94c15f5dfafcd9b4b4 introduced CF_NOIRQ usage, but one case was forgotten. Record/replay uses one special TB which is not really executed, but used to cause a correct exception in replay mode. This patch adds CF_NOIRQ flag for s

[PATCH] replay: use CF_NOIRQ for special exception-replaying TB

2022-01-31 Thread Pavel Dovgalyuk
Commit aff0e204cb1f1c036a496c94c15f5dfafcd9b4b4 introduced CF_NOIRQ usage, but one case was forgotten. Record/replay uses one special TB which is not really executed, but used to cause a correct exception in replay mode. This patch adds CF_NOIRQ flag for such block. Signed-off-by: Pavel Dovgalyuk