Commit b1459461f1e0abd5c28317d6bff6f2ca612a719d

Authored by Nikita Danilov
Committed by Linus Torvalds
1 parent 2f96996de0

[PATCH] mm/filemap.c:filemap_populate(): move export.

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -1537,6 +1537,7 @@
1537 1537  
1538 1538 return 0;
1539 1539 }
  1540 +EXPORT_SYMBOL(filemap_populate);
1540 1541  
1541 1542 struct vm_operations_struct generic_file_vm_ops = {
1542 1543 .nopage = filemap_nopage,
... ... @@ -1555,7 +1556,6 @@
1555 1556 vma->vm_ops = &generic_file_vm_ops;
1556 1557 return 0;
1557 1558 }
1558   -EXPORT_SYMBOL(filemap_populate);
1559 1559  
1560 1560 /*
1561 1561 * This is for filesystems which do not implement ->writepage.