From: Eric Dumazet <dada1@cosmosbay.com>
To: Christoph Lameter <clameter@sgi.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Pekka Enberg <penberg@cs.helsinki.fi>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: SLUB: statistics improvements
Date: Wed, 06 Feb 2008 22:40:37 +0100 [thread overview]
Message-ID: <47AA2955.50502@cosmosbay.com> (raw)
In-Reply-To: <Pine.LNX.4.64.0802061259490.26108@schroedinger.engr.sgi.com>
Christoph Lameter a écrit :
> SLUB: statistics improvements
>
> - Fix indentation in unfreeze_slab
>
> - FREE_SLAB/ALLOC_SLAB counters were slightly misplaced and counted
> even if the slab was kept because we were below the mininum of
> partial slabs.
>
> - Export per cpu statistics to user space (follow numa convention
> but change the n character to c (no slabinfo support for display yet)
>
> F.e.
>
> christoph@stapp:/sys/kernel/slab/kmalloc-8$ cat alloc_fastpath
> 9968 c0=4854 c1=1050 c2=468 c3=190 c4=116 c5=1779 c6=185 c7=1326
nice :)
>
>
> +static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
> +{
> + unsigned long sum = 0;
> + int cpu;
> + int len;
> + int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
> +
> + if (!data)
> + return -ENOMEM;
> +
> + for_each_online_cpu(cpu) {
> + int x = get_cpu_slab(s, cpu)->stat[si];
unsigned int x = ...
> +
> + data[cpu] = x;
> + sum += x;
or else x will sign extend here on 64 bit arches ?
> + }
> +
> + len = sprintf(buf, "%lu", sum);
> +
> + for_each_online_cpu(cpu) {
> + if (data[cpu] && len < PAGE_SIZE - 20)
> + len += sprintf(buf + len, " c%d=%u", cpu, data[cpu]);
> + }
> + kfree(data);
> + return len + sprintf(buf + len, "\n");
> +}
> +
WARNING: multiple messages have this Message-ID (diff)
From: Eric Dumazet <dada1@cosmosbay.com>
To: Christoph Lameter <clameter@sgi.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Pekka Enberg <penberg@cs.helsinki.fi>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: SLUB: statistics improvements
Date: Wed, 06 Feb 2008 22:40:37 +0100 [thread overview]
Message-ID: <47AA2955.50502@cosmosbay.com> (raw)
In-Reply-To: <Pine.LNX.4.64.0802061259490.26108@schroedinger.engr.sgi.com>
Christoph Lameter a ecrit :
> SLUB: statistics improvements
>
> - Fix indentation in unfreeze_slab
>
> - FREE_SLAB/ALLOC_SLAB counters were slightly misplaced and counted
> even if the slab was kept because we were below the mininum of
> partial slabs.
>
> - Export per cpu statistics to user space (follow numa convention
> but change the n character to c (no slabinfo support for display yet)
>
> F.e.
>
> christoph@stapp:/sys/kernel/slab/kmalloc-8$ cat alloc_fastpath
> 9968 c0=4854 c1=1050 c2=468 c3=190 c4=116 c5=1779 c6=185 c7=1326
nice :)
>
>
> +static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
> +{
> + unsigned long sum = 0;
> + int cpu;
> + int len;
> + int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
> +
> + if (!data)
> + return -ENOMEM;
> +
> + for_each_online_cpu(cpu) {
> + int x = get_cpu_slab(s, cpu)->stat[si];
unsigned int x = ...
> +
> + data[cpu] = x;
> + sum += x;
or else x will sign extend here on 64 bit arches ?
> + }
> +
> + len = sprintf(buf, "%lu", sum);
> +
> + for_each_online_cpu(cpu) {
> + if (data[cpu] && len < PAGE_SIZE - 20)
> + len += sprintf(buf + len, " c%d=%u", cpu, data[cpu]);
> + }
> + kfree(data);
> + return len + sprintf(buf + len, "\n");
> +}
> +
--
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:[~2008-02-06 21:41 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-02-05 6:20 SLUB: Support for statistics to help analyze allocator behavior Christoph Lameter
2008-02-05 6:20 ` Christoph Lameter
2008-02-05 7:24 ` Pekka J Enberg
2008-02-05 7:24 ` Pekka J Enberg
2008-02-05 7:49 ` Eric Dumazet
2008-02-05 7:49 ` Eric Dumazet
2008-02-05 7:54 ` Pekka J Enberg
2008-02-05 7:54 ` Pekka J Enberg
2008-02-05 18:08 ` Christoph Lameter
2008-02-05 18:08 ` Christoph Lameter
2008-02-05 18:55 ` Eric Dumazet
2008-02-05 18:55 ` Eric Dumazet
2008-02-05 19:07 ` Christoph Lameter
2008-02-05 19:07 ` Christoph Lameter
2008-02-05 18:05 ` Christoph Lameter
2008-02-05 18:05 ` Christoph Lameter
2008-02-05 20:20 ` Pekka Enberg
2008-02-05 20:20 ` Pekka Enberg
2008-02-05 21:58 ` Christoph Lameter
2008-02-05 21:58 ` Christoph Lameter
2008-02-05 22:19 ` Pekka J Enberg
2008-02-05 22:19 ` Pekka J Enberg
2008-02-06 8:19 ` Andrew Morton
2008-02-06 8:19 ` Andrew Morton
2008-02-06 19:01 ` Christoph Lameter
2008-02-06 19:01 ` Christoph Lameter
2008-02-06 21:00 ` SLUB: statistics improvements Christoph Lameter
2008-02-06 21:00 ` Christoph Lameter
2008-02-06 21:40 ` Eric Dumazet [this message]
2008-02-06 21:40 ` Eric Dumazet
2008-02-06 22:10 ` Christoph Lameter
2008-02-06 22:10 ` Christoph Lameter
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=47AA2955.50502@cosmosbay.com \
--to=dada1@cosmosbay.com \
--cc=akpm@linux-foundation.org \
--cc=clameter@sgi.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=penberg@cs.helsinki.fi \
/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.