* Re: mmotm 2008-10-16-00-52 uploaded (cgroup + mm)
[not found] <200810160758.m9G7wZmt018529@imap1.linux-foundation.org>
@ 2008-10-16 21:01 ` Randy.Dunlap
2008-10-17 0:30 ` KAMEZAWA Hiroyuki
0 siblings, 1 reply; 3+ messages in thread
From: Randy.Dunlap @ 2008-10-16 21:01 UTC (permalink / raw)
To: linux-kernel; +Cc: linux-mm
On Thu, 16 Oct 2008, akpm@linux-foundation.org wrote:
> The mm-of-the-moment snapshot 2008-10-16-00-52 has been uploaded to
>
> http://userweb.kernel.org/~akpm/mmotm/
>
> It contains the following patches against 2.6.27:
build-r9168.out:(.text+0x261e6): undefined reference to `lookup_page_cgroup'
build-r9168.out:memcontrol.c:(.text+0x2629f): undefined reference to `lookup_page_cgroup'
build-r9168.out:memcontrol.c:(.text+0x2671a): undefined reference to `lookup_page_cgroup'
build-r9168.out:(.text+0x268f9): undefined reference to `lookup_page_cgroup'
build-r9168.out:memcontrol.c:(.text+0x26e52): undefined reference to `page_cgroup_init'
build-r9168.out:(.text+0x26f44): undefined reference to `lookup_page_cgroup'
build-r9168.out:(.init.text+0xe42): undefined reference to `pgdat_page_cgroup_init'
.config is at http://oss.oracle.com/~rdunlap/kerneltest/configs/config-r9168
--
~Randy
--
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] 3+ messages in thread
* Re: mmotm 2008-10-16-00-52 uploaded (cgroup + mm)
2008-10-16 21:01 ` mmotm 2008-10-16-00-52 uploaded (cgroup + mm) Randy.Dunlap
@ 2008-10-17 0:30 ` KAMEZAWA Hiroyuki
2008-10-17 1:50 ` [mmotm][PATCH] memcg-allocate-all-page_cgroup-at-boot-fix.patch KAMEZAWA Hiroyuki
0 siblings, 1 reply; 3+ messages in thread
From: KAMEZAWA Hiroyuki @ 2008-10-17 0:30 UTC (permalink / raw)
To: Randy.Dunlap; +Cc: linux-kernel, linux-mm
On Thu, 16 Oct 2008 14:01:48 -0700 (PDT)
"Randy.Dunlap" <rdunlap@xenotime.net> wrote:
> On Thu, 16 Oct 2008, akpm@linux-foundation.org wrote:
>
> > The mm-of-the-moment snapshot 2008-10-16-00-52 has been uploaded to
> >
> > http://userweb.kernel.org/~akpm/mmotm/
> >
> > It contains the following patches against 2.6.27:
>
>
> build-r9168.out:(.text+0x261e6): undefined reference to `lookup_page_cgroup'
> build-r9168.out:memcontrol.c:(.text+0x2629f): undefined reference to `lookup_page_cgroup'
> build-r9168.out:memcontrol.c:(.text+0x2671a): undefined reference to `lookup_page_cgroup'
> build-r9168.out:(.text+0x268f9): undefined reference to `lookup_page_cgroup'
> build-r9168.out:memcontrol.c:(.text+0x26e52): undefined reference to `page_cgroup_init'
> build-r9168.out:(.text+0x26f44): undefined reference to `lookup_page_cgroup'
> build-r9168.out:(.init.text+0xe42): undefined reference to `pgdat_page_cgroup_init'
>
>
> .config is at http://oss.oracle.com/~rdunlap/kerneltest/configs/config-r9168
>
Ouch...
Hmm....it seems
memcg-allocate-all-page_cgroup-at-boot.patch doesn't includes changes to Makefile...
Thank you for report. I'll send a fix soon.
Regards,
-Kame
--
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] 3+ messages in thread
* [mmotm][PATCH] memcg-allocate-all-page_cgroup-at-boot-fix.patch
2008-10-17 0:30 ` KAMEZAWA Hiroyuki
@ 2008-10-17 1:50 ` KAMEZAWA Hiroyuki
0 siblings, 0 replies; 3+ messages in thread
From: KAMEZAWA Hiroyuki @ 2008-10-17 1:50 UTC (permalink / raw)
To: akpm; +Cc: Randy.Dunlap, linux-kernel, linux-mm
On Fri, 17 Oct 2008 09:30:46 +0900
KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> wrote:
> Hmm....it seems
>
> memcg-allocate-all-page_cgroup-at-boot.patch doesn't includes changes to Makefile...
>
> Thank you for report. I'll send a fix soon.
>
This is a fix. for this.
Confirmed vmlinux can be compiled with the config.
(but need to turn off CONFIG_HID_SUPPORT..and found small troube in /samples
directory's Makefile.
-Kame
==
compile fix to memcg-allocate-all-page_cgroup-at-boot.patch
Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
mm/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: linux-2.6.27/mm/Makefile
===================================================================
--- linux-2.6.27.orig/mm/Makefile
+++ linux-2.6.27/mm/Makefile
@@ -33,5 +33,5 @@ obj-$(CONFIG_FS_XIP) += filemap_xip.o
obj-$(CONFIG_MIGRATION) += migrate.o
obj-$(CONFIG_SMP) += allocpercpu.o
obj-$(CONFIG_QUICKLIST) += quicklist.o
-obj-$(CONFIG_CGROUP_MEM_RES_CTLR) += memcontrol.o
+obj-$(CONFIG_CGROUP_MEM_RES_CTLR) += memcontrol.o page_cgroup.o
obj-$(CONFIG_CGROUP_MEMRLIMIT_CTLR) += memrlimitcgroup.o
--
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] 3+ messages in thread
end of thread, other threads:[~2008-10-17 1:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <200810160758.m9G7wZmt018529@imap1.linux-foundation.org>
2008-10-16 21:01 ` mmotm 2008-10-16-00-52 uploaded (cgroup + mm) Randy.Dunlap
2008-10-17 0:30 ` KAMEZAWA Hiroyuki
2008-10-17 1:50 ` [mmotm][PATCH] memcg-allocate-all-page_cgroup-at-boot-fix.patch KAMEZAWA Hiroyuki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox