The page cache does it itself.
"readpage" is to move pages from the backing store into the page
cache.
"writepage" and friends is for updating the backing store with
the contents of the page cache.
There is no real backing store of ramfs, since ramfs data lives
completly in page cache.
But we cannot give the user random memory contents, so we zero it
out on readpage and prepare_write.
The data is copied with copy_{from,to}_user in the generic file
operations (look how ramfs_file_operations is defined and look at
the functions referenced), which read/write through page cache.
Regards
Ingo Oeser
-- Use ReiserFS to get a faster fsck and Ext2 to fsck slowly and gently. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/