file.c (d585a021c0b10b0477d6b608c53e1feb8cde0507) file.c (205cb37b89ab37db553907e5ac17962eec561804)
1/*
2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
3 */
4
5#include <linux/time.h>
6#include <linux/reiserfs_fs.h>
7#include <linux/reiserfs_acl.h>
8#include <linux/reiserfs_xattr.h>

--- 270 unchanged lines hidden (view full) ---

279 }
280
281 return do_sync_write(file, buf, count, ppos);
282}
283
284const struct file_operations reiserfs_file_operations = {
285 .read = do_sync_read,
286 .write = reiserfs_file_write,
1/*
2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
3 */
4
5#include <linux/time.h>
6#include <linux/reiserfs_fs.h>
7#include <linux/reiserfs_acl.h>
8#include <linux/reiserfs_xattr.h>

--- 270 unchanged lines hidden (view full) ---

279 }
280
281 return do_sync_write(file, buf, count, ppos);
282}
283
284const struct file_operations reiserfs_file_operations = {
285 .read = do_sync_read,
286 .write = reiserfs_file_write,
287 .ioctl = reiserfs_ioctl,
287 .unlocked_ioctl = reiserfs_ioctl,
288#ifdef CONFIG_COMPAT
289 .compat_ioctl = reiserfs_compat_ioctl,
290#endif
291 .mmap = reiserfs_file_mmap,
292 .open = generic_file_open,
293 .release = reiserfs_file_release,
294 .fsync = reiserfs_sync_file,
295 .aio_read = generic_file_aio_read,

--- 15 unchanged lines hidden ---
288#ifdef CONFIG_COMPAT
289 .compat_ioctl = reiserfs_compat_ioctl,
290#endif
291 .mmap = reiserfs_file_mmap,
292 .open = generic_file_open,
293 .release = reiserfs_file_release,
294 .fsync = reiserfs_sync_file,
295 .aio_read = generic_file_aio_read,

--- 15 unchanged lines hidden ---