The patch titled Subject: mm, slab_common: use enum kmalloc_cache_type to iterate over kmalloc caches has been added to the -mm tree. Its filename is mm-slab_common-use-enum-kmalloc_cache_type-to-iterate-over-kmalloc-caches.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-slab_common-use-enum-kmalloc_cache_type-to-iterate-over-kmalloc-caches.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-slab_common-use-enum-kmalloc_cache_type-to-iterate-over-kmalloc-caches.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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Pengfei Li <lpf.vector@xxxxxxxxx> Subject: mm, slab_common: use enum kmalloc_cache_type to iterate over kmalloc caches The type of local variable *type* of new_kmalloc_cache() should be enum kmalloc_cache_type instead of int, so correct it. Link: http://lkml.kernel.org/r/1569241648-26908-4-git-send-email-lpf.vector@xxxxxxxxx Signed-off-by: Pengfei Li <lpf.vector@xxxxxxxxx> Acked-by: Vlastimil Babka <vbabka@xxxxxxx> Acked-by: Roman Gushchin <guro@xxxxxx> Acked-by: David Rientjes <rientjes@xxxxxxxxxx> Cc: Christoph Lameter <cl@xxxxxxxxx> Cc: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Cc: Pekka Enberg <penberg@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/slab_common.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/mm/slab_common.c~mm-slab_common-use-enum-kmalloc_cache_type-to-iterate-over-kmalloc-caches +++ a/mm/slab_common.c @@ -1238,7 +1238,7 @@ void __init setup_kmalloc_cache_index_ta } static void __init -new_kmalloc_cache(int idx, int type, slab_flags_t flags) +new_kmalloc_cache(int idx, enum kmalloc_cache_type type, slab_flags_t flags) { if (type == KMALLOC_RECLAIM) flags |= SLAB_RECLAIM_ACCOUNT; @@ -1256,7 +1256,8 @@ new_kmalloc_cache(int idx, int type, sla */ void __init create_kmalloc_caches(slab_flags_t flags) { - int i, type; + int i; + enum kmalloc_cache_type type; for (type = KMALLOC_NORMAL; type <= KMALLOC_RECLAIM; type++) { for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) { _ Patches currently in -mm which might be from lpf.vector@xxxxxxxxx are mm-slab-make-kmalloc_info-contain-all-types-of-names.patch mm-slab-remove-unused-kmalloc_size.patch mm-slab_common-use-enum-kmalloc_cache_type-to-iterate-over-kmalloc-caches.patch