switch simple generic_file_aio_read() users to ->read_iter()
[cascardo/linux.git] / fs / ramfs / file-nommu.c
index 0b3d8e4..416db04 100644 (file)
@@ -37,8 +37,8 @@ static int ramfs_nommu_mmap(struct file *file, struct vm_area_struct *vma);
 const struct file_operations ramfs_file_operations = {
        .mmap                   = ramfs_nommu_mmap,
        .get_unmapped_area      = ramfs_nommu_get_unmapped_area,
-       .read                   = do_sync_read,
-       .aio_read               = generic_file_aio_read,
+       .read                   = new_sync_read,
+       .read_iter              = generic_file_read_iter,
        .write                  = do_sync_write,
        .aio_write              = generic_file_aio_write,
        .fsync                  = noop_fsync,