linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Balbir Singh <balbir@linux.vnet.ibm.com>
To: Ying Han <yinghan@google.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
	Minchan Kim <minchan.kim@gmail.com>,
	Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>,
	Tejun Heo <tj@kernel.org>, Pavel Emelyanov <xemul@openvz.org>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Li Zefan <lizf@cn.fujitsu.com>, Mel Gorman <mel@csn.ul.ie>,
	Christoph Lameter <cl@linux.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	Rik van Riel <riel@redhat.com>, Hugh Dickins <hughd@google.com>,
	Michal Hocko <mhocko@suse.cz>,
	Dave Hansen <dave@linux.vnet.ibm.com>,
	Zhu Yanhai <zhu.yanhai@gmail.com>,
	Andi Kleen <andi@firstfloor.org>,
	linux-mm@kvack.org
Subject: Re: [PATCH V2] Eliminate task stack trace duplication.
Date: Fri, 6 May 2011 11:51:32 +0530	[thread overview]
Message-ID: <20110506062130.GB2970@balbir.in.ibm.com> (raw)
In-Reply-To: <BANLkTi=2h-D8n-0u7iEmt=GSxFK5upBW6Q@mail.gmail.com>

* Ying Han <yinghan@google.com> [2011-05-05 10:17:36]:

> On Thu, May 5, 2011 at 2:21 AM, Balbir Singh <balbir@linux.vnet.ibm.com> wrote:
> > * Ying Han <yinghan@google.com> [2011-05-04 10:14:04]:
> >
> >> The problem with small dmesg ring buffer like 512k is that only limited number
> >> of task traces will be logged. Sometimes we lose important information only
> >> because of too many duplicated stack traces.
> >>
> >> This patch tries to reduce the duplication of task stack trace in the dump
> >> message by hashing the task stack. The hashtable is a 32k pre-allocated buffer
> >> during bootup. Then we hash the task stack with stack_depth 32 for each stack
> >> entry. Each time if we find the identical task trace in the task stack, we dump
> >> only the pid of the task which has the task trace dumped. So it is easy to back
> >> track to the full stack with the pid.
> >>
> >> [   58.469730] kworker/0:0     S 0000000000000000     0     4      2 0x00000000
> >> [   58.469735]  ffff88082fcfde80 0000000000000046 ffff88082e9d8000 ffff88082fcfc010
> >> [   58.469739]  ffff88082fce9860 0000000000011440 ffff88082fcfdfd8 ffff88082fcfdfd8
> >> [   58.469743]  0000000000011440 0000000000000000 ffff88082fcee180 ffff88082fce9860
> >> [   58.469747] Call Trace:
> >> [   58.469751]  [<ffffffff8108525a>] worker_thread+0x24b/0x250
> >> [   58.469754]  [<ffffffff8108500f>] ? manage_workers+0x192/0x192
> >> [   58.469757]  [<ffffffff810885bd>] kthread+0x82/0x8a
> >> [   58.469760]  [<ffffffff8141aed4>] kernel_thread_helper+0x4/0x10
> >> [   58.469763]  [<ffffffff8108853b>] ? kthread_worker_fn+0x112/0x112
> >> [   58.469765]  [<ffffffff8141aed0>] ? gs_change+0xb/0xb
> >> [   58.469768] kworker/u:0     S 0000000000000004     0     5      2 0x00000000
> >> [   58.469773]  ffff88082fcffe80 0000000000000046 ffff880800000000 ffff88082fcfe010
> >> [   58.469777]  ffff88082fcea080 0000000000011440 ffff88082fcfffd8 ffff88082fcfffd8
> >> [   58.469781]  0000000000011440 0000000000000000 ffff88082fd4e9a0 ffff88082fcea080
> >> [   58.469785] Call Trace:
> >> [   58.469786] <Same stack as pid 4>
> >> [   58.470235] kworker/0:1     S 0000000000000000     0    13      2 0x00000000
> >> [   58.470255]  ffff88082fd3fe80 0000000000000046 ffff880800000000 ffff88082fd3e010
> >> [   58.470279]  ffff88082fcee180 0000000000011440 ffff88082fd3ffd8 ffff88082fd3ffd8
> >> [   58.470301]  0000000000011440 0000000000000000 ffffffff8180b020 ffff88082fcee180
> >> [   58.470325] Call Trace:
> >> [   58.470332] <Same stack as pid 4>
> >
> > Given that pid's can be reused, I wonder if in a large time window the
> > output can be confusing? The dmesg ring buffer can be scaled with a
> > config option .. (CONFIG_LOG_BUF_LEN??)
> 
> yes, we can always configure it to a larger value. however, it depends
> how much duplications you might have and the buffer can be easily
> filled up. this patch is useful which we can keep the same ring buffer
> size but get more information out of by only doing
> dedup of task stacks.
>

The dedup has a cost, given large memory systems and the ability
to process some of these things in user space, does it make sense to
do it there?  Just a thought, since I've not seen a whole lot of
duplication.

-- 
	Three Cheers,
	Balbir

--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2011-05-06  6:30 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-04 17:14 Ying Han
2011-05-05  9:21 ` Balbir Singh
2011-05-05 17:17   ` Ying Han
2011-05-06  6:21     ` Balbir Singh [this message]
2011-05-09 18:11       ` Ying Han

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=20110506062130.GB2970@balbir.in.ibm.com \
    --to=balbir@linux.vnet.ibm.com \
    --cc=akpm@linux-foundation.org \
    --cc=andi@firstfloor.org \
    --cc=cl@linux.com \
    --cc=dave@linux.vnet.ibm.com \
    --cc=hannes@cmpxchg.org \
    --cc=hughd@google.com \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=kosaki.motohiro@jp.fujitsu.com \
    --cc=linux-mm@kvack.org \
    --cc=lizf@cn.fujitsu.com \
    --cc=mel@csn.ul.ie \
    --cc=mhocko@suse.cz \
    --cc=minchan.kim@gmail.com \
    --cc=nishimura@mxp.nes.nec.co.jp \
    --cc=riel@redhat.com \
    --cc=tj@kernel.org \
    --cc=xemul@openvz.org \
    --cc=yinghan@google.com \
    --cc=zhu.yanhai@gmail.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