* [PATCH] [mmotm 0113] memcg: fix compile error
@ 2010-01-14 5:54 KOSAKI Motohiro
0 siblings, 0 replies; only message in thread
From: KOSAKI Motohiro @ 2010-01-14 5:54 UTC (permalink / raw)
To: LKML, linux-mm, Andrew Morton, KAMEZAWA Hiroyuki, Daisuke Nishimura
Cc: kosaki.motohiro
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@jp.fujitsu.com>
---
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, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-01-14 5:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-01-14 5:54 [PATCH] [mmotm 0113] memcg: fix compile error KOSAKI Motohiro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox