scripts/gdb: fix 'lx-current' for x86
authorJeff Xie <xiehuan09@gmail.com>
Sat, 4 Feb 2023 09:01:39 +0000 (17:01 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Thu, 9 Feb 2023 23:56:51 +0000 (15:56 -0800)
commitc16a3b11eaa88872d07f135df94dfa3fbcd05d10
tree2be17ea9cd0a6c1ba4789beaf3308db18835a839
parent67222c4ba8afe409d1e049a8f1e687c8a214fec7
scripts/gdb: fix 'lx-current' for x86

When printing the name of the current process, it will report an error:
(gdb) p $lx_current().comm Python Exception <class 'gdb.error'> No symbol
"current_task" in current context.: Error occurred in Python: No symbol
"current_task" in current context.

Because e57ef2ed97c1 ("x86: Put hot per CPU variables into a struct")
changed it.

Link: https://lkml.kernel.org/r/20230204090139.1789264-1-xiehuan09@gmail.com
Fixes: e57ef2ed97c1 ("x86: Put hot per CPU variables into a struct")
Signed-off-by: Jeff Xie <xiehuan09@gmail.com>
Cc: Jan Kiszka <jan.kiszka@siemens.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
scripts/gdb/linux/cpus.py