lkml.org 
[lkml]   [2018]   [Aug]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v3 2/2]: perf record: enable asynchronous trace writing
From
Date
Hi,

On 28.08.2018 12:01, Jiri Olsa wrote:
> On Mon, Aug 27, 2018 at 09:16:55PM +0300, Alexey Budankov wrote:
>
> SNIP
>
>> +static int record__mmap_read_sync(int trace_fd, struct aiocb **cblocks,
>> + int cblocks_size, struct record *rec)
>> +{
>> + size_t rem;
>> + ssize_t size;
>> + off_t rem_off;
>> + int i, aio_ret, aio_errno, do_suspend;
>> + struct perf_mmap *md;
>> + struct timespec timeout0 = { 0, 0 };
>> + struct timespec timeoutS = { 0, 1000 * 500 * 1 }; // 0.5ms
>> +
>> + if (!cblocks_size)
>> + return 0;
>> +
>> + do {
>> + do_suspend = 0;
>> + /* aio_suspend() implementation inside glibc (as of v2.27) is
>> + * intrusive and not just blocks waiting io requests completion
>> + * but polls requests queue inducing context switches in perf
>> + * tool process. When profiling in system wide mode with tracing
>> + * context switches the trace may be polluted by context switches
>> + * from the perf process and the trace size becomes about 3-5
>> + * times bigger than that of when writing the trace serially.
>> + * To limit the volume of context switches from perf tool
>> + * process nanosleep() call below is added prior aio_suspend()
>> + * calling till every half of the kernel timer tick which is
>> + * usually 1ms (depends on CONFIG_HZ value).
>
> nice, any idea this is intentional for some reason?
>
> was there some impact on the overall performance or
> this is purely for the sanity of the trace size?

Initially we noticed the trace size increase only. However if you look at
the data using perf report you see that Perf tool process gets considerable
volume of new context switches and that is what caused by switching
to AIO streaming, specifically frequent calls of aio_suspend().

>
> thanks,
> jirka
>

\
 
 \ /
  Last update: 2018-08-28 14:39    [W:0.070 / U:0.488 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site