The patch titled nommu: stub expand_stack() for nommu case has been added to the -mm tree. Its filename is nommu-stub-expand_stack-for-nommu-case.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: nommu: stub expand_stack() for nommu case From: Greg Ungerer <gerg@xxxxxxxxxxxx> Be consistent with VM mmap, implement expand_stack(). We can't actually do anything other than return an error in the no MMU case though. Signed-off-by: Greg Ungerer <gerg@xxxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/nommu.c | 5 +++++ 1 files changed, 5 insertions(+) diff -puN mm/nommu.c~nommu-stub-expand_stack-for-nommu-case mm/nommu.c --- a/mm/nommu.c~nommu-stub-expand_stack-for-nommu-case +++ a/mm/nommu.c @@ -367,6 +367,11 @@ struct vm_area_struct *find_extend_vma(s return find_vma(mm, addr); } +int expand_stack(struct vm_area_struct *vma, unsigned long address) +{ + return -ENOMEM; +} + /* * look up the first VMA exactly that exactly matches addr * - should be called with mm->mmap_sem at least held readlocked _ Patches currently in -mm which might be from gerg@xxxxxxxxxxxx are drivers-mtd-maps-nettelc-possible-cleanups.patch m68knommu-fix-coldfire-timer-off-by-1.patch nommu-stub-expand_stack-for-nommu-case.patch m68knommu-use-trhead_size-instead-of-hard-constant.patch m68knommu-remove-cruft-from-setup-code.patch m68knommu-remove-old-cache-management-cruft-from-mm-code.patch nommu-report-correct-errno-in-message.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