* [PATCH] kmemleak: update documentation
@ 2011-03-24 14:49 Daniel Baluta
2011-03-24 15:49 ` Catalin Marinas
2011-03-29 7:36 ` Heiko Carstens
0 siblings, 2 replies; 8+ messages in thread
From: Daniel Baluta @ 2011-03-24 14:49 UTC (permalink / raw)
To: catalin.marinas, rdunlap; +Cc: linux-doc, linux-kernel, Daniel Baluta
Besides x86 and arm, kmemleak now supports powerpc, sparc, sh,
microblaze and tile.
Signed-off-by: Daniel Baluta <dbaluta@ixiacom.com>
---
Documentation/kmemleak.txt | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/kmemleak.txt b/Documentation/kmemleak.txt
index 34f6638..090e6ee 100644
--- a/Documentation/kmemleak.txt
+++ b/Documentation/kmemleak.txt
@@ -11,6 +11,7 @@ with the difference that the orphan objects are not freed but only
reported via /sys/kernel/debug/kmemleak. A similar method is used by the
Valgrind tool (memcheck --leak-check) to detect the memory leaks in
user-space applications.
+Kmemleak is supported on x86, arm, powerpc, sparc, sh, microblaze and tile.
Usage
-----
@@ -178,5 +179,4 @@ block doesn't need to be freed (some cases in the init_call functions),
the pointer is calculated by other methods than the usual container_of
macro or the pointer is stored in a location not scanned by kmemleak.
-Page allocations and ioremap are not tracked. Only the ARM and x86
-architectures are currently supported.
+Page allocations and ioremap are not tracked.
--
1.7.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] kmemleak: update documentation
2011-03-24 14:49 [PATCH] kmemleak: update documentation Daniel Baluta
@ 2011-03-24 15:49 ` Catalin Marinas
2011-03-24 21:26 ` Randy Dunlap
2011-03-29 7:36 ` Heiko Carstens
1 sibling, 1 reply; 8+ messages in thread
From: Catalin Marinas @ 2011-03-24 15:49 UTC (permalink / raw)
To: Daniel Baluta; +Cc: rdunlap, linux-doc, linux-kernel
On Thu, 2011-03-24 at 14:49 +0000, Daniel Baluta wrote:
> Besides x86 and arm, kmemleak now supports powerpc, sparc, sh,
> microblaze and tile.
>
> Signed-off-by: Daniel Baluta <dbaluta@ixiacom.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] kmemleak: update documentation
2011-03-24 15:49 ` Catalin Marinas
@ 2011-03-24 21:26 ` Randy Dunlap
0 siblings, 0 replies; 8+ messages in thread
From: Randy Dunlap @ 2011-03-24 21:26 UTC (permalink / raw)
To: Catalin Marinas; +Cc: Daniel Baluta, linux-doc, linux-kernel
On Thu, 24 Mar 2011 15:49:01 +0000 Catalin Marinas wrote:
> On Thu, 2011-03-24 at 14:49 +0000, Daniel Baluta wrote:
> > Besides x86 and arm, kmemleak now supports powerpc, sparc, sh,
> > microblaze and tile.
> >
> > Signed-off-by: Daniel Baluta <dbaluta@ixiacom.com>
>
> Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Applied to my documentation quilt queue. Thanks.
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] kmemleak: update documentation
2011-03-24 14:49 [PATCH] kmemleak: update documentation Daniel Baluta
2011-03-24 15:49 ` Catalin Marinas
@ 2011-03-29 7:36 ` Heiko Carstens
2011-03-29 7:51 ` Daniel Baluta
1 sibling, 1 reply; 8+ messages in thread
From: Heiko Carstens @ 2011-03-29 7:36 UTC (permalink / raw)
To: Daniel Baluta; +Cc: catalin.marinas, rdunlap, linux-doc, linux-kernel
On Thu, Mar 24, 2011 at 04:49:33PM +0200, Daniel Baluta wrote:
> Besides x86 and arm, kmemleak now supports powerpc, sparc, sh,
> microblaze and tile.
>
> Signed-off-by: Daniel Baluta <dbaluta@ixiacom.com>
> ---
> Documentation/kmemleak.txt | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/kmemleak.txt b/Documentation/kmemleak.txt
> index 34f6638..090e6ee 100644
> --- a/Documentation/kmemleak.txt
> +++ b/Documentation/kmemleak.txt
> @@ -11,6 +11,7 @@ with the difference that the orphan objects are not freed but only
> reported via /sys/kernel/debug/kmemleak. A similar method is used by the
> Valgrind tool (memcheck --leak-check) to detect the memory leaks in
> user-space applications.
> +Kmemleak is supported on x86, arm, powerpc, sparc, sh, microblaze and tile.
You missed s390.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] kmemleak: update documentation
2011-03-29 7:36 ` Heiko Carstens
@ 2011-03-29 7:51 ` Daniel Baluta
2011-03-29 9:41 ` Maxin John
2011-03-29 15:33 ` Randy Dunlap
0 siblings, 2 replies; 8+ messages in thread
From: Daniel Baluta @ 2011-03-29 7:51 UTC (permalink / raw)
To: Heiko Carstens, rdunlap; +Cc: catalin.marinas, linux-doc, linux-kernel
>> +Kmemleak is supported on x86, arm, powerpc, sparc, sh, microblaze and tile.
>
> You missed s390.
You are right.
Randy, should I send a v2 of this patch, or is it already applied?
Another option would be to send a separate patch adding s390,
on top of my previous patch.
thanks,
Daniel.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] kmemleak: update documentation
2011-03-29 7:51 ` Daniel Baluta
@ 2011-03-29 9:41 ` Maxin John
2011-03-29 11:24 ` Daniel Baluta
2011-03-29 15:33 ` Randy Dunlap
1 sibling, 1 reply; 8+ messages in thread
From: Maxin John @ 2011-03-29 9:41 UTC (permalink / raw)
To: Daniel Baluta
Cc: Heiko Carstens, rdunlap, catalin.marinas, linux-doc, linux-kernel
Hi,
With some minor modifications, I was able to run kmemleak in MIPS platform.
Kmemleak output and Patch are available in this link:
https://lkml.org/lkml/2011/3/28/483
Should we include that information in the Documentation ?
Warm Regards,
Maxin B. John
On Tue, Mar 29, 2011 at 8:51 AM, Daniel Baluta <dbaluta@ixiacom.com> wrote:
>>> +Kmemleak is supported on x86, arm, powerpc, sparc, sh, microblaze and tile.
>>
>> You missed s390.
>
> You are right.
>
> Randy, should I send a v2 of this patch, or is it already applied?
> Another option would be to send a separate patch adding s390,
> on top of my previous patch.
>
> thanks,
> Daniel.
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] kmemleak: update documentation
2011-03-29 7:51 ` Daniel Baluta
2011-03-29 9:41 ` Maxin John
@ 2011-03-29 15:33 ` Randy Dunlap
1 sibling, 0 replies; 8+ messages in thread
From: Randy Dunlap @ 2011-03-29 15:33 UTC (permalink / raw)
To: Daniel Baluta; +Cc: Heiko Carstens, catalin.marinas, linux-doc, linux-kernel
On Tue, 29 Mar 2011 10:51:33 +0300 Daniel Baluta wrote:
> >> +Kmemleak is supported on x86, arm, powerpc, sparc, sh, microblaze and tile.
> >
> > You missed s390.
>
> You are right.
>
> Randy, should I send a v2 of this patch, or is it already applied?
> Another option would be to send a separate patch adding s390,
> on top of my previous patch.
Your patch is still in my patch queue, so please send me a full replacement
patch for it.
thanks,
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-03-29 15:35 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-24 14:49 [PATCH] kmemleak: update documentation Daniel Baluta
2011-03-24 15:49 ` Catalin Marinas
2011-03-24 21:26 ` Randy Dunlap
2011-03-29 7:36 ` Heiko Carstens
2011-03-29 7:51 ` Daniel Baluta
2011-03-29 9:41 ` Maxin John
2011-03-29 11:24 ` Daniel Baluta
2011-03-29 15:33 ` Randy Dunlap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®