Commit 03e6e25b authored by Anton Altaparmakov's avatar Anton Altaparmakov

NTFS: Implement extension of resident files in the regular file write code

      paths (fs/ntfs/aops.c::ntfs_{prepare,commit}_write()).  At present
      this only works until the data attribute becomes too big for the mft
      record after which we abort the write returning -EOPNOTSUPP from
      ntfs_prepare_write().
Signed-off-by: default avatarAnton Altaparmakov <aia21@cantab.net>
parent d5f47dbd
......@@ -45,6 +45,11 @@ ToDo/Notes:
- In fs/ntfs/aops.c::ntfs_writepage(), if t he page is fully outside
i_size, i.e. race with truncate, invalidate the buffers on the page
so that they become freeable and hence the page does not leak.
- Implement extension of resident files in the regular file write code
paths (fs/ntfs/aops.c::ntfs_{prepare,commit}_write()). At present
this only works until the data attribute becomes too big for the mft
record after which we abort the write returning -EOPNOTSUPP from
ntfs_prepare_write().
2.1.21 - Fix some races and bugs, rewrite mft write code, add mft allocator.
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment