[PATCH] Fix GO_SLOW delay
[linux-2.6.22.y-op.git] / fs / adfs / file.c
blobafebbfde6968c54afec13e412ac302f24e2cc6d6
1 /*
2 * linux/fs/adfs/file.c
4 * Copyright (C) 1997-1999 Russell King
5 * from:
7 * linux/fs/ext2/file.c
9 * Copyright (C) 1992, 1993, 1994, 1995
10 * Remy Card (card@masi.ibp.fr)
11 * Laboratoire MASI - Institut Blaise Pascal
12 * Universite Pierre et Marie Curie (Paris VI)
14 * from
16 * linux/fs/minix/file.c
18 * Copyright (C) 1991, 1992 Linus Torvalds
20 * adfs regular file handling primitives
22 #include <linux/errno.h>
23 #include <linux/fs.h>
24 #include <linux/fcntl.h>
25 #include <linux/time.h>
26 #include <linux/stat.h>
27 #include <linux/buffer_head.h> /* for file_fsync() */
28 #include <linux/adfs_fs.h>
30 #include "adfs.h"
32 struct file_operations adfs_file_operations = {
33 .llseek = generic_file_llseek,
34 .read = generic_file_read,
35 .mmap = generic_file_mmap,
36 .fsync = file_fsync,
37 .write = generic_file_write,
38 .sendfile = generic_file_sendfile,
41 struct inode_operations adfs_file_inode_operations = {
42 .setattr = adfs_notify_change,