| 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 <linux/fs.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/buffer_head.h>			/* for file_fsync() */ | 
|  | 24 | #include <linux/adfs_fs.h> | 
|  | 25 |  | 
|  | 26 | #include "adfs.h" | 
|  | 27 |  | 
| Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 28 | const struct file_operations adfs_file_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | .llseek		= generic_file_llseek, | 
|  | 30 | .read		= generic_file_read, | 
|  | 31 | .mmap		= generic_file_mmap, | 
|  | 32 | .fsync		= file_fsync, | 
|  | 33 | .write		= generic_file_write, | 
|  | 34 | .sendfile	= generic_file_sendfile, | 
|  | 35 | }; | 
|  | 36 |  | 
|  | 37 | struct inode_operations adfs_file_inode_operations = { | 
|  | 38 | .setattr	= adfs_notify_change, | 
|  | 39 | }; |