X-Git-Url: http://pilppa.org/gitweb/?a=blobdiff_plain;f=mm%2Fnommu.c;h=99d21020ec9d1158677ee7a32ad15aff5fcd4ad8;hb=8884efab1516613215816d48132dd724508970bf;hp=c1196812876be984920118078fd817dccbf771f8;hpb=606c0dafbe88102d64c1253caed8a2c36987070f;p=linux-2.6-omap-h63xx.git diff --git a/mm/nommu.c b/mm/nommu.c index c1196812876..99d21020ec9 100644 --- a/mm/nommu.c +++ b/mm/nommu.c @@ -57,6 +57,8 @@ EXPORT_SYMBOL(vmalloc); EXPORT_SYMBOL(vfree); EXPORT_SYMBOL(vmalloc_to_page); EXPORT_SYMBOL(vmalloc_32); +EXPORT_SYMBOL(vmap); +EXPORT_SYMBOL(vunmap); /* * Handle all mappings that got truncated by a "truncate()" @@ -1177,3 +1179,10 @@ int in_gate_area_no_task(unsigned long addr) { return 0; } + +struct page *filemap_nopage(struct vm_area_struct *area, + unsigned long address, int *type) +{ + BUG(); + return NULL; +}