diff options
Diffstat (limited to 'fs/ntfs/inode.c')
| -rw-r--r-- | fs/ntfs/inode.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/fs/ntfs/inode.c b/fs/ntfs/inode.c index 5f4b23d213b9..73791b2d9495 100644 --- a/fs/ntfs/inode.c +++ b/fs/ntfs/inode.c | |||
| @@ -3064,9 +3064,12 @@ int ntfs_write_inode(struct inode *vi, int sync) | |||
| 3064 | * record will be cleaned and written out to disk below, i.e. before | 3064 | * record will be cleaned and written out to disk below, i.e. before |
| 3065 | * this function returns. | 3065 | * this function returns. |
| 3066 | */ | 3066 | */ |
| 3067 | if (modified && !NInoTestSetDirty(ctx->ntfs_ino)) | 3067 | if (modified) { |
| 3068 | mark_ntfs_record_dirty(ctx->ntfs_ino->page, | 3068 | flush_dcache_mft_record_page(ctx->ntfs_ino); |
| 3069 | ctx->ntfs_ino->page_ofs); | 3069 | if (!NInoTestSetDirty(ctx->ntfs_ino)) { |
| 3070 | mark_ntfs_record_dirty(ctx->ntfs_ino->page, | ||
| 3071 | ctx->ntfs_ino->page_ofs); | ||
| 3072 | } | ||
| 3070 | ntfs_attr_put_search_ctx(ctx); | 3073 | ntfs_attr_put_search_ctx(ctx); |
| 3071 | /* Now the access times are updated, write the base mft record. */ | 3074 | /* Now the access times are updated, write the base mft record. */ |
| 3072 | if (NInoDirty(ni)) | 3075 | if (NInoDirty(ni)) |
