summaryrefslogtreecommitdiffstats
path: root/scripts/gdb/linux/modules.py
diff options
context:
space:
mode:
authorXi Kangjie2018-01-19 01:34:00 +0100
committerLinus Torvalds2018-01-19 19:09:41 +0100
commit883d50f56d263f70fd73c0d96b09eb36c34e9305 (patch)
tree02e9e827233616e37837735b7a61b62c77d97f55 /scripts/gdb/linux/modules.py
parentscripts/decodecode: fix decoding for AArch64 (arm64) instructions (diff)
downloadkernel-qcow2-linux-883d50f56d263f70fd73c0d96b09eb36c34e9305.tar.gz
kernel-qcow2-linux-883d50f56d263f70fd73c0d96b09eb36c34e9305.tar.xz
kernel-qcow2-linux-883d50f56d263f70fd73c0d96b09eb36c34e9305.zip
scripts/gdb/linux/tasks.py: fix get_thread_info
Since kernel 4.9, the thread_info has been moved into task_struct, no longer locates at the bottom of kernel stack. See commits c65eacbe290b ("sched/core: Allow putting thread_info into task_struct") and 15f4eae70d36 ("x86: Move thread_info into task_struct"). Before fix: (gdb) set $current = $lx_current() (gdb) p $lx_thread_info($current) $1 = {flags = 1470918301} (gdb) p $current.thread_info $2 = {flags = 2147483648} After fix: (gdb) p $lx_thread_info($current) $1 = {flags = 2147483648} (gdb) p $current.thread_info $2 = {flags = 2147483648} Link: http://lkml.kernel.org/r/20180118210159.17223-1-imxikangjie@gmail.com Fixes: 15f4eae70d36 ("x86: Move thread_info into task_struct") Signed-off-by: Xi Kangjie <imxikangjie@gmail.com> Acked-by: Jan Kiszka <jan.kiszka@siemens.com> Acked-by: Kieran Bingham <kbingham@kernel.org> Cc: <stable@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/gdb/linux/modules.py')
0 files changed, 0 insertions, 0 deletions