Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/adfs/file.c |
| 3 | * |
| 4 | * Copyright (C) 1997-1999 Russell King |
| 5 | * from: |
| 6 | * |
| 7 | * linux/fs/ext2/file.c |
| 8 | * |
| 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) |
| 13 | * |
| 14 | * from |
| 15 | * |
| 16 | * linux/fs/minix/file.c |
| 17 | * |
| 18 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 19 | * |
| 20 | * adfs regular file handling primitives |
| 21 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "adfs.h" |
| 23 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 24 | const struct file_operations adfs_file_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | .llseek = generic_file_llseek, |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 26 | .read = do_sync_read, |
| 27 | .aio_read = generic_file_aio_read, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | .mmap = generic_file_mmap, |
Christoph Hellwig | 1b061d9 | 2010-05-26 17:53:41 +0200 | [diff] [blame] | 29 | .fsync = generic_file_fsync, |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 30 | .write = do_sync_write, |
| 31 | .aio_write = generic_file_aio_write, |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 32 | .splice_read = generic_file_splice_read, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | }; |
| 34 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 35 | const struct inode_operations adfs_file_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | .setattr = adfs_notify_change, |
| 37 | }; |