diff options
author | Maxime Ripard <mripard@kernel.org> | 2024-07-04 16:19:33 +0300 |
---|---|---|
committer | Maxime Ripard <mripard@kernel.org> | 2024-07-04 16:19:33 +0300 |
commit | afeea2758b4f1210361ce2a91d8fa3e7df606ad2 (patch) | |
tree | 969164f4e52fac6d4ec7d275540e702375e80950 /scripts/gdb/linux/utils.py | |
parent | 539d33b5783804f22a62bd62ff463dfd1cef4265 (diff) | |
parent | 896868eded124059023be0af92d68cdaf9b4de70 (diff) | |
download | linux-afeea2758b4f1210361ce2a91d8fa3e7df606ad2.tar.xz |
Merge drm-misc-next-2024-07-04 into drm-misc-next-fixes
Let's start the drm-misc-next-fixes cycle.
Signed-off-by: Maxime Ripard <mripard@kernel.org>
Diffstat (limited to 'scripts/gdb/linux/utils.py')
-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 |