RE: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-20 Thread Pavel Dovgalyuk
> From: Alex Bennée [mailto:alex.ben...@linaro.org] > Pavel Dovgalyuk writes: > > >> From: Alex Bennée [mailto:alex.ben...@linaro.org] > >> Pavel Dovgalyuk writes: > >> > >> > GDB remote protocol supports reverse debugging of the targets. > >> > It includes 'reverse step' and 'reverse continue'

Re: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-17 Thread Alex Bennée
Pavel Dovgalyuk writes: >> From: Alex Bennée [mailto:alex.ben...@linaro.org] >> Pavel Dovgalyuk writes: >> >> > GDB remote protocol supports reverse debugging of the targets. >> > It includes 'reverse step' and 'reverse continue' operations. >> > The first one finds the previous step of the e

RE: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-16 Thread Pavel Dovgalyuk
> From: Alex Bennée [mailto:alex.ben...@linaro.org] > Pavel Dovgalyuk writes: > > > GDB remote protocol supports reverse debugging of the targets. > > It includes 'reverse step' and 'reverse continue' operations. > > The first one finds the previous step of the execution, > > and the second one i

Re: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-16 Thread Alex Bennée
Pavel Dovgalyuk writes: > GDB remote protocol supports reverse debugging of the targets. > It includes 'reverse step' and 'reverse continue' operations. > The first one finds the previous step of the execution, > and the second one is intended to stop at the last breakpoint that > would happen

Re: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-13 Thread Alex Bennée
(looping the list back in) Pavel Dovgalyuk writes: >> From: Alex Bennée [mailto:alex.ben...@linaro.org] >> Pavel Dovgalyuk writes: >> >> >> From: Markus Armbruster [mailto:arm...@redhat.com] >> >> Kevin Wolf writes: >> >> >> >> > Am 09.01.2020 um 07:13 hat Pavel Dovgalyuk geschrieben: >> >>

Re: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-13 Thread Peter Maydell
On Mon, 13 Jan 2020 at 10:27, Kevin Wolf wrote: > > Am 13.01.2020 um 11:14 hat Peter Maydell geschrieben: > > On Mon, 13 Jan 2020 at 10:07, Kevin Wolf wrote: > > > In MAINTAINERS, you are listed yourself as the maintainer for > > > record/replay. I wonder whether you shouldn't just be sending pul

Re: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-13 Thread Kevin Wolf
Am 13.01.2020 um 11:14 hat Peter Maydell geschrieben: > On Mon, 13 Jan 2020 at 10:07, Kevin Wolf wrote: > > In MAINTAINERS, you are listed yourself as the maintainer for > > record/replay. I wonder whether you shouldn't just be sending pull > > requests after getting Acked-by or Reviewed-by from t

Re: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-13 Thread Peter Maydell
On Mon, 13 Jan 2020 at 10:07, Kevin Wolf wrote: > In MAINTAINERS, you are listed yourself as the maintainer for > record/replay. I wonder whether you shouldn't just be sending pull > requests after getting Acked-by or Reviewed-by from the maintainers of > other subsystems you touch. Ideally someb

Re: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-13 Thread Kevin Wolf
Am 13.01.2020 um 10:35 hat Pavel Dovgalyuk geschrieben: > > From: Markus Armbruster [mailto:arm...@redhat.com] > > Kevin Wolf writes: > > > > > Am 09.01.2020 um 07:13 hat Pavel Dovgalyuk geschrieben: > > >> Ping. > > > > > > I think you have my Acked-by for the block-related patches in this > > >

RE: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-13 Thread Pavel Dovgalyuk
> From: Markus Armbruster [mailto:arm...@redhat.com] > Kevin Wolf writes: > > > Am 09.01.2020 um 07:13 hat Pavel Dovgalyuk geschrieben: > >> Ping. > > > > I think you have my Acked-by for the block-related patches in this > > series now. If I missed something, please let me know. > > Pavel, whom

Re: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-13 Thread Markus Armbruster
Kevin Wolf writes: > Am 09.01.2020 um 07:13 hat Pavel Dovgalyuk geschrieben: >> Ping. > > I think you have my Acked-by for the block-related patches in this > series now. If I missed something, please let me know. Pavel, whom are you nudging to do what?

RE: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-09 Thread Pavel Dovgalyuk
> From: Kevin Wolf [mailto:kw...@redhat.com] > Am 09.01.2020 um 07:13 hat Pavel Dovgalyuk geschrieben: > > Ping. > > I think you have my Acked-by for the block-related patches in this > series now. If I missed something, please let me know. Thank you. Pavel Dovgalyuk

Re: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-09 Thread Kevin Wolf
Am 09.01.2020 um 07:13 hat Pavel Dovgalyuk geschrieben: > Ping. I think you have my Acked-by for the block-related patches in this series now. If I missed something, please let me know. Kevin

RE: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2020-01-08 Thread Pavel Dovgalyuk
oglemail.com; pbonz...@redhat.com; > alex.ben...@linaro.org; dgilb...@redhat.com; r...@twiddle.net > Subject: [for-5.0 PATCH 00/11] Support for reverse debugging with GDB > > GDB remote protocol supports reverse debugging of the targets. > It includes 'reverse step' an

[for-5.0 PATCH 00/11] Support for reverse debugging with GDB

2019-12-23 Thread Pavel Dovgalyuk
GDB remote protocol supports reverse debugging of the targets. It includes 'reverse step' and 'reverse continue' operations. The first one finds the previous step of the execution, and the second one is intended to stop at the last breakpoint that would happen when the program is executed normally.