From: Andrey Drobyshev <[email protected]> Currently invoking 'qemu timers' command results into: "gdb.error: There is no member named last". Let's remove the legacy 'last' field from QEMUClock, as it was removed in v4.2.0 by the commit 3c2d4c8aa6a ("timer: last, remove last bits of last").
Signed-off-by: Andrey Drobyshev <[email protected]> --- scripts/qemugdb/timers.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/qemugdb/timers.py b/scripts/qemugdb/timers.py index 5714f92cc2..1219a96b32 100644 --- a/scripts/qemugdb/timers.py +++ b/scripts/qemugdb/timers.py @@ -36,10 +36,9 @@ def dump_timers(self, timer): def process_timerlist(self, tlist, ttype): gdb.write("Processing %s timers\n" % (ttype)) - gdb.write(" clock %s is enabled:%s, last:%s\n" % ( + gdb.write(" clock %s is enabled:%s\n" % ( tlist['clock']['type'], - tlist['clock']['enabled'], - tlist['clock']['last'])) + tlist['clock']['enabled'])) if int(tlist['active_timers']) > 0: self.dump_timers(tlist['active_timers']) -- 2.43.5
