[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <53af9c5c-a33d-4fc4-88e9-851b1caad3f1@linux.intel.com>
Date: Fri, 22 Nov 2019 16:58:34 +0300
From: Alexey Budankov <alexey.budankov@...ux.intel.com>
To: Jiri Olsa <jolsa@...hat.com>
Cc: Arnaldo Carvalho de Melo <acme@...nel.org>,
Namhyung Kim <namhyung@...nel.org>,
Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
Peter Zijlstra <peterz@...radead.org>,
Ingo Molnar <mingo@...hat.com>,
Andi Kleen <ak@...ux.intel.com>,
linux-kernel <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v1 2/3] perf mmap: declare type for cpu mask of arbitrary
length
On 22.11.2019 16:20, Jiri Olsa wrote:
> On Wed, Nov 20, 2019 at 12:37:48PM +0300, Alexey Budankov wrote:
>>
>> Declare a dedicated struct map_cpu_mask type for cpu masks of
>> arbitrary length. Mask is available thru bits pointer and the
>> mask length is kept in nbits field. mmap_cpu_mask_bytes() macro
>> returns mask storage size in bytes.
>>
>> Signed-off-by: Alexey Budankov <alexey.budankov@...ux.intel.com>
>> ---
>> tools/perf/util/mmap.h | 9 +++++++++
>> 1 file changed, 9 insertions(+)
>>
>> diff --git a/tools/perf/util/mmap.h b/tools/perf/util/mmap.h
>> index bee4e83f7109..a218a0eb1466 100644
>> --- a/tools/perf/util/mmap.h
>> +++ b/tools/perf/util/mmap.h
>> @@ -15,6 +15,15 @@
>> #include "event.h"
>>
>> struct aiocb;
>> +
>> +struct mmap_cpu_mask {
>> + unsigned long *bits;
>> + size_t nbits;
>> +};
>> +
>> +#define mmap_cpu_mask_bytes(m) \
>
> we try to have all macros upper case
In v2.
>
>> + (BITS_TO_LONGS(((struct mmap_cpu_mask *)m)->nbits) * sizeof(unsigned long))
>
> we have BITS_TO_BYTES
In v2.
>
> thanks,
> jirka
>
~Alexey
>> +
>> /**
>> * struct mmap - perf's ring buffer mmap details
>> *
>> --
>> 2.20.1
>>
>
>
Powered by blists - more mailing lists