file.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. #include <linux/time.h>
  21. #include "ext2.h"
  22. #include "xattr.h"
  23. #include "acl.h"
  24. /*
  25. * Called when filp is released. This happens when all file descriptors
  26. * for a single struct file are closed. Note that different open() calls
  27. * for the same file yield different struct file structures.
  28. */
  29. static int ext2_release_file (struct inode * inode, struct file * filp)
  30. {
  31. if (filp->f_mode & FMODE_WRITE) {
  32. mutex_lock(&EXT2_I(inode)->truncate_mutex);
  33. ext2_discard_reservation(inode);
  34. mutex_unlock(&EXT2_I(inode)->truncate_mutex);
  35. }
  36. return 0;
  37. }
  38. /*
  39. * We have mostly NULL's here: the current defaults are ok for
  40. * the ext2 filesystem.
  41. */
  42. const struct file_operations ext2_file_operations = {
  43. .llseek = generic_file_llseek,
  44. .read = do_sync_read,
  45. .write = do_sync_write,
  46. .aio_read = generic_file_aio_read,
  47. .aio_write = generic_file_aio_write,
  48. .unlocked_ioctl = ext2_ioctl,
  49. #ifdef CONFIG_COMPAT
  50. .compat_ioctl = ext2_compat_ioctl,
  51. #endif
  52. .mmap = generic_file_mmap,
  53. .open = generic_file_open,
  54. .release = ext2_release_file,
  55. .fsync = simple_fsync,
  56. .splice_read = generic_file_splice_read,
  57. .splice_write = generic_file_splice_write,
  58. };
  59. #ifdef CONFIG_EXT2_FS_XIP
  60. const struct file_operations ext2_xip_file_operations = {
  61. .llseek = generic_file_llseek,
  62. .read = xip_file_read,
  63. .write = xip_file_write,
  64. .unlocked_ioctl = ext2_ioctl,
  65. #ifdef CONFIG_COMPAT
  66. .compat_ioctl = ext2_compat_ioctl,
  67. #endif
  68. .mmap = xip_file_mmap,
  69. .open = generic_file_open,
  70. .release = ext2_release_file,
  71. .fsync = simple_fsync,
  72. };
  73. #endif
  74. const struct inode_operations ext2_file_inode_operations = {
  75. .truncate = ext2_truncate,
  76. #ifdef CONFIG_EXT2_FS_XATTR
  77. .setxattr = generic_setxattr,
  78. .getxattr = generic_getxattr,
  79. .listxattr = ext2_listxattr,
  80. .removexattr = generic_removexattr,
  81. #endif
  82. .setattr = ext2_setattr,
  83. .permission = ext2_permission,
  84. .fiemap = ext2_fiemap,
  85. };