summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorAndrew Morton <akpm@digeo.com>2002-10-28 16:22:02 -0800
committerJens Axboe <axboe@suse.de>2002-10-28 16:22:02 -0800
commit3ee477f0d419d10cdd72ac9b7d7e9e7cc95e99f0 (patch)
treef9a50299ae38140304118944d25d1568584bae5d /kernel
parentf596aeef33216568838b32a0bd47273ff60e57d7 (diff)
[PATCH] move ramfs a_ops into libfs
From Bill Irwin. Abstract out ramfs readpage(), prepare_write(), and commit_write() operations. Ram-backed filesystems are going to be doing a lot of zero-filled read and write operations. So in this patch, ramfs' implementations are moved to libfs in anticipation of other callers.
Diffstat (limited to 'kernel')
-rw-r--r--kernel/ksyms.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/ksyms.c b/kernel/ksyms.c
index 2110508c2b82..a595cc65382d 100644
--- a/kernel/ksyms.c
+++ b/kernel/ksyms.c
@@ -306,6 +306,9 @@ EXPORT_SYMBOL(simple_unlink);
EXPORT_SYMBOL(simple_rmdir);
EXPORT_SYMBOL(simple_rename);
EXPORT_SYMBOL(simple_sync_file);
+EXPORT_SYMBOL(simple_readpage);
+EXPORT_SYMBOL(simple_prepare_write);
+EXPORT_SYMBOL(simple_commit_write);
EXPORT_SYMBOL(simple_empty);
EXPORT_SYMBOL(fd_install);
EXPORT_SYMBOL(put_unused_fd);