diff options
author | Peter Zijlstra <peterz@infradead.org> | 2024-07-04 17:00:24 +0300 |
---|---|---|
committer | Peter Zijlstra <peterz@infradead.org> | 2024-07-04 17:00:24 +0300 |
commit | 0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99 (patch) | |
tree | ba0443b74f063471c5d81d85e795e04e7e1dc79c /scripts/gdb/linux/tasks.py | |
parent | 0ca4da2412da05fb9dd0b5d90dcc8026219f0f29 (diff) | |
parent | 34b3fc558b537bdf99644dcde539e151716f6331 (diff) | |
download | linux-0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99.tar.xz |
Merge branch 'tip/x86/cpu'
The Lunarlake patches rely on the new VFM stuff.
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Diffstat (limited to 'scripts/gdb/linux/tasks.py')
-rw-r--r-- | scripts/gdb/linux/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gdb/linux/tasks.py b/scripts/gdb/linux/tasks.py index 6793d6e86e77..62348397c1f5 100644 --- a/scripts/gdb/linux/tasks.py +++ b/scripts/gdb/linux/tasks.py @@ -85,7 +85,7 @@ thread_info_type = utils.CachedType("struct thread_info") def get_thread_info(task): thread_info_ptr_type = thread_info_type.get_type().pointer() - if task.type.fields()[0].type == thread_info_type.get_type(): + if task_type.get_type().fields()[0].type == thread_info_type.get_type(): return task['thread_info'] thread_info = task['stack'].cast(thread_info_ptr_type) return thread_info.dereference() |