Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754389AbeAJTbd convert rfc822-to-8bit (ORCPT + 1 other); Wed, 10 Jan 2018 14:31:33 -0500 Received: from mga03.intel.com ([134.134.136.65]:51684 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753723AbeAJTba (ORCPT ); Wed, 10 Jan 2018 14:31:30 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,341,1511856000"; d="scan'208";a="10237312" From: "Liang, Kan" To: Jiri Olsa CC: "acme@kernel.org" , "peterz@infradead.org" , "mingo@redhat.com" , "linux-kernel@vger.kernel.org" , "wangnan0@huawei.com" , "jolsa@kernel.org" , "namhyung@kernel.org" , "ak@linux.intel.com" , "yao.jin@linux.intel.com" Subject: RE: [PATCH V3 02/12] perf mmap: factor out function to find ringbuffer position Thread-Topic: [PATCH V3 02/12] perf mmap: factor out function to find ringbuffer position Thread-Index: AQHTeohYQA4ITzGJdE69QMaG5y6pe6Ns1oqAgADHDiA= Date: Wed, 10 Jan 2018 19:31:26 +0000 Message-ID: <37D7C6CF3E00A74B8858931C1DB2F077537FF516@SHSMSX103.ccr.corp.intel.com> References: <1513879734-237492-1-git-send-email-kan.liang@intel.com> <1513879734-237492-3-git-send-email-kan.liang@intel.com> <20180110153701.GA15442@krava> In-Reply-To: <20180110153701.GA15442@krava> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMmRhN2VkZTktNWJiOC00OTdkLWI0M2UtM2Q0NGEyODMyMTFkIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6InJCb01wNmpUZjMycjZNZjdKNVpaUUU2Y21hMUtPYU13SVhvbHNKeWRWYU09In0= x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: > On Thu, Dec 21, 2017 at 10:08:44AM -0800, kan.liang@intel.com wrote: > > From: Kan Liang > > > > The perf record has specific codes to calculate the ringbuffer > > position for both overwrite and non-overwrite mode. > > The perf top will support both modes later. > > It is useful to make the specific codes generic. > > > > Introduce a new interface perf_mmap__read_init() to find ringbuffer > > position. > > Add a check for map->refcnt in perf_mmap__read_init(). > > 'size' is needed for both perf_mmap__read_init() and perf_mmap__push(). > > Have to calculate in each function. > > it's 2 separate changes then plus 1 not mentioned in changelog.. > could you please split this into separate patches: > > - Introduce a new interface perf_mmap__read_init ... > - Add a check for map->refcnt in perf_mmap__read_init > - add new EAGAIN return value logic > Thanks for the comments, Jirka. I will split the patch accordingly in V4. Thanks, Kan > thanks, > jirka > > > > > Signed-off-by: Kan Liang > > --- > > tools/perf/util/mmap.c | 62 > > ++++++++++++++++++++++++++++++++++---------------- > > tools/perf/util/mmap.h | 2 ++ > > 2 files changed, 45 insertions(+), 19 deletions(-) > > > > diff --git a/tools/perf/util/mmap.c b/tools/perf/util/mmap.c index > > 05076e6..3fd4f3c 100644 > > --- a/tools/perf/util/mmap.c > > +++ b/tools/perf/util/mmap.c > > @@ -267,41 +267,65 @@ static int overwrite_rb_find_range(void *buf, int > mask, u64 head, u64 *start, u6 > > return -1; > > } > > > > -int perf_mmap__push(struct perf_mmap *md, bool overwrite, > > - void *to, int push(void *to, void *buf, size_t size)) > > +/* > > + * Report the start and end of the available data in ringbuffer */ > > +int perf_mmap__read_init(struct perf_mmap *map, bool overwrite, > > + u64 *start, u64 *end) > > { > > - u64 head = perf_mmap__read_head(md); > > - u64 old = md->prev; > > - u64 end = head, start = old; > > - unsigned char *data = md->base + page_size; > > + u64 head = perf_mmap__read_head(map); > > + u64 old = map->prev; > > + unsigned char *data = map->base + page_size; > > unsigned long size; > > - void *buf; > > - int rc = 0; > > > > - start = overwrite ? head : old; > > - end = overwrite ? old : head; > > + /* > > + * Check if event was unmapped due to a POLLHUP/POLLERR. > > + */ > > + if (!refcount_read(&map->refcnt)) > > + return -EINVAL; > > > > - if (start == end) > > - return 0; > > + *start = overwrite ? head : old; > > + *end = overwrite ? old : head; > > > > - size = end - start; > > - if (size > (unsigned long)(md->mask) + 1) { > > + if (*start == *end) > > + return -EAGAIN; > > + > > + size = *end - *start; > > + if (size > (unsigned long)(map->mask) + 1) { > > if (!overwrite) { > > WARN_ONCE(1, "failed to keep up with mmap data. > (warn only > > once)\n"); > > > > - md->prev = head; > > - perf_mmap__consume(md, overwrite); > > - return 0; > > + map->prev = head; > > + perf_mmap__consume(map, overwrite); > > + return -EAGAIN; > > } > > > > /* > > * Backward ring buffer is full. We still have a chance to read > > * most of data from it. > > */ > > - if (overwrite_rb_find_range(data, md->mask, head, &start, > &end)) > > - return -1; > > + if (overwrite_rb_find_range(data, map->mask, head, start, > end)) > > + return -EINVAL; > > } > > > > + return 0; > > +} > > + > > +int perf_mmap__push(struct perf_mmap *md, bool overwrite, > > + void *to, int push(void *to, void *buf, size_t size)) { > > + u64 head = perf_mmap__read_head(md); > > + u64 end, start; > > + unsigned char *data = md->base + page_size; > > + unsigned long size; > > + void *buf; > > + int rc; > > + > > + rc = perf_mmap__read_init(md, overwrite, &start, &end); > > + if (rc < 0) > > + return (rc == -EAGAIN) ? 0 : -1; > > + > > + size = end - start; > > if ((start & md->mask) + size != (end & md->mask)) { > > buf = &data[start & md->mask]; > > size = md->mask + 1 - (start & md->mask); diff --git > > a/tools/perf/util/mmap.h b/tools/perf/util/mmap.h index > > d640273..abe9b9f 100644 > > --- a/tools/perf/util/mmap.h > > +++ b/tools/perf/util/mmap.h > > @@ -94,4 +94,6 @@ int perf_mmap__push(struct perf_mmap *md, bool > > backward, > > > > size_t perf_mmap__mmap_len(struct perf_mmap *map); > > > > +int perf_mmap__read_init(struct perf_mmap *map, bool overwrite, > > + u64 *start, u64 *end); > > #endif /*__PERF_MMAP_H */ > > -- > > 2.5.5 > >