scripts/gdb: cast CPU numbers to integer

We won't see more than 2 billion CPUs any time soon, and having cpu_list
return long makes the output of lx-cpus a bit ugly.

Link: http://lkml.kernel.org/r/dcb45c3b0a59e0fd321fa56ff7aa398458c689b3.1462865983.git.jan.kiszka@siemens.com
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Jan Kiszka 2016-05-23 16:25:05 -07:00 committed by Linus Torvalds
parent b1503934a5
commit 4bc393dbcf
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ def cpu_list(mask_name):
bits >>= 1
bit += 1
yield cpu
yield int(cpu)
def each_online_cpu():