The patch titled Subject: huge-tmpfs-get_unmapped_area-align-fault-supply-huge-page-fix has been removed from the -mm tree. Its filename was huge-tmpfs-get_unmapped_area-align-fault-supply-huge-page-fix.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: huge-tmpfs-get_unmapped_area-align-fault-supply-huge-page-fix fix nommu build drivers/char/mem.c: In function 'get_unmapped_area_zero': drivers/char/mem.c:683: error: 'struct mm_struct' has no member named 'get_unmapped_area' Cc: Hugh Dickins <hughd@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/mem.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff -puN drivers/char/mem.c~huge-tmpfs-get_unmapped_area-align-fault-supply-huge-page-fix drivers/char/mem.c --- a/drivers/char/mem.c~huge-tmpfs-get_unmapped_area-align-fault-supply-huge-page-fix +++ a/drivers/char/mem.c @@ -666,9 +666,7 @@ static unsigned long get_unmapped_area_z unsigned long addr, unsigned long len, unsigned long pgoff, unsigned long flags) { -#ifndef CONFIG_MMU - return -ENOSYS; -#endif +#ifdef CONFIG_MMU if (flags & MAP_SHARED) { /* * mmap_zero() will call shmem_zero_setup() to create a file, @@ -681,6 +679,9 @@ static unsigned long get_unmapped_area_z /* Otherwise flags & MAP_PRIVATE: with no shmem object beneath it */ return current->mm->get_unmapped_area(file, addr, len, pgoff, flags); +#else + return -ENOSYS; +#endif } static ssize_t write_full(struct file *file, const char __user *buf, _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are i-need-old-gcc.patch arch-alpha-kernel-systblss-remove-debug-check.patch arm-arch-arm-include-asm-pageh-needs-personalityh.patch mm.patch mm-rename-_count-field-of-the-struct-page-to-_refcount-fix.patch mm-rename-_count-field-of-the-struct-page-to-_refcount-fix-fix.patch include-linux-apply-__malloc-attribute-checkpatch-fixes.patch include-linux-nodemaskh-create-next_node_in-helper.patch include-linux-nodemaskh-create-next_node_in-helper-fix-fix.patch mm-hugetlbc-use-first_memory_node.patch mm-mempolicyc-offset_il_node-document-and-clarify.patch mm-compaction-direct-freepage-allocation-for-async-direct-compaction-checkpatch-fixes.patch mm-uninline-page_mapped.patch mm-uninline-page_mapped-checkpatch-fixes.patch huge-tmpfs-get_unmapped_area-align-fault-supply-huge-page-fix-fix-2.patch memory_hotplug-introduce-config_memory_hotplug_default_online-fix.patch exit_thread-remove-empty-bodies-fix.patch exit_thread-accept-a-task-parameter-to-be-exited-checkpatch-fixes.patch drivers-net-wireless-intel-iwlwifi-dvm-calibc-fix-min-warning.patch kernel-forkc-export-kernel_thread-to-modules.patch slab-leaks3-default-y.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