The patch titled Subject: scripts/gdb: cast CPU numbers to integer has been added to the -mm tree. Its filename is scripts-gdb-cast-cpu-numbers-to-integer.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/scripts-gdb-cast-cpu-numbers-to-integer.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/scripts-gdb-cast-cpu-numbers-to-integer.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Jan Kiszka <jan.kiszka@xxxxxxxxxxx> Subject: 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@xxxxxxxxxxx Signed-off-by: Jan Kiszka <jan.kiszka@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/gdb/linux/cpus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/gdb/linux/cpus.py~scripts-gdb-cast-cpu-numbers-to-integer scripts/gdb/linux/cpus.py --- a/scripts/gdb/linux/cpus.py~scripts-gdb-cast-cpu-numbers-to-integer +++ a/scripts/gdb/linux/cpus.py @@ -97,7 +97,7 @@ def cpu_list(mask_name): bits >>= 1 bit += 1 - yield cpu + yield int(cpu) def each_online_cpu(): _ Patches currently in -mm which might be from jan.kiszka@xxxxxxxxxxx are scripts-gdb-adjust-module-reference-counter-reported-by-lx-lsmod.patch scripts-gdb-cast-cpu-numbers-to-integer.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html