From: Michal Hocko <mhocko@suse.cz>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Sha Zhengju <handai.szj@gmail.com>,
cgroups@vger.kernel.org, kamezawa.hiroyu@jp.fujitsu.com,
rientjes@google.com, linux-mm@kvack.org,
Sha Zhengju <handai.szj@taobao.com>
Subject: Re: [PATCH V5] memcg, oom: provide more precise dump info while memcg oom happening
Date: Thu, 20 Dec 2012 14:15:31 +0100 [thread overview]
Message-ID: <20121220131531.GB31912@dhcp22.suse.cz> (raw)
In-Reply-To: <20121219141218.c1bb423b.akpm@linux-foundation.org>
On Wed 19-12-12 14:12:18, Andrew Morton wrote:
> On Wed, 19 Dec 2012 21:51:01 +0800
> Sha Zhengju <handai.szj@gmail.com> wrote:
>
> > + pr_info("Memory cgroup stats");
>
> Well if we're going to do that, we may as well finish the job:
>
>
> From: Andrew Morton <akpm@linux-foundation.org>
> Subject: mm/memcontrol.c: convert printk(KERN_FOO) to pr_foo()
>
> Cc: Sha Zhengju <handai.szj@taobao.com>
> Cc: Michal Hocko <mhocko@suse.cz>
> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
> Cc: David Rientjes <rientjes@google.com>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Thanks Andrew!
Acked-by: Michal Hocko <mhocko@suse.cz>
> ---
>
> mm/memcontrol.c | 15 +++++++--------
> 1 file changed, 7 insertions(+), 8 deletions(-)
>
> diff -puN mm/memcontrol.c~mm-memcontrolc-convert-printkkern_foo-to-pr_foo mm/memcontrol.c
> --- a/mm/memcontrol.c~mm-memcontrolc-convert-printkkern_foo-to-pr_foo
> +++ a/mm/memcontrol.c
> @@ -1574,7 +1574,7 @@ void mem_cgroup_print_oom_info(struct me
> }
> rcu_read_unlock();
>
> - printk(KERN_INFO "Task in %s killed", memcg_name);
> + pr_info("Task in %s killed", memcg_name);
>
> rcu_read_lock();
> ret = cgroup_path(mem_cgrp, memcg_name, PATH_MAX);
> @@ -1587,19 +1587,18 @@ void mem_cgroup_print_oom_info(struct me
> /*
> * Continues from above, so we don't need an KERN_ level
> */
> - printk(KERN_CONT " as a result of limit of %s\n", memcg_name);
> + pr_cont(" as a result of limit of %s\n", memcg_name);
> done:
>
> - printk(KERN_INFO "memory: usage %llukB, limit %llukB, failcnt %llu\n",
> + pr_info("memory: usage %llukB, limit %llukB, failcnt %llu\n",
> res_counter_read_u64(&memcg->res, RES_USAGE) >> 10,
> res_counter_read_u64(&memcg->res, RES_LIMIT) >> 10,
> res_counter_read_u64(&memcg->res, RES_FAILCNT));
> - printk(KERN_INFO "memory+swap: usage %llukB, limit %llukB, "
> - "failcnt %llu\n",
> + pr_info("memory+swap: usage %llukB, limit %llukB, failcnt %llu\n",
> res_counter_read_u64(&memcg->memsw, RES_USAGE) >> 10,
> res_counter_read_u64(&memcg->memsw, RES_LIMIT) >> 10,
> res_counter_read_u64(&memcg->memsw, RES_FAILCNT));
> - printk(KERN_INFO "kmem: usage %llukB, limit %llukB, failcnt %llu\n",
> + pr_info("kmem: usage %llukB, limit %llukB, failcnt %llu\n",
> res_counter_read_u64(&memcg->kmem, RES_USAGE) >> 10,
> res_counter_read_u64(&memcg->kmem, RES_LIMIT) >> 10,
> res_counter_read_u64(&memcg->kmem, RES_FAILCNT));
> @@ -4424,8 +4423,8 @@ void mem_cgroup_print_bad_page(struct pa
>
> pc = lookup_page_cgroup_used(page);
> if (pc) {
> - printk(KERN_ALERT "pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
> - pc, pc->flags, pc->mem_cgroup);
> + pr_alert("pc:%p pc->flags:%lx pc->mem_cgroup:%p\n",
> + pc, pc->flags, pc->mem_cgroup);
> }
> }
> #endif
> _
>
--
Michal Hocko
SUSE Labs
--
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>
next prev parent reply other threads:[~2012-12-20 13:15 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-19 13:51 Sha Zhengju
2012-12-19 15:07 ` Michal Hocko
2012-12-19 22:12 ` Andrew Morton
2012-12-20 13:15 ` Michal Hocko [this message]
2012-12-21 3:55 ` Sha Zhengju
2012-12-19 22:42 ` David Rientjes
2012-12-21 3:40 ` Sha Zhengju
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20121220131531.GB31912@dhcp22.suse.cz \
--to=mhocko@suse.cz \
--cc=akpm@linux-foundation.org \
--cc=cgroups@vger.kernel.org \
--cc=handai.szj@gmail.com \
--cc=handai.szj@taobao.com \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=linux-mm@kvack.org \
--cc=rientjes@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox