Re: [PATCH v4 06/24] chardev: set record/replay on the base device of a muxed device

2024-03-12 Thread Nicholas Piggin
On Tue Mar 12, 2024 at 10:39 PM AEST, Marc-André Lureau wrote: > Hi > > On Mon, Mar 11, 2024 at 9:44 PM Nicholas Piggin wrote: > > > > chardev events to a muxed device don't get recorded because e.g., > > qemu_chr_be_write() checks whether the base device has the record flag > > set. > > > > This

Re: [PATCH v4 06/24] chardev: set record/replay on the base device of a muxed device

2024-03-12 Thread Marc-André Lureau
Hi On Mon, Mar 11, 2024 at 9:44 PM Nicholas Piggin wrote: > > chardev events to a muxed device don't get recorded because e.g., > qemu_chr_be_write() checks whether the base device has the record flag > set. > > This can be seen when replaying a trace that has characters typed into > the console,

[PATCH v4 06/24] chardev: set record/replay on the base device of a muxed device

2024-03-11 Thread Nicholas Piggin
chardev events to a muxed device don't get recorded because e.g., qemu_chr_be_write() checks whether the base device has the record flag set. This can be seen when replaying a trace that has characters typed into the console, an examination of the log shows they are not recorded. Setting QEMU_CHA