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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Mon, 5 Mar 2018 16:28:39 +0000
From:   John Garry <john.garry@...wei.com>
To:     William Cohen <wcohen@...hat.com>,
        Ganapatrao Kulkarni <gklkml16@...il.com>,
        Jiri Olsa <jolsa@...hat.com>
CC:     Ganapatrao Kulkarni <ganapatrao.kulkarni@...ium.com>,
        <ak@...ux.intel.com>, Peter Zijlstra <peterz@...radead.org>,
        Will Deacon <will.deacon@....com>,
        Linuxarm <linuxarm@...wei.com>,
        "Arnaldo Carvalho de Melo" <acme@...nel.org>,
        <linux-kernel@...r.kernel.org>,
        Zhangshaokun <zhangshaokun@...ilicon.com>,
        Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
        Ingo Molnar <mingo@...hat.com>, <namhyung@...nel.org>,
        <linux-arm-kernel@...ts.infradead.org>,
        <Jayachandran.Nair@...ium.com>
Subject: Re: [PATCH v2 00/11] perf events patches for improved ARM64 support

On 05/03/2018 15:39, William Cohen wrote:
> On 03/05/2018 06:24 AM, John Garry wrote:
>>>> I am seeing issue(log below) with this patchset on our platfrom.
>>>> i have tried using your v2 branch [1]
>>>>
>>>> root@...g-1>perf_acme>> ./perf --version
>>>> perf version 4.16.rc1.g087f7ca
>>>> root@...g-1>perf_acme>> ./perf stat -e bus_access_rd sleep 1
>>>>
>>>>  Performance counter stats for 'sleep 1':
>>>>
>>>>             23,099      bus_access_rd
>>>>
>>>>        1.000708516 seconds time elapsed
>>>>
>>>> root@...g-1>perf_acme>> cd -
>>>> /ganapat/perf/linux-hisi/tools/perf
>>>> root@...g-1>perf>> ./perf --version
>>>> perf version 4.16.rc1.gcb5a74
>>>> root@...g-1>perf>> ./perf stat -e bus_access_rd sleep 1
>>>>
>>>>  Performance counter stats for 'sleep 1':
>>>>
>>>>                  0      bus_access_rd
>>>>
>>>>        1.000709162 seconds time elapsed
>>>>
>>>> root@...g-1>perf>>
>>>>
>>>>
>>>> [1] https://github.com/hisilicon/linux-hisi.git
>>>>
>>> Hi,
>>
>> Hi Will Cohen, Ganapatrao,
>>
>>>
>>> I took a slightly different tack and compared the output of "perf list --details" to see if the event numbers numbers were the same.  For the common events borrowed from the armv8-recommended.json all the events are 0 for the cortex a53.  That would explain why the bus_access_rd above were counts were different if it was counting the SW_INCR event instead of bus_access_rd.
>>>
>>
>> Thanks for this. I see the problem. At the end I missed bringing across something from v1. Easily fixed.
>>
>>> Why not key the matching of common events off the "EventName" rather than "EventCode"? The EventName would be more descriptive. Then the json files could eliminate the "BriefDescription" and just have the EventName with nothing else for each event.  This would further reduce the amount of redundant fields between the specific implementations and the common set.
>>>
>>
>> I did consider it and it could work. But it all depends on whether the "EventName" only is always readable/descriptive enough in the JSON, without requiring the "BriefDescription". The "EventName" can be rather succinct for any arch. And we need to guarantee that the "EventName" is unique.
>>
>> Here's a sample:
>> [
>>     {
>>         "ArchStdEvent": "L1D_CACHE_RD",
>>     },
>>     {
>>         "ArchStdEvent": "L1D_CACHE_WR",
>>     },
>>
>> vs.
>>
>> [
>>     {
>>         "ArchStdEvent": "0x40",
>>         "BriefDescription": "L1D cache access, read"
>>     },
>>     {
>>         "ArchStdEvent": "0x41",
>>         "BriefDescription": "L1D cache access, write"
>>     },
>>
>>
>> Opinion?
>

Hi Will,

> Hi John,
>
> The "ArchStdEvent" version is more concise by avoiding the duplication
> of "BriefDescription" field and possible differences in
> "BriefDescription" due to typos.  Would it make easier for people coding
> up descriptions for specific processors?  It would depend on how the
> documentation is written up.  For the armv8 documentation in "D5.10.3
> Common event numbers" list the event mnemonic in "Table D5-8 PMU common
> architectural and microarchitectural event numbers" so just using the
> event names seems like it would be pretty clear.

Fine. ***If anyone disagrees on this then please say so.***

For different Intel
> ia64 microarchitecture implementations there are different event coding
> to implement the same event name.  Not sure how would handle the
> universe of different families of ia64 processor implementations.

I think for this example, if we were to use the "EventName" as the 
matching field, then it may be still possible to support by overriding 
the "EventCode" in the platform JSON.

The support in this patchset allows fields to be overriden; the 
following is a sample of how it would look:
{
     "ArchStdEvent": "L1D_CACHE_RD", // Arch EventCode 0x40
     "EventCode": "0x123456"   // override the eventcode
},

>
> Is the armv8-common.json being used as a template that fills out the
> fields of the json elements that match up an entry in the
> armv8-common.json? Or does it only use the information from the
> armv8-common.json.  If the code treated the armv8-common.json as default
> values, then if something differs in the architecture specific entry it
> could overwrite the default value from the template.

Yes, this is supported. By default, the values in template 
armv8-common.json are used (I called it armv8-recommended.json); 
however, any fields defined in the platform JSON for a matching event 
are prioritized, as above.

>
> -Will Cohen

Thanks,
John

>
>
> .
>
> .
>


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ