diff options
author | Dave Young <dyoung@redhat.com> | 2012-03-28 14:42:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-28 17:14:37 -0700 |
commit | c6dd897f3bfc54a44942d742d6dfa842e33d88e0 (patch) | |
tree | 4da10b4ce42b5f3b93b90578e962a1bddbfb13f1 /Documentation/vm/Makefile | |
parent | cab6b0560080c6da5107c5d7dbba6372f7b288ab (diff) | |
download | op-kernel-dev-c6dd897f3bfc54a44942d742d6dfa842e33d88e0.zip op-kernel-dev-c6dd897f3bfc54a44942d742d6dfa842e33d88e0.tar.gz |
mm: move page-types.c from Documentation to tools/vm
tools/ is the better place for vm tools which are used by many people.
Moving them to tools also make them open to more users instead of hide in
Documentation folder.
This patch moves page-types.c to tools/vm/page-types.c. Also add a
Makefile in tools/vm and fix two coding style problems: a) change const
arrary to 'const char * const', b) change a space to tab for indent.
Signed-off-by: Dave Young <dyoung@redhat.com>
Acked-by: Wu Fengguang <fengguang.wu@intel.com>
Cc: Christoph Lameter <cl@linux.com>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation/vm/Makefile')
-rw-r--r-- | Documentation/vm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/vm/Makefile b/Documentation/vm/Makefile index 3fa4d06..e538864 100644 --- a/Documentation/vm/Makefile +++ b/Documentation/vm/Makefile @@ -2,7 +2,7 @@ obj- := dummy.o # List of programs to build -hostprogs-y := page-types hugepage-mmap hugepage-shm map_hugetlb +hostprogs-y := hugepage-mmap hugepage-shm map_hugetlb # Tell kbuild to always build the programs always := $(hostprogs-y) |