Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23337
b: refs/heads/master
c: 78264bd
h: refs/heads/master
i:
  23335: 0ade70c
v: v3
  • Loading branch information
Anton Altaparmakov committed Mar 23, 2006
1 parent 32acc35 commit 8037c3a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3ccc7384db3d762e834dfdae13c1d6434b2fdeab
refs/heads/master: 78264bd9c239237fe356c32d08abf8e52a2d8737
4 changes: 3 additions & 1 deletion trunk/fs/ntfs/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@ ToDo/Notes:
- Enable the code for setting the NT4 compatibility flag when we start
making NTFS 1.2 specific modifications.

2.1.27 - Various bug fixes.
2.1.27 - Various bug fixes and cleanups.

- Fix two compiler warnings on Alpha. Thanks to Andrew Morton for
reporting them.
- Fix an (innocent) off-by-one error in the runlist code.
- Fix a buggette in an "should be impossible" case handling where we
continued the attribute lookup loop instead of aborting it.
- Use buffer_migrate_page() for the ->migratepage function of all ntfs
address space operations.

2.1.26 - Minor bug fixes and updates.

Expand Down
7 changes: 7 additions & 0 deletions trunk/fs/ntfs/aops.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*/

#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/pagemap.h>
#include <linux/swap.h>
Expand Down Expand Up @@ -1551,6 +1552,9 @@ struct address_space_operations ntfs_aops = {
#ifdef NTFS_RW
.writepage = ntfs_writepage, /* Write dirty page to disk. */
#endif /* NTFS_RW */
.migratepage = buffer_migrate_page, /* Move a page cache page from
one physical page to an
other. */
};

/**
Expand All @@ -1567,6 +1571,9 @@ struct address_space_operations ntfs_mst_aops = {
without touching the buffers
belonging to the page. */
#endif /* NTFS_RW */
.migratepage = buffer_migrate_page, /* Move a page cache page from
one physical page to an
other. */
};

#ifdef NTFS_RW
Expand Down

0 comments on commit 8037c3a

Please sign in to comment.