Commit 726b8012 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

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: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1cdf25d7
...@@ -605,9 +605,12 @@ static inline struct address_space *page_mapping(struct page *page) ...@@ -605,9 +605,12 @@ static inline struct address_space *page_mapping(struct page *page)
struct address_space *mapping = page->mapping; struct address_space *mapping = page->mapping;
VM_BUG_ON(PageSlab(page)); VM_BUG_ON(PageSlab(page));
#ifdef CONFIG_SWAP
if (unlikely(PageSwapCache(page))) if (unlikely(PageSwapCache(page)))
mapping = &swapper_space; mapping = &swapper_space;
else if (unlikely((unsigned long)mapping & PAGE_MAPPING_ANON)) else
#endif
if (unlikely((unsigned long)mapping & PAGE_MAPPING_ANON))
mapping = NULL; mapping = NULL;
return mapping; return mapping;
} }
......
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