Re: [PATCH v4 1/2] trace: Add support for recorder back-end

2020-08-03 Thread Markus Armbruster
Christophe de Dinechin writes: > The recorder library provides support for low-cost continuous > recording of events, which can then be replayed. This makes it > possible to collect data after the fact, for example to show the > events that led to a crash or unexpected condition. > > In this seri

Re: [PATCH v4 1/2] trace: Add support for recorder back-end

2020-08-03 Thread Stefan Hajnoczi
On Thu, Jul 23, 2020 at 03:29:02PM +0200, Christophe de Dinechin wrote: > diff --git a/configure b/configure > index 4bd80ed507..3770ff873d 100755 > --- a/configure > +++ b/configure > @@ -7761,6 +7761,20 @@ fi > if have_backend "log"; then >echo "CONFIG_TRACE_LOG=y" >> $config_host_mak > fi

[PATCH v4 1/2] trace: Add support for recorder back-end

2020-07-23 Thread Christophe de Dinechin
The recorder library provides support for low-cost continuous recording of events, which can then be replayed. This makes it possible to collect data after the fact, for example to show the events that led to a crash or unexpected condition. In this series, minimal recorder support in qemu is impl