diff options
author | Kirill A. Shutemov <kirill.shutemov@linux.intel.com> | 2016-04-01 08:29:48 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-04-04 13:41:08 -0400 |
commit | ea1754a084760e68886f5b725c8eaada9cc57155 (patch) | |
tree | 2e14936a959a661ee68d4490cb9b82b94bb27ab9 /Documentation/filesystems/vfs.txt | |
parent | 09cbfeaf1a5a67bfb3201e0c83c810cecb2efa5a (diff) |
mm, fs: remove remaining PAGE_CACHE_* and page_cache_{get,release} usage
Mostly direct substitution with occasional adjustment or removing
outdated comments.
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation/filesystems/vfs.txt')
-rw-r--r-- | Documentation/filesystems/vfs.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt index b02a7d598258..4164bd6397a2 100644 --- a/Documentation/filesystems/vfs.txt +++ b/Documentation/filesystems/vfs.txt | |||
@@ -708,9 +708,9 @@ struct address_space_operations { | |||
708 | from the address space. This generally corresponds to either a | 708 | from the address space. This generally corresponds to either a |
709 | truncation, punch hole or a complete invalidation of the address | 709 | truncation, punch hole or a complete invalidation of the address |
710 | space (in the latter case 'offset' will always be 0 and 'length' | 710 | space (in the latter case 'offset' will always be 0 and 'length' |
711 | will be PAGE_CACHE_SIZE). Any private data associated with the page | 711 | will be PAGE_SIZE). Any private data associated with the page |
712 | should be updated to reflect this truncation. If offset is 0 and | 712 | should be updated to reflect this truncation. If offset is 0 and |
713 | length is PAGE_CACHE_SIZE, then the private data should be released, | 713 | length is PAGE_SIZE, then the private data should be released, |
714 | because the page must be able to be completely discarded. This may | 714 | because the page must be able to be completely discarded. This may |
715 | be done by calling the ->releasepage function, but in this case the | 715 | be done by calling the ->releasepage function, but in this case the |
716 | release MUST succeed. | 716 | release MUST succeed. |