blob: 5f2fa9c36293d835722ec1371b820b07d5c5d9b5 [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/*
Jan Karaa6739af2007-07-15 23:40:22 -070027 * Called when filp is released. This happens when all file descriptors
28 * for a single struct file are closed. Note that different open() calls
29 * for the same file yield different struct file structures.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 */
31static int ext2_release_file (struct inode * inode, struct file * filp)
32{
Martin J. Bligha686cd82007-10-16 23:30:46 -070033 if (filp->f_mode & FMODE_WRITE) {
34 mutex_lock(&EXT2_I(inode)->truncate_mutex);
35 ext2_discard_reservation(inode);
36 mutex_unlock(&EXT2_I(inode)->truncate_mutex);
37 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 return 0;
39}
40
41/*
42 * We have mostly NULL's here: the current defaults are ok for
43 * the ext2 filesystem.
44 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080045const struct file_operations ext2_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 .llseek = generic_file_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -070047 .read = do_sync_read,
48 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 .aio_read = generic_file_aio_read,
50 .aio_write = generic_file_aio_write,
Andi Kleen14f9f7b2008-02-06 01:40:10 -080051 .unlocked_ioctl = ext2_ioctl,
David Howellse322ff02006-08-29 19:06:20 +010052#ifdef CONFIG_COMPAT
53 .compat_ioctl = ext2_compat_ioctl,
54#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .mmap = generic_file_mmap,
56 .open = generic_file_open,
57 .release = ext2_release_file,
58 .fsync = ext2_sync_file,
Jens Axboe5274f052006-03-30 15:15:30 +020059 .splice_read = generic_file_splice_read,
60 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Carsten Otte6d791252005-06-23 22:05:26 -070063#ifdef CONFIG_EXT2_FS_XIP
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080064const struct file_operations ext2_xip_file_operations = {
Carsten Otte6d791252005-06-23 22:05:26 -070065 .llseek = generic_file_llseek,
Carsten Otteeb6fe0c2005-06-23 22:05:28 -070066 .read = xip_file_read,
67 .write = xip_file_write,
Andi Kleen14f9f7b2008-02-06 01:40:10 -080068 .unlocked_ioctl = ext2_ioctl,
David Howellse322ff02006-08-29 19:06:20 +010069#ifdef CONFIG_COMPAT
70 .compat_ioctl = ext2_compat_ioctl,
71#endif
Carsten Otte6d791252005-06-23 22:05:26 -070072 .mmap = xip_file_mmap,
73 .open = generic_file_open,
74 .release = ext2_release_file,
75 .fsync = ext2_sync_file,
Carsten Otte6d791252005-06-23 22:05:26 -070076};
77#endif
78
Arjan van de Ven754661f2007-02-12 00:55:38 -080079const struct inode_operations ext2_file_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 .truncate = ext2_truncate,
81#ifdef CONFIG_EXT2_FS_XATTR
82 .setxattr = generic_setxattr,
83 .getxattr = generic_getxattr,
84 .listxattr = ext2_listxattr,
85 .removexattr = generic_removexattr,
86#endif
87 .setattr = ext2_setattr,
88 .permission = ext2_permission,
89};