lkml.org 
[lkml]   [2014]   [Feb]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v1 07/11] x86: perf: intel_pt: Intel PT PMU driver
On Thu, Feb 06, 2014 at 12:50:30PM +0200, Alexander Shishkin wrote:
> +static int topa_insert_pages(struct pt_buffer *buf, gfp_t gfp,
> + enum topa_sz sz)
> +{
> + struct topa *topa = buf->last;
> + int node = cpu_to_node(buf->cpu);
> + int order = get_order(sizes(sz));
> + struct page *p;
> + unsigned long pn;
> +
> + p = alloc_pages_node(node, gfp | GFP_USER | __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY, order);
> + if (!p)
> + return -ENOMEM;

> +
> + return 0;
> +}
> +
> +static int pt_buffer_init_topa(struct pt_buffer *buf, size_t size, gfp_t gfp)
> +{
> + struct topa *topa;
> + int err, region_size;
> +
> + topa = topa_alloc(buf->cpu, gfp);
> + if (!topa)
> + return -ENOMEM;
> +
> + topa_insert_table(buf, topa);
> +
> + region_size = pt_get_topa_region_size(buf->snapshot, size);
> + if (region_size < 0) {
> + pt_buffer_fini_topa(buf);
> + return region_size;
> + }
> +
> + while (region_size && get_order(sizes(region_size)) > MAX_ORDER)
> + region_size--;
> +
> + /* fixup watermark in case of higher order allocations */
> + if (buf->watermark < (sizes(region_size) >> PAGE_SHIFT))
> + buf->watermark = sizes(region_size) >> PAGE_SHIFT;
> +
> + while (buf->size < size) {
> + err = topa_insert_pages(buf, gfp, region_size);
> + if (err) {
> + if (region_size) {
> + region_size--;
> + continue;
> + }
> + pt_buffer_fini_topa(buf);
> + return -ENOMEM;
> + }
> + }

So MAX_ORDER is 11, which gives us (11+12) 23bit or 8M max allocations, right?

Given this TOPA stuff is completely fucked in the first release, that's
about all we can get it, right?

Now given you said 100s MB/s data rate for this itrace stuff, we're at
~0.1s traces. And that's in the very best case where we can actually get
8M.

Is that a workable amount?



\
 
 \ /
  Last update: 2014-02-17 16:01    [W:2.293 / U:0.016 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site