[PATCH 3/12] maps4: move is_swap_pte

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Matt Mackall
Date: Friday, October 26, 2007 - 9:36 am

Move is_swap_pte helper function to swapops.h for use by pagemap code

Signed-off-by: Matt Mackall <mpm@selenic.com>

Index: l/include/linux/swapops.h
===================================================================
--- l.orig/include/linux/swapops.h	2007-10-09 17:36:25.000000000 -0500
+++ l/include/linux/swapops.h	2007-10-10 11:46:34.000000000 -0500
@@ -42,6 +42,12 @@ static inline pgoff_t swp_offset(swp_ent
 	return entry.val & SWP_OFFSET_MASK(entry);
 }
 
+/* check whether a pte points to a swap entry */
+static inline int is_swap_pte(pte_t pte)
+{
+	return !pte_none(pte) && !pte_present(pte) && !pte_file(pte);
+}
+
 /*
  * Convert the arch-dependent pte representation of a swp_entry_t into an
  * arch-independent swp_entry_t.
Index: l/mm/migrate.c
===================================================================
--- l.orig/mm/migrate.c	2007-10-09 17:37:59.000000000 -0500
+++ l/mm/migrate.c	2007-10-10 11:46:34.000000000 -0500
@@ -114,11 +114,6 @@ int putback_lru_pages(struct list_head *
 	return count;
 }
 
-static inline int is_swap_pte(pte_t pte)
-{
-	return !pte_none(pte) && !pte_present(pte) && !pte_file(pte);
-}
-
 /*
  * Restore a potential migration pte to a working pte entry
  */
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 0/12] maps4: pagemap monitoring v4, Matt Mackall, (Fri Oct 26, 9:36 am)
[PATCH 3/12] maps4: move is_swap_pte, Matt Mackall, (Fri Oct 26, 9:36 am)
[PATCH 4/12] maps4: introduce a generic page walker, Matt Mackall, (Fri Oct 26, 9:36 am)
[PATCH 7/12] maps4: move clear_refs code to task_mmu.c, Matt Mackall, (Fri Oct 26, 9:36 am)
[PATCH 8/12] maps4: regroup task_mmu by interface, Matt Mackall, (Fri Oct 26, 9:36 am)
[PATCH 9/12] maps4: add /proc/pid/pagemap interface, Matt Mackall, (Fri Oct 26, 9:36 am)
[PATCH 10/12] maps4: add /proc/kpagecount interface, Matt Mackall, (Fri Oct 26, 9:36 am)
[PATCH 11/12] maps4: add /proc/kpageflags interface, Matt Mackall, (Fri Oct 26, 9:36 am)