fs: unexport vfs_read and vfs_write

No modular users left. Given that they take user pointers there is no
good reason to export it to drivers to start with.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

authored by

Christoph Hellwig and committed by
Al Viro
bd8df82b eb031849

-4
-4
fs/read_write.c
··· 454 454 return ret; 455 455 } 456 456 457 - EXPORT_SYMBOL(vfs_read); 458 - 459 457 static ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos) 460 458 { 461 459 struct iovec iov = { .iov_base = (void __user *)buf, .iov_len = len }; ··· 551 553 552 554 return ret; 553 555 } 554 - 555 - EXPORT_SYMBOL(vfs_write); 556 556 557 557 static inline loff_t file_pos_read(struct file *file) 558 558 {