| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/fs/ext2/file.c | 
|  | 3 | * | 
|  | 4 | * Copyright (C) 1992, 1993, 1994, 1995 | 
|  | 5 | * Remy Card (card@masi.ibp.fr) | 
|  | 6 | * Laboratoire MASI - Institut Blaise Pascal | 
|  | 7 | * Universite Pierre et Marie Curie (Paris VI) | 
|  | 8 | * | 
|  | 9 | *  from | 
|  | 10 | * | 
|  | 11 | *  linux/fs/minix/file.c | 
|  | 12 | * | 
|  | 13 | *  Copyright (C) 1991, 1992  Linus Torvalds | 
|  | 14 | * | 
|  | 15 | *  ext2 fs regular file handling primitives | 
|  | 16 | * | 
|  | 17 | *  64-bit file support on 64-bit platforms by Jakub Jelinek | 
|  | 18 | * 	(jj@sunsite.ms.mff.cuni.cz) | 
|  | 19 | */ | 
|  | 20 |  | 
|  | 21 | #include <linux/time.h> | 
|  | 22 | #include "ext2.h" | 
|  | 23 | #include "xattr.h" | 
|  | 24 | #include "acl.h" | 
|  | 25 |  | 
|  | 26 | /* | 
|  | 27 | * Called when an inode is released. Note that this is different | 
|  | 28 | * from ext2_open_file: open gets called at every open, but release | 
|  | 29 | * gets called only when /all/ the files are closed. | 
|  | 30 | */ | 
|  | 31 | static int ext2_release_file (struct inode * inode, struct file * filp) | 
|  | 32 | { | 
|  | 33 | if (filp->f_mode & FMODE_WRITE) | 
|  | 34 | ext2_discard_prealloc (inode); | 
|  | 35 | return 0; | 
|  | 36 | } | 
|  | 37 |  | 
|  | 38 | /* | 
|  | 39 | * We have mostly NULL's here: the current defaults are ok for | 
|  | 40 | * the ext2 filesystem. | 
|  | 41 | */ | 
| Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 42 | const struct file_operations ext2_file_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | .llseek		= generic_file_llseek, | 
| Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 44 | .read		= do_sync_read, | 
|  | 45 | .write		= do_sync_write, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | .aio_read	= generic_file_aio_read, | 
|  | 47 | .aio_write	= generic_file_aio_write, | 
|  | 48 | .ioctl		= ext2_ioctl, | 
| David Howells | e322ff0 | 2006-08-29 19:06:20 +0100 | [diff] [blame] | 49 | #ifdef CONFIG_COMPAT | 
|  | 50 | .compat_ioctl	= ext2_compat_ioctl, | 
|  | 51 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | .mmap		= generic_file_mmap, | 
|  | 53 | .open		= generic_file_open, | 
|  | 54 | .release	= ext2_release_file, | 
|  | 55 | .fsync		= ext2_sync_file, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | .sendfile	= generic_file_sendfile, | 
| Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 57 | .splice_read	= generic_file_splice_read, | 
|  | 58 | .splice_write	= generic_file_splice_write, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | }; | 
|  | 60 |  | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 61 | #ifdef CONFIG_EXT2_FS_XIP | 
| Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 62 | const struct file_operations ext2_xip_file_operations = { | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 63 | .llseek		= generic_file_llseek, | 
| Carsten Otte | eb6fe0c | 2005-06-23 22:05:28 -0700 | [diff] [blame] | 64 | .read		= xip_file_read, | 
|  | 65 | .write		= xip_file_write, | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 66 | .ioctl		= ext2_ioctl, | 
| David Howells | e322ff0 | 2006-08-29 19:06:20 +0100 | [diff] [blame] | 67 | #ifdef CONFIG_COMPAT | 
|  | 68 | .compat_ioctl	= ext2_compat_ioctl, | 
|  | 69 | #endif | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 70 | .mmap		= xip_file_mmap, | 
|  | 71 | .open		= generic_file_open, | 
|  | 72 | .release	= ext2_release_file, | 
|  | 73 | .fsync		= ext2_sync_file, | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 74 | .sendfile	= xip_file_sendfile, | 
|  | 75 | }; | 
|  | 76 | #endif | 
|  | 77 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | struct inode_operations ext2_file_inode_operations = { | 
|  | 79 | .truncate	= ext2_truncate, | 
|  | 80 | #ifdef CONFIG_EXT2_FS_XATTR | 
|  | 81 | .setxattr	= generic_setxattr, | 
|  | 82 | .getxattr	= generic_getxattr, | 
|  | 83 | .listxattr	= ext2_listxattr, | 
|  | 84 | .removexattr	= generic_removexattr, | 
|  | 85 | #endif | 
|  | 86 | .setattr	= ext2_setattr, | 
|  | 87 | .permission	= ext2_permission, | 
|  | 88 | }; |