|
@@ -171,6 +171,18 @@ int qemu_chr_write(Chardev *s, const uint8_t *buf, int len, bool write_all)
|
|
return res;
|
|
return res;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ if (replay_mode == REPLAY_MODE_RECORD) {
|
|
|
|
+ /*
|
|
|
|
+ * When recording we don't want temporary conditions to
|
|
|
|
+ * perturb the result. By ensuring we write everything we can
|
|
|
|
+ * while recording we avoid playback being out of sync if it
|
|
|
|
+ * doesn't encounter the same temporary conditions (usually
|
|
|
|
+ * triggered by external programs not reading the chardev fast
|
|
|
|
+ * enough and pipes filling up).
|
|
|
|
+ */
|
|
|
|
+ write_all = true;
|
|
|
|
+ }
|
|
|
|
+
|
|
res = qemu_chr_write_buffer(s, buf, len, &offset, write_all);
|
|
res = qemu_chr_write_buffer(s, buf, len, &offset, write_all);
|
|
|
|
|
|
if (qemu_chr_replay(s) && replay_mode == REPLAY_MODE_RECORD) {
|
|
if (qemu_chr_replay(s) && replay_mode == REPLAY_MODE_RECORD) {
|