diff options
author | 2024-01-22 09:44:15 +0100 | |
---|---|---|
committer | 2024-01-22 09:44:15 +0100 | |
commit | cf79f291f985662150363b4a93d16f88f12643bc (patch) | |
tree | a803f6e9b1e34f100783538955b9ce34628cd5dd /scripts/gdb/linux/slab.py | |
parent | drm/bridge: parade-ps8640: Make sure we drop the AUX mutex in the error case (diff) | |
parent | Linux 6.8-rc1 (diff) | |
download | wireguard-linux-cf79f291f985662150363b4a93d16f88f12643bc.tar.xz wireguard-linux-cf79f291f985662150363b4a93d16f88f12643bc.zip |
Merge v6.8-rc1 into drm-misc-fixes
Let's kickstart the 6.8 fix cycle.
Signed-off-by: Maxime Ripard <mripard@kernel.org>
Diffstat (limited to 'scripts/gdb/linux/slab.py')
-rw-r--r-- | scripts/gdb/linux/slab.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/gdb/linux/slab.py b/scripts/gdb/linux/slab.py index f012ba38c7d9..0e2d93867fe2 100644 --- a/scripts/gdb/linux/slab.py +++ b/scripts/gdb/linux/slab.py @@ -228,8 +228,7 @@ def slabtrace(alloc, cache_name): nr_cpu = gdb.parse_and_eval('__num_online_cpus')['counter'] if nr_cpu > 1: gdb.write(" cpus=") - for i in loc['cpus']: - gdb.write("%d," % i) + gdb.write(','.join(str(cpu) for cpu in loc['cpus'])) gdb.write("\n") if constants.LX_CONFIG_STACKDEPOT: if loc['handle']: |