The patch titled nommu: export two symbols for drivers to use has been added to the -mm tree. Its filename is nommu-export-two-symbols-for-drivers-to-use.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: nommu: export two symbols for drivers to use From: "Luke Yang" <luke.adi@xxxxxxxxx> nommu.c needs to export two more symbols for drivers to use: remap_pfn_range and unmap_mapping_range. Signed-off-by: Luke Yang <luke.adi@xxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/nommu.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN mm/nommu.c~nommu-export-two-symbols-for-drivers-to-use mm/nommu.c --- a/mm/nommu.c~nommu-export-two-symbols-for-drivers-to-use +++ a/mm/nommu.c @@ -1070,6 +1070,7 @@ int remap_pfn_range(struct vm_area_struc vma->vm_start = vma->vm_pgoff << PAGE_SHIFT; return 0; } +EXPORT_SYMBOL(remap_pfn_range); void swap_unplug_io_fn(struct backing_dev_info *bdi, struct page *page) { @@ -1090,6 +1091,7 @@ void unmap_mapping_range(struct address_ int even_cows) { } +EXPORT_SYMBOL(unmap_mapping_range); /* * Check that a process has enough memory to allocate a new virtual _ Patches currently in -mm which might be from luke.adi@xxxxxxxxx are nommu-export-two-symbols-for-drivers-to-use.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