The patch titled Make __vunmap static has been added to the -mm tree. Its filename is make-__vunmap-static.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Make __vunmap static From: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> __vunmap doesn't seem to be used outside of mm/vmalloc.c, and has no prototype in any header so let's make it static Signed-off-by: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/vmalloc.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN mm/vmalloc.c~make-__vunmap-static mm/vmalloc.c --- a/mm/vmalloc.c~make-__vunmap-static +++ a/mm/vmalloc.c @@ -311,7 +311,7 @@ struct vm_struct *remove_vm_area(void *a return v; } -void __vunmap(void *addr, int deallocate_pages) +static void __vunmap(void *addr, int deallocate_pages) { struct vm_struct *area; _ Patches currently in -mm which might be from benh@xxxxxxxxxxxxxxxxxxx are do-not-select-macintosh-drivers-by-default.patch make-__vunmap-static.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