write_iter variants of {__,}generic_file_aio_write()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2014-04-03 03:17:43 -04:00
parent 3644424dc6
commit 8174202b34
29 changed files with 94 additions and 79 deletions

View File

@@ -265,14 +265,14 @@ const struct inode_operations logfs_reg_iops = {
const struct file_operations logfs_reg_fops = {
.read_iter = generic_file_read_iter,
.aio_write = generic_file_aio_write,
.write_iter = generic_file_write_iter,
.fsync = logfs_fsync,
.unlocked_ioctl = logfs_ioctl,
.llseek = generic_file_llseek,
.mmap = generic_file_readonly_mmap,
.open = generic_file_open,
.read = new_sync_read,
.write = do_sync_write,
.write = new_sync_write,
};
const struct address_space_operations logfs_reg_aops = {