aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/swapops.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/swapops.h')
-rw-r--r--include/linux/swapops.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/swapops.h b/include/linux/swapops.h
index 15bdb6fe71e5..877fd239b6ff 100644
--- a/include/linux/swapops.h
+++ b/include/linux/swapops.h
@@ -6,6 +6,8 @@
6#include <linux/bug.h> 6#include <linux/bug.h>
7#include <linux/mm_types.h> 7#include <linux/mm_types.h>
8 8
9#ifdef CONFIG_MMU
10
9/* 11/*
10 * swapcache pages are stored in the swapper_space radix tree. We want to 12 * swapcache pages are stored in the swapper_space radix tree. We want to
11 * get good packing density in that tree, so the index should be dense in 13 * get good packing density in that tree, so the index should be dense in
@@ -50,13 +52,11 @@ static inline pgoff_t swp_offset(swp_entry_t entry)
50 return entry.val & SWP_OFFSET_MASK; 52 return entry.val & SWP_OFFSET_MASK;
51} 53}
52 54
53#ifdef CONFIG_MMU
54/* check whether a pte points to a swap entry */ 55/* check whether a pte points to a swap entry */
55static inline int is_swap_pte(pte_t pte) 56static inline int is_swap_pte(pte_t pte)
56{ 57{
57 return !pte_none(pte) && !pte_present(pte); 58 return !pte_none(pte) && !pte_present(pte);
58} 59}
59#endif
60 60
61/* 61/*
62 * Convert the arch-dependent pte representation of a swp_entry_t into an 62 * Convert the arch-dependent pte representation of a swp_entry_t into an
@@ -360,4 +360,5 @@ static inline int non_swap_entry(swp_entry_t entry)
360} 360}
361#endif 361#endif
362 362
363#endif /* CONFIG_MMU */
363#endif /* _LINUX_SWAPOPS_H */ 364#endif /* _LINUX_SWAPOPS_H */