lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Wed, 22 Jun 2016 12:10:33 +0800
From:	"Wangnan (F)" <wangnan0@...wei.com>
To:	Arnaldo Carvalho de Melo <acme@...nel.org>
CC:	<linux-kernel@...r.kernel.org>, <pi3orama@....com>,
	"Arnaldo Carvalho de Melo" <acme@...hat.com>,
	Jiri Olsa <jolsa@...nel.org>,
	Masami Hiramatsu <mhiramat@...nel.org>,
	Namhyung Kim <namhyung@...nel.org>,
	Zefan Li <lizefan@...wei.com>, He Kuang <hekuang@...wei.com>
Subject: Re: [PATCH v8 3/8] perf tests: Add testcase for auxiliary evlist



On 2016/6/22 5:05, Arnaldo Carvalho de Melo wrote:
> Em Mon, Jun 20, 2016 at 10:47:20AM +0000, Wang Nan escreveu:
>> Improve test backward

[SNIP]

>>
>> diff --git a/tools/perf/tests/backward-ring-buffer.c b/tools/perf/tests/backward-ring-buffer.c
>> index d9ba991..76e34c0 100644
>> --- a/tools/perf/tests/backward-ring-buffer.c
>> +++ b/tools/perf/tests/backward-ring-buffer.c
>> @@ -31,16 +31,19 @@ static int count_samples(struct perf_evlist *evlist, int *sample_count,
>>   	for (i = 0; i < evlist->nr_mmaps; i++) {
>>   		union perf_event *event;
>>   
>> -		perf_evlist__mmap_read_catchup(evlist, i);
>> -		while ((event = perf_evlist__mmap_read_backward(evlist, i)) != NULL) {
>> +		if (evlist->backward)
>> +			perf_evlist__mmap_read_catchup(evlist, i);
> So, shouldn't this be done at perf_evlist__mmap_read_catchup()? I.e. you
> will use this only when you know that one of the evlists count_samples()
> will deal with can be a backwards one...
>
> I.e. do with perf_evlist__mmap_read_catchup the same thing you did in
> perf_evlist__mmap_read, checking there this evlist->backward.

I can make the code clearer, but I don't agree hiding evlist->backward 
checker in
perf_evlist__mmap_read_catchup():

1. If we make perf_evlist__mmap_read_catchup() implicitly ignore 
non-backward evlist,
    then we are creating a new rule for reading from mmaps that, before 
calling
    perf_evlist__mmap_read() we need to call 
perf_evlist__mmap_read_catchup() first.
    Theoretically, existing code should be adjusted to satisify this new 
rule, but
    actually most of catchup does nothing.

    If we don't require existing code be adjusted, then we are still 
required to
    clarify when catchup() is required, so evlist->backward is still 
exposed.

2. I think we don't need to restrict perf_evlist__mmap_read_catchup() 
for backward
    ring buffer. It is a generic operations, can be used for a normal 
evlist to
    consume existing data in ring buffer.


> This can be done on top, so I'll continue tentatively merging this.
>
>> +		while ((event = perf_evlist__mmap_read(evlist, i)) != NULL) {
>>   			const u32 type = event->header.type;
>>   
>>   			switch (type) {
>>   			case PERF_RECORD_SAMPLE:
>> -				(*sample_count)++;
>> +				if (sample_count)
>> +					(*sample_count)++;
>>   				break;
>>   			case PERF_RECORD_COMM:
>> -				(*comm_count)++;
>> +				if (comm_count)
>> +					(*comm_count)++;
> You could've avoided all this by passing some dummy integer pointer for
> the enter_sample_count case. Making the patch smaller helps reviewing
> :-)

Will do.

Thank you.


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ