The quilt patch titled Subject: mm/cma_debug.c: align the name buffer length as struct cma has been removed from the -mm tree. Its filename was mm-cma_debugc-align-the-name-buffer-length-as-struct-cma.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Kassey Li <quic_yingangl@xxxxxxxxxxx> Subject: mm/cma_debug.c: align the name buffer length as struct cma Date: Tue, 19 Jul 2022 17:15:54 +0800 Avoids truncating the debugfs output to 16 chars. Potentially alters the userspace output, but this is a debugfs interface and there are no stability guarantees. Link: https://lkml.kernel.org/r/20220719091554.27864-1-quic_yingangl@xxxxxxxxxxx Signed-off-by: Kassey Li <quic_yingangl@xxxxxxxxxxx> Cc: Sasha Levin <sashal@xxxxxxxxxx> Cc: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/cma_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/cma_debug.c~mm-cma_debugc-align-the-name-buffer-length-as-struct-cma +++ a/mm/cma_debug.c @@ -163,7 +163,7 @@ DEFINE_DEBUGFS_ATTRIBUTE(cma_alloc_fops, static void cma_debugfs_add_one(struct cma *cma, struct dentry *root_dentry) { struct dentry *tmp; - char name[16]; + char name[CMA_MAX_NAME]; scnprintf(name, sizeof(name), "cma-%s", cma->name); _ Patches currently in -mm which might be from quic_yingangl@xxxxxxxxxxx are