aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mm.h
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2008-04-28 05:12:44 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-04-28 11:58:21 -0400
commit726b80127239aeea9c8d8aad5b4e2c80313e3ce8 (patch)
tree4b4df86f199f9bf9689f038132a8922f34a9c8d4 /include/linux/mm.h
parent1cdf25d704f7951d02a04064c97db547d6021872 (diff)
page_mapping(): add ifdef around reference to swapper_space
This fixes the superh build when the pageflags patches are applied. But it shouldn't unless it's a gcc bug. Cc: Christoph Lameter <clameter@sgi.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/mm.h')
-rw-r--r--include/linux/mm.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 24659ed06ba..4f3c1b2f44d 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -605,9 +605,12 @@ static inline struct address_space *page_mapping(struct page *page)
605 struct address_space *mapping = page->mapping; 605 struct address_space *mapping = page->mapping;
606 606
607 VM_BUG_ON(PageSlab(page)); 607 VM_BUG_ON(PageSlab(page));
608#ifdef CONFIG_SWAP
608 if (unlikely(PageSwapCache(page))) 609 if (unlikely(PageSwapCache(page)))
609 mapping = &swapper_space; 610 mapping = &swapper_space;
610 else if (unlikely((unsigned long)mapping & PAGE_MAPPING_ANON)) 611 else
612#endif
613 if (unlikely((unsigned long)mapping & PAGE_MAPPING_ANON))
611 mapping = NULL; 614 mapping = NULL;
612 return mapping; 615 return mapping;
613} 616}