Blame view

fs/ext2/file.c 2.76 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  /*
   *  linux/fs/ext2/file.c
   *
   * Copyright (C) 1992, 1993, 1994, 1995
   * Remy Card (card@masi.ibp.fr)
   * Laboratoire MASI - Institut Blaise Pascal
   * Universite Pierre et Marie Curie (Paris VI)
   *
   *  from
   *
   *  linux/fs/minix/file.c
   *
   *  Copyright (C) 1991, 1992  Linus Torvalds
   *
   *  ext2 fs regular file handling primitives
   *
   *  64-bit file support on 64-bit platforms by Jakub Jelinek
   * 	(jj@sunsite.ms.mff.cuni.cz)
   */
  
  #include <linux/time.h>
48bde86df   Jan Kara   ext2: report meta...
22
  #include <linux/pagemap.h>
871a29315   Christoph Hellwig   dquot: cleanup dq...
23
  #include <linux/quotaops.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
25
26
27
28
  #include "ext2.h"
  #include "xattr.h"
  #include "acl.h"
  
  /*
a6739af8b   Jan Kara   ext2: fix a comme...
29
30
31
   * Called when filp is released. This happens when all file descriptors
   * for a single struct file are closed. Note that different open() calls
   * for the same file yield different struct file structures.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
33
34
   */
  static int ext2_release_file (struct inode * inode, struct file * filp)
  {
a686cd898   Martin J. Bligh   ext2 reservations
35
36
37
38
39
  	if (filp->f_mode & FMODE_WRITE) {
  		mutex_lock(&EXT2_I(inode)->truncate_mutex);
  		ext2_discard_reservation(inode);
  		mutex_unlock(&EXT2_I(inode)->truncate_mutex);
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
41
  	return 0;
  }
02c24a821   Josef Bacik   fs: push i_mutex ...
42
  int ext2_fsync(struct file *file, loff_t start, loff_t end, int datasync)
48bde86df   Jan Kara   ext2: report meta...
43
44
  {
  	int ret;
7ea808591   Christoph Hellwig   drop unused dentr...
45
  	struct super_block *sb = file->f_mapping->host->i_sb;
48bde86df   Jan Kara   ext2: report meta...
46
  	struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
02c24a821   Josef Bacik   fs: push i_mutex ...
47
  	ret = generic_file_fsync(file, start, end, datasync);
48bde86df   Jan Kara   ext2: report meta...
48
49
50
51
52
53
54
55
  	if (ret == -EIO || test_and_clear_bit(AS_EIO, &mapping->flags)) {
  		/* We don't really know where the IO error happened... */
  		ext2_error(sb, __func__,
  			   "detected IO error when writing metadata buffers");
  		ret = -EIO;
  	}
  	return ret;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
56
57
58
59
  /*
   * We have mostly NULL's here: the current defaults are ok for
   * the ext2 filesystem.
   */
4b6f5d20b   Arjan van de Ven   [PATCH] Make most...
60
  const struct file_operations ext2_file_operations = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
61
  	.llseek		= generic_file_llseek,
543ade1fc   Badari Pulavarty   [PATCH] Streamlin...
62
63
  	.read		= do_sync_read,
  	.write		= do_sync_write,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
65
  	.aio_read	= generic_file_aio_read,
  	.aio_write	= generic_file_aio_write,
14f9f7b28   Andi Kleen   BKL-removal: conv...
66
  	.unlocked_ioctl = ext2_ioctl,
e322ff07f   David Howells   [PATCH] BLOCK: Mo...
67
68
69
  #ifdef CONFIG_COMPAT
  	.compat_ioctl	= ext2_compat_ioctl,
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
70
  	.mmap		= generic_file_mmap,
907f4554e   Christoph Hellwig   dquot: move dquot...
71
  	.open		= dquot_file_open,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
72
  	.release	= ext2_release_file,
48bde86df   Jan Kara   ext2: report meta...
73
  	.fsync		= ext2_fsync,
5274f052e   Jens Axboe   [PATCH] Introduce...
74
75
  	.splice_read	= generic_file_splice_read,
  	.splice_write	= generic_file_splice_write,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
76
  };
6d79125bb   Carsten Otte   [PATCH] xip: ext2...
77
  #ifdef CONFIG_EXT2_FS_XIP
4b6f5d20b   Arjan van de Ven   [PATCH] Make most...
78
  const struct file_operations ext2_xip_file_operations = {
6d79125bb   Carsten Otte   [PATCH] xip: ext2...
79
  	.llseek		= generic_file_llseek,
eb6fe0c38   Carsten Otte   [PATCH] xip: redu...
80
81
  	.read		= xip_file_read,
  	.write		= xip_file_write,
14f9f7b28   Andi Kleen   BKL-removal: conv...
82
  	.unlocked_ioctl = ext2_ioctl,
e322ff07f   David Howells   [PATCH] BLOCK: Mo...
83
84
85
  #ifdef CONFIG_COMPAT
  	.compat_ioctl	= ext2_compat_ioctl,
  #endif
6d79125bb   Carsten Otte   [PATCH] xip: ext2...
86
  	.mmap		= xip_file_mmap,
907f4554e   Christoph Hellwig   dquot: move dquot...
87
  	.open		= dquot_file_open,
6d79125bb   Carsten Otte   [PATCH] xip: ext2...
88
  	.release	= ext2_release_file,
48bde86df   Jan Kara   ext2: report meta...
89
  	.fsync		= ext2_fsync,
6d79125bb   Carsten Otte   [PATCH] xip: ext2...
90
91
  };
  #endif
754661f14   Arjan van de Ven   [PATCH] mark stru...
92
  const struct inode_operations ext2_file_inode_operations = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
93
94
95
96
97
98
99
  #ifdef CONFIG_EXT2_FS_XATTR
  	.setxattr	= generic_setxattr,
  	.getxattr	= generic_getxattr,
  	.listxattr	= ext2_listxattr,
  	.removexattr	= generic_removexattr,
  #endif
  	.setattr	= ext2_setattr,
4e34e719e   Christoph Hellwig   fs: take the ACL ...
100
  	.get_acl	= ext2_get_acl,
68c9d702b   Josef Bacik   generic block bas...
101
  	.fiemap		= ext2_fiemap,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
102
  };