From: Catalin Marinas <catalin.marinas@arm.com>
To: majianpeng <majianpeng@gmail.com>
Cc: linux-mm <linux-mm@kvack.org>,
linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 3/3] mm/kmemleak.c: Merge the consecutive scan-areas.
Date: Fri, 24 May 2013 18:06:44 +0100 [thread overview]
Message-ID: <20130524170644.GB22600@arm.com> (raw)
In-Reply-To: <519224DF.3070807@gmail.com>
On Tue, May 14, 2013 at 12:49:51PM +0100, majianpeng wrote:
> If the scan-areas are adjacent,it can merge in order to reduce memomy.
Have you found any significant reduction in the memory size?
What we miss though is removing an area (and I found a use-case for it).
> + hlist_for_each_entry(area, &object->area_list, node) {
> + if (ptr + size == area->start) {
> + area->start = ptr;
> + area->size += size;
> + goto out_unlock;
> + } else if (ptr == area->start + area->size) {
> + area->size += size;
> + goto out_unlock;
I prefer to keep 'goto' only for the error path. You could add a 'bool
merged' and another 'if' block for area allocation.
I'll pick the other too patches.
Thanks.
--
Catalin
--
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>
WARNING: multiple messages have this Message-ID (diff)
From: Catalin Marinas <catalin.marinas@arm.com>
To: majianpeng <majianpeng@gmail.com>
Cc: linux-mm <linux-mm@kvack.org>,
linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 3/3] mm/kmemleak.c: Merge the consecutive scan-areas.
Date: Fri, 24 May 2013 18:06:44 +0100 [thread overview]
Message-ID: <20130524170644.GB22600@arm.com> (raw)
In-Reply-To: <519224DF.3070807@gmail.com>
On Tue, May 14, 2013 at 12:49:51PM +0100, majianpeng wrote:
> If the scan-areas are adjacent,it can merge in order to reduce memomy.
Have you found any significant reduction in the memory size?
What we miss though is removing an area (and I found a use-case for it).
> + hlist_for_each_entry(area, &object->area_list, node) {
> + if (ptr + size == area->start) {
> + area->start = ptr;
> + area->size += size;
> + goto out_unlock;
> + } else if (ptr == area->start + area->size) {
> + area->size += size;
> + goto out_unlock;
I prefer to keep 'goto' only for the error path. You could add a 'bool
merged' and another 'if' block for area allocation.
I'll pick the other too patches.
Thanks.
--
Catalin
next prev parent reply other threads:[~2013-05-24 17:06 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-14 11:49 [PATCH 3/3] mm/kmemleak.c: Merge the consecutive scan-areas majianpeng
2013-05-14 11:49 ` majianpeng
2013-05-24 17:06 ` Catalin Marinas [this message]
2013-05-24 17:06 ` Catalin Marinas
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=20130524170644.GB22600@arm.com \
--to=catalin.marinas@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=majianpeng@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.