diff options
-rw-r--r-- | fs/ntfs/mft.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ntfs/mft.c b/fs/ntfs/mft.c index 2831f495a674..32c523cf5a2d 100644 --- a/fs/ntfs/mft.c +++ b/fs/ntfs/mft.c | |||
@@ -381,7 +381,7 @@ unm_err_out: | |||
381 | * vfs inode dirty. This ensures that any changes to the mft record are | 381 | * vfs inode dirty. This ensures that any changes to the mft record are |
382 | * written out to disk. | 382 | * written out to disk. |
383 | * | 383 | * |
384 | * NOTE: We only set I_DIRTY_SYNC and I_DIRTY_DATASYNC (and not I_DIRTY_PAGES) | 384 | * NOTE: We only set I_DIRTY_DATASYNC (and not I_DIRTY_PAGES) |
385 | * on the base vfs inode, because even though file data may have been modified, | 385 | * on the base vfs inode, because even though file data may have been modified, |
386 | * it is dirty in the inode meta data rather than the data page cache of the | 386 | * it is dirty in the inode meta data rather than the data page cache of the |
387 | * inode, and thus there are no data pages that need writing out. Therefore, a | 387 | * inode, and thus there are no data pages that need writing out. Therefore, a |
@@ -407,7 +407,7 @@ void __mark_mft_record_dirty(ntfs_inode *ni) | |||
407 | else | 407 | else |
408 | base_ni = ni->ext.base_ntfs_ino; | 408 | base_ni = ni->ext.base_ntfs_ino; |
409 | mutex_unlock(&ni->extent_lock); | 409 | mutex_unlock(&ni->extent_lock); |
410 | __mark_inode_dirty(VFS_I(base_ni), I_DIRTY_SYNC | I_DIRTY_DATASYNC); | 410 | __mark_inode_dirty(VFS_I(base_ni), I_DIRTY_DATASYNC); |
411 | } | 411 | } |
412 | 412 | ||
413 | static const char *ntfs_please_email = "Please email " | 413 | static const char *ntfs_please_email = "Please email " |