The quilt patch titled Subject: mm: cma: make kobj_type structure constant has been removed from the -mm tree. Its filename was mm-cma-make-kobj_type-structure-constant.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: Thomas WeiÃ?schuh <linux@xxxxxxxxxxxxxx> Subject: mm: cma: make kobj_type structure constant Date: Mon, 20 Feb 2023 23:23:31 +0000 Since commit ee6d3dd4ed48 ("driver core: make kobj_type constant.") the driver core allows the usage of const struct kobj_type. Take advantage of this to constify the structure definition to prevent modification at runtime. Link: https://lkml.kernel.org/r/20230220-kobj_type-mm-cma-v1-1-45996cff1a81@xxxxxxxxxxxxxx Signed-off-by: Thomas WeiÃ?schuh <linux@xxxxxxxxxxxxxx> Cc: Wedson Almeida Filho <wedsonaf@xxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/cma_sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mm/cma_sysfs.c~mm-cma-make-kobj_type-structure-constant +++ a/mm/cma_sysfs.c @@ -64,7 +64,7 @@ static struct attribute *cma_attrs[] = { }; ATTRIBUTE_GROUPS(cma); -static struct kobj_type cma_ktype = { +static const struct kobj_type cma_ktype = { .release = cma_kobj_release, .sysfs_ops = &kobj_sysfs_ops, .default_groups = cma_groups, _ Patches currently in -mm which might be from linux@xxxxxxxxxxxxxx are