The quilt patch titled Subject: scripts/gdb: timerlist: convert int chunks to str has been removed from the -mm tree. Its filename was scripts-gdb-timerlist-convert-int-chunks-to-str.patch This patch was dropped because it was merged into the mm-nonmm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Amjad Ouled-Ameur <aouledameur@xxxxxxxxxxxx> Subject: scripts/gdb: timerlist: convert int chunks to str Date: Thu, 6 Apr 2023 15:12:17 -0700 join() expects strings but integers are given. Convert chunks list to strings before passing it to join() Link: https://lkml.kernel.org/r/20230406221217.1585486-4-f.fainelli@xxxxxxxxx Signed-off-by: Amjad Ouled-Ameur <aouledameur@xxxxxxxxxxxx> Signed-by: Florian Fainelli <f.fainelli@xxxxxxxxx> Tested-by: Florian Fainelli <f.fainelli@xxxxxxxxx> Cc: Jan Kiszka <jan.kiszka@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/gdb/linux/timerlist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/scripts/gdb/linux/timerlist.py~scripts-gdb-timerlist-convert-int-chunks-to-str +++ a/scripts/gdb/linux/timerlist.py @@ -174,7 +174,7 @@ def pr_cpumask(mask): if 0 < extra <= 4: chunks[0] = chunks[0][0] # Cut off the first 0 - return "".join(chunks) + return "".join(str(chunks)) class LxTimerList(gdb.Command): _ Patches currently in -mm which might be from aouledameur@xxxxxxxxxxxx are