diff options
author | 2024-07-04 16:00:24 +0200 | |
---|---|---|
committer | 2024-07-04 16:00:24 +0200 | |
commit | 0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99 (patch) | |
tree | ba0443b74f063471c5d81d85e795e04e7e1dc79c /scripts/gdb/linux/utils.py | |
parent | perf: Make rb_alloc_aux() return an error immediately if nr_pages <= 0 (diff) | |
parent | x86/cpu/intel: Drop stray FAM6 check with new Intel CPU model defines (diff) | |
download | wireguard-linux-0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99.tar.xz wireguard-linux-0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99.zip |
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 '')
-rw-r--r-- | scripts/gdb/linux/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gdb/linux/utils.py b/scripts/gdb/linux/utils.py index 7d5278d815fa..245ab297ea84 100644 --- a/scripts/gdb/linux/utils.py +++ b/scripts/gdb/linux/utils.py @@ -196,7 +196,7 @@ def get_gdbserver_type(): def probe_kgdb(): try: thread_info = gdb.execute("info thread 2", to_string=True) - return "shadowCPU0" in thread_info + return "shadowCPU" in thread_info except gdb.error: return False |