summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/include/linux/page-isolation.h
diff options
context:
space:
mode:
authorSrikant Patnaik2015-01-11 12:28:04 +0530
committerSrikant Patnaik2015-01-11 12:28:04 +0530
commit871480933a1c28f8a9fed4c4d34d06c439a7a422 (patch)
tree8718f573808810c2a1e8cb8fb6ac469093ca2784 /ANDROID_3.4.5/include/linux/page-isolation.h
parent9d40ac5867b9aefe0722bc1f110b965ff294d30d (diff)
downloadFOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.gz
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.bz2
FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.zip
Moved, renamed, and deleted files
The original directory structure was scattered and unorganized. Changes are basically to make it look like kernel structure.
Diffstat (limited to 'ANDROID_3.4.5/include/linux/page-isolation.h')
-rw-r--r--ANDROID_3.4.5/include/linux/page-isolation.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/ANDROID_3.4.5/include/linux/page-isolation.h b/ANDROID_3.4.5/include/linux/page-isolation.h
deleted file mode 100644
index 051c1b1e..00000000
--- a/ANDROID_3.4.5/include/linux/page-isolation.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef __LINUX_PAGEISOLATION_H
-#define __LINUX_PAGEISOLATION_H
-
-/*
- * Changes migrate type in [start_pfn, end_pfn) to be MIGRATE_ISOLATE.
- * If specified range includes migrate types other than MOVABLE,
- * this will fail with -EBUSY.
- *
- * For isolating all pages in the range finally, the caller have to
- * free all pages in the range. test_page_isolated() can be used for
- * test it.
- */
-extern int
-start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn);
-
-/*
- * Changes MIGRATE_ISOLATE to MIGRATE_MOVABLE.
- * target range is [start_pfn, end_pfn)
- */
-extern int
-undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn);
-
-/*
- * test all pages in [start_pfn, end_pfn)are isolated or not.
- */
-extern int
-test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn);
-
-/*
- * Internal funcs.Changes pageblock's migrate type.
- * Please use make_pagetype_isolated()/make_pagetype_movable().
- */
-extern int set_migratetype_isolate(struct page *page);
-extern void unset_migratetype_isolate(struct page *page);
-
-
-#endif