diff options
author | Nick Piggin <npiggin@suse.de> | 2008-04-28 05:12:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:18 -0400 |
commit | 3c18ddd160d1fcd46d1131d9ad6c594dd8e9af99 (patch) | |
tree | 7307ba1ae4bdb99d1363eb59b1ebefcf5295c8ef /mm/mincore.c | |
parent | 4d3d5b41a72b52555d43efbfc4ccde6ba6e5444f (diff) |
mm: remove nopage
Nothing in the tree uses nopage any more. Remove support for it in the
core mm code and documentation (and a few stray references to it in
comments).
Signed-off-by: Nick Piggin <npiggin@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/mincore.c')
-rw-r--r-- | mm/mincore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mincore.c b/mm/mincore.c index 5efe0ded69b1..5178800bc129 100644 --- a/mm/mincore.c +++ b/mm/mincore.c | |||
@@ -33,7 +33,7 @@ static unsigned char mincore_page(struct address_space *mapping, pgoff_t pgoff) | |||
33 | * When tmpfs swaps out a page from a file, any process mapping that | 33 | * When tmpfs swaps out a page from a file, any process mapping that |
34 | * file will not get a swp_entry_t in its pte, but rather it is like | 34 | * file will not get a swp_entry_t in its pte, but rather it is like |
35 | * any other file mapping (ie. marked !present and faulted in with | 35 | * any other file mapping (ie. marked !present and faulted in with |
36 | * tmpfs's .nopage). So swapped out tmpfs mappings are tested here. | 36 | * tmpfs's .fault). So swapped out tmpfs mappings are tested here. |
37 | * | 37 | * |
38 | * However when tmpfs moves the page from pagecache and into swapcache, | 38 | * However when tmpfs moves the page from pagecache and into swapcache, |
39 | * it is still in core, but the find_get_page below won't find it. | 39 | * it is still in core, but the find_get_page below won't find it. |