blob: 566d4e2d3852353d4e54032c417b6bd593d72fa2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 */
31static 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 Ven4b6f5d22006-03-28 01:56:42 -080042const struct file_operations ext2_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 .llseek = generic_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -070044 .read = do_sync_read,
45 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 .aio_read = generic_file_aio_read,
47 .aio_write = generic_file_aio_write,
48 .ioctl = ext2_ioctl,
David Howellse322ff02006-08-29 19:06:20 +010049#ifdef CONFIG_COMPAT
50 .compat_ioctl = ext2_compat_ioctl,
51#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 .mmap = generic_file_mmap,
53 .open = generic_file_open,
54 .release = ext2_release_file,
55 .fsync = ext2_sync_file,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .sendfile = generic_file_sendfile,
Jens Axboe5274f052006-03-30 15:15:30 +020057 .splice_read = generic_file_splice_read,
58 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Carsten Otte6d791252005-06-23 22:05:26 -070061#ifdef CONFIG_EXT2_FS_XIP
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080062const struct file_operations ext2_xip_file_operations = {
Carsten Otte6d791252005-06-23 22:05:26 -070063 .llseek = generic_file_llseek,
Carsten Otteeb6fe0c2005-06-23 22:05:28 -070064 .read = xip_file_read,
65 .write = xip_file_write,
Carsten Otte6d791252005-06-23 22:05:26 -070066 .ioctl = ext2_ioctl,
David Howellse322ff02006-08-29 19:06:20 +010067#ifdef CONFIG_COMPAT
68 .compat_ioctl = ext2_compat_ioctl,
69#endif
Carsten Otte6d791252005-06-23 22:05:26 -070070 .mmap = xip_file_mmap,
71 .open = generic_file_open,
72 .release = ext2_release_file,
73 .fsync = ext2_sync_file,
Carsten Otte6d791252005-06-23 22:05:26 -070074 .sendfile = xip_file_sendfile,
75};
76#endif
77
Arjan van de Ven754661f2007-02-12 00:55:38 -080078const struct inode_operations ext2_file_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 .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};