fsync.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * linux/fs/ext3/fsync.c
  3. *
  4. * Copyright (C) 1993 Stephen Tweedie (sct@redhat.com)
  5. * from
  6. * Copyright (C) 1992 Remy Card (card@masi.ibp.fr)
  7. * Laboratoire MASI - Institut Blaise Pascal
  8. * Universite Pierre et Marie Curie (Paris VI)
  9. * from
  10. * linux/fs/minix/truncate.c Copyright (C) 1991, 1992 Linus Torvalds
  11. *
  12. * ext3fs fsync primitive
  13. *
  14. * Big-endian to little-endian byte-swapping/bitmaps by
  15. * David S. Miller (davem@caip.rutgers.edu), 1995
  16. *
  17. * Removed unnecessary code duplication for little endian machines
  18. * and excessive __inline__s.
  19. * Andi Kleen, 1997
  20. *
  21. * Major simplications and cleanup - we only need to do the metadata, because
  22. * we can depend on generic_block_fdatasync() to sync the data blocks.
  23. */
  24. #include <linux/time.h>
  25. #include <linux/fs.h>
  26. #include <linux/sched.h>
  27. #include <linux/writeback.h>
  28. #include <linux/jbd.h>
  29. #include <linux/ext3_fs.h>
  30. #include <linux/ext3_jbd.h>
  31. /*
  32. * akpm: A new design for ext3_sync_file().
  33. *
  34. * This is only called from sys_fsync(), sys_fdatasync() and sys_msync().
  35. * There cannot be a transaction open by this task.
  36. * Another task could have dirtied this inode. Its data can be in any
  37. * state in the journalling system.
  38. *
  39. * What we do is just kick off a commit and wait on it. This will snapshot the
  40. * inode to disk.
  41. */
  42. int ext3_sync_file(struct file * file, struct dentry *dentry, int datasync)
  43. {
  44. struct inode *inode = dentry->d_inode;
  45. int ret = 0;
  46. J_ASSERT(ext3_journal_current_handle() == NULL);
  47. /*
  48. * data=writeback:
  49. * The caller's filemap_fdatawrite()/wait will sync the data.
  50. * sync_inode() will sync the metadata
  51. *
  52. * data=ordered:
  53. * The caller's filemap_fdatawrite() will write the data and
  54. * sync_inode() will write the inode if it is dirty. Then the caller's
  55. * filemap_fdatawait() will wait on the pages.
  56. *
  57. * data=journal:
  58. * filemap_fdatawrite won't do anything (the buffers are clean).
  59. * ext3_force_commit will write the file data into the journal and
  60. * will wait on that.
  61. * filemap_fdatawait() will encounter a ton of newly-dirtied pages
  62. * (they were dirtied by commit). But that's OK - the blocks are
  63. * safe in-journal, which is all fsync() needs to ensure.
  64. */
  65. if (ext3_should_journal_data(inode)) {
  66. ret = ext3_force_commit(inode->i_sb);
  67. goto out;
  68. }
  69. /*
  70. * The VFS has written the file data. If the inode is unaltered
  71. * then we need not start a commit.
  72. */
  73. if (inode->i_state & (I_DIRTY_SYNC|I_DIRTY_DATASYNC)) {
  74. struct writeback_control wbc = {
  75. .sync_mode = WB_SYNC_ALL,
  76. .nr_to_write = 0, /* sys_fsync did this */
  77. };
  78. ret = sync_inode(inode, &wbc);
  79. }
  80. out:
  81. return ret;
  82. }