]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[PATCH] mm/filemap.c:filemap_populate(): move export.
authorNikita Danilov <nikita@clusterfs.com>
Sun, 30 Oct 2005 01:17:02 +0000 (18:17 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Sun, 30 Oct 2005 04:40:45 +0000 (21:40 -0700)
move EXPORT_SYMBOL(filemap_populate) to the proper place: just after
function itself: it's easy to miss that function is exported otherwise.

Signed-off-by: Nikita Danilov <nikita@clusterfs.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
mm/filemap.c

index 036599d1177e3e8098f874e79785d538e3085e9a..768687f1d46bb7c92345914f267fb6bbcc7803d7 100644 (file)
@@ -1537,6 +1537,7 @@ repeat:
 
        return 0;
 }
+EXPORT_SYMBOL(filemap_populate);
 
 struct vm_operations_struct generic_file_vm_ops = {
        .nopage         = filemap_nopage,
@@ -1555,7 +1556,6 @@ int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
        vma->vm_ops = &generic_file_vm_ops;
        return 0;
 }
-EXPORT_SYMBOL(filemap_populate);
 
 /*
  * This is for filesystems which do not implement ->writepage.