[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20100114145006.672D.A69D9226@jp.fujitsu.com>
Date: Thu, 14 Jan 2010 14:54:44 +0900 (JST)
From: KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>
To: LKML <linux-kernel@...r.kernel.org>, linux-mm <linux-mm@...ck.org>,
Andrew Morton <akpm@...ux-foundation.org>,
KAMEZAWA Hiroyuki <kamezawa.hiroyu@...fujitsu.com>,
Daisuke Nishimura <nishimura@....nes.nec.co.jp>
Cc: kosaki.motohiro@...fujitsu.com
Subject: [PATCH] [mmotm 0113] memcg: fix compile error
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@...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 from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists