file.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 <linux/pagemap.h>
  22. #include <linux/quotaops.h>
  23. #include "ext2.h"
  24. #include "xattr.h"
  25. #include "acl.h"
  26. #ifdef CONFIG_FS_DAX
  27. static int ext2_dax_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
  28. {
  29. return dax_fault(vma, vmf, ext2_get_block, NULL);
  30. }
  31. static int ext2_dax_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
  32. {
  33. return dax_mkwrite(vma, vmf, ext2_get_block, NULL);
  34. }
  35. static const struct vm_operations_struct ext2_dax_vm_ops = {
  36. .fault = ext2_dax_fault,
  37. .page_mkwrite = ext2_dax_mkwrite,
  38. .pfn_mkwrite = dax_pfn_mkwrite,
  39. };
  40. static int ext2_file_mmap(struct file *file, struct vm_area_struct *vma)
  41. {
  42. if (!IS_DAX(file_inode(file)))
  43. return generic_file_mmap(file, vma);
  44. file_accessed(file);
  45. vma->vm_ops = &ext2_dax_vm_ops;
  46. vma->vm_flags |= VM_MIXEDMAP;
  47. return 0;
  48. }
  49. #else
  50. #define ext2_file_mmap generic_file_mmap
  51. #endif
  52. /*
  53. * Called when filp is released. This happens when all file descriptors
  54. * for a single struct file are closed. Note that different open() calls
  55. * for the same file yield different struct file structures.
  56. */
  57. static int ext2_release_file (struct inode * inode, struct file * filp)
  58. {
  59. if (filp->f_mode & FMODE_WRITE) {
  60. mutex_lock(&EXT2_I(inode)->truncate_mutex);
  61. ext2_discard_reservation(inode);
  62. mutex_unlock(&EXT2_I(inode)->truncate_mutex);
  63. }
  64. return 0;
  65. }
  66. int ext2_fsync(struct file *file, loff_t start, loff_t end, int datasync)
  67. {
  68. int ret;
  69. struct super_block *sb = file->f_mapping->host->i_sb;
  70. struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
  71. ret = generic_file_fsync(file, start, end, datasync);
  72. if (ret == -EIO || test_and_clear_bit(AS_EIO, &mapping->flags)) {
  73. /* We don't really know where the IO error happened... */
  74. ext2_error(sb, __func__,
  75. "detected IO error when writing metadata buffers");
  76. ret = -EIO;
  77. }
  78. return ret;
  79. }
  80. /*
  81. * We have mostly NULL's here: the current defaults are ok for
  82. * the ext2 filesystem.
  83. */
  84. const struct file_operations ext2_file_operations = {
  85. .llseek = generic_file_llseek,
  86. .read_iter = generic_file_read_iter,
  87. .write_iter = generic_file_write_iter,
  88. .unlocked_ioctl = ext2_ioctl,
  89. #ifdef CONFIG_COMPAT
  90. .compat_ioctl = ext2_compat_ioctl,
  91. #endif
  92. .mmap = ext2_file_mmap,
  93. .open = dquot_file_open,
  94. .release = ext2_release_file,
  95. .fsync = ext2_fsync,
  96. .splice_read = generic_file_splice_read,
  97. .splice_write = iter_file_splice_write,
  98. };
  99. const struct inode_operations ext2_file_inode_operations = {
  100. #ifdef CONFIG_EXT2_FS_XATTR
  101. .setxattr = generic_setxattr,
  102. .getxattr = generic_getxattr,
  103. .listxattr = ext2_listxattr,
  104. .removexattr = generic_removexattr,
  105. #endif
  106. .setattr = ext2_setattr,
  107. .get_acl = ext2_get_acl,
  108. .set_acl = ext2_set_acl,
  109. .fiemap = ext2_fiemap,
  110. };