[PATCH] [mmotm 0113] memcg: fix compile error

From: KOSAKI Motohiro
Date: Thu Jan 14 2010 - 00:55:22 EST



This issue was introduced by memcg-move-charges-of-anonymous-swap.patch.

=================================
Now, ia64 can't compile page_cgroup.c.
because it include asm/cmpxhg.h but almost arch don't have arch specific
cmpxhg.h. they use asm-generic/cmpxhg.h.

Then, following errror occur.

CC mm/page_cgroup.o
mm/page_cgroup.c:12:25: error: asm/cmpxchg.h: No such file or
directory
make[1]: *** [mm/page_cgroup.o] Error 1
make: *** [mm] Error 2

Fortunately, memcg code don't use low layer cmpxchg directly. thus
this patch remove this include line simply.

Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@xxxxxxxxxxxxxx>
---
mm/page_cgroup.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/mm/page_cgroup.c b/mm/page_cgroup.c
index 213b0ee..3dd8853 100644
--- a/mm/page_cgroup.c
+++ b/mm/page_cgroup.c
@@ -9,7 +9,6 @@
#include <linux/vmalloc.h>
#include <linux/cgroup.h>
#include <linux/swapops.h>
-#include <asm/cmpxchg.h>

static void __meminit
__init_page_cgroup(struct page_cgroup *pc, unsigned long pfn)
--
1.6.5.2



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/