* [PATCH] cgroups: make messages more readable
@ 2009-04-28 20:53 Randy Dunlap
[not found] ` <49F76CC4.8050200-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Randy Dunlap @ 2009-04-28 20:53 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
Paul Menage, Andrew Morton
From: Randy Dunlap <randy.dunlap-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
Fix some cgroup messages to read better.
Update MAINTAINERS to include mm/*cgroup* files.
Signed-off-by: Randy Dunlap <randy.dunlap-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
---
MAINTAINERS | 1 +
mm/page_cgroup.c | 14 +++++++-------
2 files changed, 8 insertions(+), 7 deletions(-)
--- lnx-2630-rc3.orig/mm/page_cgroup.c
+++ lnx-2630-rc3/mm/page_cgroup.c
@@ -83,12 +83,12 @@ void __init page_cgroup_init(void)
goto fail;
}
printk(KERN_INFO "allocated %ld bytes of page_cgroup\n", total_usage);
- printk(KERN_INFO "please try cgroup_disable=memory option if you"
- " don't want\n");
+ printk(KERN_INFO "please try 'cgroup_disable=memory' option if you"
+ " don't want memory cgroups\n");
return;
fail:
- printk(KERN_CRIT "allocation of page_cgroup was failed.\n");
- printk(KERN_CRIT "please try cgroup_disable=memory boot option\n");
+ printk(KERN_CRIT "allocation of page_cgroup failed.\n");
+ printk(KERN_CRIT "please try 'cgroup_disable=memory' boot option\n");
panic("Out of memory");
}
@@ -257,14 +257,14 @@ void __init page_cgroup_init(void)
fail = init_section_page_cgroup(pfn);
}
if (fail) {
- printk(KERN_CRIT "try cgroup_disable=memory boot option\n");
+ printk(KERN_CRIT "try 'cgroup_disable=memory' boot option\n");
panic("Out of memory");
} else {
hotplug_memory_notifier(page_cgroup_callback, 0);
}
printk(KERN_INFO "allocated %ld bytes of page_cgroup\n", total_usage);
- printk(KERN_INFO "please try cgroup_disable=memory option if you don't"
- " want\n");
+ printk(KERN_INFO "please try 'cgroup_disable=memory' option if you don't"
+ " want memory cgroups\n");
}
void __meminit pgdat_page_cgroup_init(struct pglist_data *pgdat)
--- lnx-2630-rc3.orig/MAINTAINERS
+++ lnx-2630-rc3/MAINTAINERS
@@ -1519,6 +1519,7 @@ L: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
S: Maintained
F: include/linux/cgroup*
F: kernel/cgroup*
+F: mm/*cgroup*
CORETEMP HARDWARE MONITORING DRIVER
P: Rudolf Marek
^ permalink raw reply [flat|nested] 2+ messages in thread[parent not found: <49F76CC4.8050200-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>]
* Re: [PATCH] cgroups: make messages more readable [not found] ` <49F76CC4.8050200-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org> @ 2009-05-04 1:28 ` Li Zefan 0 siblings, 0 replies; 2+ messages in thread From: Li Zefan @ 2009-05-04 1:28 UTC (permalink / raw) To: Randy Dunlap Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Paul Menage, Linux Kernel Mailing List, Andrew Morton (sorry for the delayed reply) Randy Dunlap wrote: > From: Randy Dunlap <randy.dunlap-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org> > > Fix some cgroup messages to read better. > Update MAINTAINERS to include mm/*cgroup* files. > > Signed-off-by: Randy Dunlap <randy.dunlap-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org> > --- > MAINTAINERS | 1 + > mm/page_cgroup.c | 14 +++++++------- > 2 files changed, 8 insertions(+), 7 deletions(-) > > --- lnx-2630-rc3.orig/mm/page_cgroup.c > +++ lnx-2630-rc3/mm/page_cgroup.c > @@ -83,12 +83,12 @@ void __init page_cgroup_init(void) > goto fail; > } > printk(KERN_INFO "allocated %ld bytes of page_cgroup\n", total_usage); > - printk(KERN_INFO "please try cgroup_disable=memory option if you" > - " don't want\n"); > + printk(KERN_INFO "please try 'cgroup_disable=memory' option if you" > + " don't want memory cgroups\n"); > return; > fail: > - printk(KERN_CRIT "allocation of page_cgroup was failed.\n"); > - printk(KERN_CRIT "please try cgroup_disable=memory boot option\n"); > + printk(KERN_CRIT "allocation of page_cgroup failed.\n"); > + printk(KERN_CRIT "please try 'cgroup_disable=memory' boot option\n"); > panic("Out of memory"); > } > > @@ -257,14 +257,14 @@ void __init page_cgroup_init(void) > fail = init_section_page_cgroup(pfn); > } > if (fail) { > - printk(KERN_CRIT "try cgroup_disable=memory boot option\n"); > + printk(KERN_CRIT "try 'cgroup_disable=memory' boot option\n"); > panic("Out of memory"); > } else { > hotplug_memory_notifier(page_cgroup_callback, 0); > } > printk(KERN_INFO "allocated %ld bytes of page_cgroup\n", total_usage); > - printk(KERN_INFO "please try cgroup_disable=memory option if you don't" > - " want\n"); > + printk(KERN_INFO "please try 'cgroup_disable=memory' option if you don't" > + " want memory cgroups\n"); > } > > void __meminit pgdat_page_cgroup_init(struct pglist_data *pgdat) > --- lnx-2630-rc3.orig/MAINTAINERS > +++ lnx-2630-rc3/MAINTAINERS > @@ -1519,6 +1519,7 @@ L: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org > S: Maintained > F: include/linux/cgroup* > F: kernel/cgroup* May be we should fix it like this: F: include/linux/cgroup.h F: kernel/cgroup.c F: kernel/cgroup_debug.c ? Since the authors of kernel/cgroup_freezer.c are Matt Helsley <matthltc-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org> and Cedric Le Goater <clg-NmTC/0ZBporQT0dZR+AlfA@public.gmane.org>. And the author of net/sched/cls_cgroup.c is Thomas Graf <tgraf-G/eBtMaohhA@public.gmane.org>, And the maintainer of kernel/ns_cgroup.c and security/device_cgroup.c is Serge E. Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>. > +F: mm/*cgroup* > And this belongs to memory resource controller (grep 'MEMORY RESOURCE CONTROLLER' in MAINTAINERS). The maintainers of mm/page_cgroup.c and mm/memcontrol.c are Balbir and Kamezawa. > CORETEMP HARDWARE MONITORING DRIVER > P: Rudolf Marek > > ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-05-04 1:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-28 20:53 [PATCH] cgroups: make messages more readable Randy Dunlap
[not found] ` <49F76CC4.8050200-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2009-05-04 1:28 ` Li Zefan
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox