* 2.6.15-mm1: what's page_owner.c doing in Documentation/ ???
@ 2006-01-06 0:24 Jesper Juhl
2006-01-06 0:35 ` Andrew Morton
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Jesper Juhl @ 2006-01-06 0:24 UTC (permalink / raw)
To: Andrew Morton, LKML List
Just wondering what page_owner.c is doing in Documentation/ in 2.6.15-mm1 ;-)
$ ls -l linux-2.6.15-mm1/Documentation/page_owner.c
-rw-r--r-- 1 juhl users 2587 2006-01-05 18:15
linux-2.6.15-mm1/Documentation/page_owner.c
--
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please http://www.expita.com/nomime.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.15-mm1: what's page_owner.c doing in Documentation/ ???
2006-01-06 0:24 2.6.15-mm1: what's page_owner.c doing in Documentation/ ??? Jesper Juhl
@ 2006-01-06 0:35 ` Andrew Morton
2006-01-06 0:42 ` Jesper Juhl
2006-01-06 0:40 ` Michal Piotrowski
2006-01-06 3:20 ` Coywolf Qi Hunt
2 siblings, 1 reply; 6+ messages in thread
From: Andrew Morton @ 2006-01-06 0:35 UTC (permalink / raw)
To: Jesper Juhl; +Cc: linux-kernel
Jesper Juhl <jesper.juhl@gmail.com> wrote:
>
> Just wondering what page_owner.c is doing in Documentation/ in 2.6.15-mm1 ;-)
>
> $ ls -l linux-2.6.15-mm1/Documentation/page_owner.c
> -rw-r--r-- 1 juhl users 2587 2006-01-05 18:15
> linux-2.6.15-mm1/Documentation/page_owner.c
>
That's the tool for extracting the data which
page-owner-tracking-leak-detector.patch produces. There's no obvious place
to put it, really. It could be in scripts/ I guess.
Consider it compilable documentation ;)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.15-mm1: what's page_owner.c doing in Documentation/ ???
2006-01-06 0:24 2.6.15-mm1: what's page_owner.c doing in Documentation/ ??? Jesper Juhl
2006-01-06 0:35 ` Andrew Morton
@ 2006-01-06 0:40 ` Michal Piotrowski
2006-01-06 3:20 ` Coywolf Qi Hunt
2 siblings, 0 replies; 6+ messages in thread
From: Michal Piotrowski @ 2006-01-06 0:40 UTC (permalink / raw)
To: Jesper Juhl; +Cc: Andrew Morton, LKML List
Hi,
On 06/01/06, Jesper Juhl <jesper.juhl@gmail.com> wrote:
> Just wondering what page_owner.c is doing in Documentation/ in 2.6.15-mm1 ;-)
>
> $ ls -l linux-2.6.15-mm1/Documentation/page_owner.c
> -rw-r--r-- 1 juhl users 2587 2006-01-05 18:15
> linux-2.6.15-mm1/Documentation/page_owner.c
>
It's simple - if you want page_owner documentation you can just read
the source code ;)
Regards,
Michal Piotrowski
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.15-mm1: what's page_owner.c doing in Documentation/ ???
2006-01-06 0:35 ` Andrew Morton
@ 2006-01-06 0:42 ` Jesper Juhl
0 siblings, 0 replies; 6+ messages in thread
From: Jesper Juhl @ 2006-01-06 0:42 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel, Michal Piotrowski
On 1/6/06, Andrew Morton <akpm@osdl.org> wrote:
> Jesper Juhl <jesper.juhl@gmail.com> wrote:
> >
> > Just wondering what page_owner.c is doing in Documentation/ in 2.6.15-mm1 ;-)
> >
> > $ ls -l linux-2.6.15-mm1/Documentation/page_owner.c
> > -rw-r--r-- 1 juhl users 2587 2006-01-05 18:15
> > linux-2.6.15-mm1/Documentation/page_owner.c
> >
>
> That's the tool for extracting the data which
> page-owner-tracking-leak-detector.patch produces. There's no obvious place
> to put it, really. It could be in scripts/ I guess.
>
> Consider it compilable documentation ;)
>
Heh, ok, fair enough ;)
--
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please http://www.expita.com/nomime.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.15-mm1: what's page_owner.c doing in Documentation/ ???
2006-01-06 0:24 2.6.15-mm1: what's page_owner.c doing in Documentation/ ??? Jesper Juhl
2006-01-06 0:35 ` Andrew Morton
2006-01-06 0:40 ` Michal Piotrowski
@ 2006-01-06 3:20 ` Coywolf Qi Hunt
2006-01-06 8:21 ` Jesper Juhl
2 siblings, 1 reply; 6+ messages in thread
From: Coywolf Qi Hunt @ 2006-01-06 3:20 UTC (permalink / raw)
To: Jesper Juhl; +Cc: Andrew Morton, LKML List
On Fri, Jan 06, 2006 at 01:24:20AM +0100, Jesper Juhl wrote:
> Just wondering what page_owner.c is doing in Documentation/ in 2.6.15-mm1 ;-)
>
> $ ls -l linux-2.6.15-mm1/Documentation/page_owner.c
> -rw-r--r-- 1 juhl users 2587 2006-01-05 18:15
> linux-2.6.15-mm1/Documentation/page_owner.c
[coywolf@everest ~/linux/2.6.15-mm1]$ head Documentation/page_owner.c
/*
* User-space helper to sort the output of /proc/page_owner
*
* Example use:
* cat /proc/page_owner > page_owner.txt
* ./sort page_owner.txt sorted_page_owner.txt
*/
#include <stdio.h>
#include <stdlib.h>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.15-mm1: what's page_owner.c doing in Documentation/ ???
2006-01-06 3:20 ` Coywolf Qi Hunt
@ 2006-01-06 8:21 ` Jesper Juhl
0 siblings, 0 replies; 6+ messages in thread
From: Jesper Juhl @ 2006-01-06 8:21 UTC (permalink / raw)
To: Coywolf Qi Hunt; +Cc: Andrew Morton, LKML List
On 1/6/06, Coywolf Qi Hunt <qiyong@fc-cn.com> wrote:
> On Fri, Jan 06, 2006 at 01:24:20AM +0100, Jesper Juhl wrote:
> > Just wondering what page_owner.c is doing in Documentation/ in 2.6.15-mm1 ;-)
> >
> > $ ls -l linux-2.6.15-mm1/Documentation/page_owner.c
> > -rw-r--r-- 1 juhl users 2587 2006-01-05 18:15
> > linux-2.6.15-mm1/Documentation/page_owner.c
>
> [coywolf@everest ~/linux/2.6.15-mm1]$ head Documentation/page_owner.c
[snip]
Yes, I did take a look at what it was, I was just wondering why it was
put in the Documentation/ dir. Just seemed a little odd location to
me.
But OK, it's considered documentation, no problem :)
--
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please http://www.expita.com/nomime.html
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-01-06 8:21 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-06 0:24 2.6.15-mm1: what's page_owner.c doing in Documentation/ ??? Jesper Juhl
2006-01-06 0:35 ` Andrew Morton
2006-01-06 0:42 ` Jesper Juhl
2006-01-06 0:40 ` Michal Piotrowski
2006-01-06 3:20 ` Coywolf Qi Hunt
2006-01-06 8:21 ` Jesper Juhl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome