aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/swapops.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/swapops.h b/include/linux/swapops.h
index 7bf2d149d209..6ec39ab27b4b 100644
--- a/include/linux/swapops.h
+++ b/include/linux/swapops.h
@@ -42,11 +42,13 @@ static inline pgoff_t swp_offset(swp_entry_t entry)
42 return entry.val & SWP_OFFSET_MASK(entry); 42 return entry.val & SWP_OFFSET_MASK(entry);
43} 43}
44 44
45#ifdef CONFIG_MMU
45/* check whether a pte points to a swap entry */ 46/* check whether a pte points to a swap entry */
46static inline int is_swap_pte(pte_t pte) 47static inline int is_swap_pte(pte_t pte)
47{ 48{
48 return !pte_none(pte) && !pte_present(pte) && !pte_file(pte); 49 return !pte_none(pte) && !pte_present(pte) && !pte_file(pte);
49} 50}
51#endif
50 52
51/* 53/*
52 * Convert the arch-dependent pte representation of a swp_entry_t into an 54 * Convert the arch-dependent pte representation of a swp_entry_t into an