The patch titled Subject: mm: fix faulty initialization in vmalloc_init() has been added to the -mm tree. Its filename is mm-fix-faulty-initialization-in-vmalloc_init.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: KyongHo <pullip.cho@xxxxxxxxxxx> Subject: mm: fix faulty initialization in vmalloc_init() vmalloc_init() adds 'vmap_area's for early 'vm_struct's. This patch fixes vmalloc_init() to correctly initialize vmap_area for the given vm_struct. Signed-off-by: KyongHo Cho <pullip.cho@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/vmalloc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN mm/vmalloc.c~mm-fix-faulty-initialization-in-vmalloc_init mm/vmalloc.c --- a/mm/vmalloc.c~mm-fix-faulty-initialization-in-vmalloc_init +++ a/mm/vmalloc.c @@ -1185,9 +1185,10 @@ void __init vmalloc_init(void) /* Import existing vmlist entries. */ for (tmp = vmlist; tmp; tmp = tmp->next) { va = kzalloc(sizeof(struct vmap_area), GFP_NOWAIT); - va->flags = tmp->flags | VM_VM_AREA; + va->flags = VM_VM_AREA; va->va_start = (unsigned long)tmp->addr; va->va_end = va->va_start + tmp->size; + va->vm = tmp; __insert_vmap_area(va); } _ Subject: Subject: mm: fix faulty initialization in vmalloc_init() Patches currently in -mm which might be from pullip.cho@xxxxxxxxxxx are linux-next.patch mm-fix-faulty-initialization-in-vmalloc_init.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