[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140615172703.GC1159@krava.brq.redhat.com>
Date: Sun, 15 Jun 2014 19:27:03 +0200
From: Jiri Olsa <jolsa@...hat.com>
To: Namhyung Kim <namhyung@...nel.org>
Cc: Jiri Olsa <jolsa@...nel.org>, linux-kernel@...r.kernel.org,
Arnaldo Carvalho de Melo <acme@...nel.org>,
Corey Ashford <cjashfor@...ux.vnet.ibm.com>,
David Ahern <dsahern@...il.com>,
Frederic Weisbecker <fweisbec@...il.com>,
Ingo Molnar <mingo@...nel.org>,
Jean Pihet <jean.pihet@...aro.org>,
Paul Mackerras <paulus@...ba.org>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>
Subject: Re: [PATCH 05/17] perf tools: Add ordered_events_(get|put) interface
On Fri, Jun 13, 2014 at 09:05:05PM +0900, Namhyung Kim wrote:
> 2014-06-13 (금), 00:08 +0200, Jiri Olsa:
> > +#define MAX_SAMPLE_BUFFER (64 * 1024 / sizeof(struct ordered_event))
> > +static struct ordered_event *alloc_event(struct ordered_events_queue *q)
> > +{
> > + struct list_head *cache = &q->cache;
> > + struct ordered_event *new;
> > +
> > + if (!list_empty(cache)) {
> > + new = list_entry(cache->next, struct ordered_event, list);
> > + list_del(&new->list);
> > + } else if (q->buffer) {
> > + new = q->buffer + q->buffer_idx;
> > + if (++q->buffer_idx == MAX_SAMPLE_BUFFER)
> > + q->buffer = NULL;
> > + } else {
> > + q->buffer = malloc(MAX_SAMPLE_BUFFER * sizeof(*new));
> > + if (!q->buffer)
> > + return NULL;
> > + list_add(&q->buffer->list, &q->to_free);
> > + q->buffer_idx = 2;
> > + new = q->buffer + 1;
>
> Hmm.. can we add a comment that the first entry is abused to maintain
> the to_free list?
ook
>
>
> > + }
> > +
> > + return new;
> > +}
> > +
> > +static struct ordered_event*
> > +ordered_events_get(struct ordered_events_queue *q, u64 timestamp)
> > +{
> > + struct ordered_event *new;
> > +
> > + new = alloc_event(q);
> > + if (new) {
> > + new->timestamp = timestamp;
> > + queue_event(q, new);
> > + }
> > +
> > + return new;
> > +}
> > +
> > +static void
> > +ordered_event_put(struct ordered_events_queue *q, struct ordered_event *iter)
> > +{
> > + list_del(&iter->list);
> > + list_add(&iter->list, &q->cache);
>
> list_move(&iter->list, &q->cache) ?
ok, I'll make that a separate patch, so it's obvious here
that I used the original code
>
> > + q->nr_events--;
> > +}
>
>
> [SNIP]
> > @@ -639,29 +681,13 @@ int perf_session_queue_event(struct perf_session *s, union perf_event *event,
> > return -EINVAL;
> > }
> >
> > - if (!list_empty(cache)) {
> > - new = list_entry(cache->next, struct ordered_event, list);
> > - list_del(&new->list);
> > - } else if (q->buffer) {
> > - new = q->buffer + q->buffer_idx;
> > - if (++q->buffer_idx == MAX_SAMPLE_BUFFER)
> > - q->buffer = NULL;
> > - } else {
> > - q->buffer = malloc(MAX_SAMPLE_BUFFER * sizeof(*new));
> > - if (!q->buffer)
> > - return -ENOMEM;
> > - list_add(&q->buffer->list, &q->to_free);
> > - q->buffer_idx = 2;
> > - new = q->buffer + 1;
> > + new = ordered_events_get(q, timestamp);
> > + if (new) {
> > + new->file_offset = file_offset;
> > + new->event = event;
> > }
>
> What about make it like below:
>
> if (!new)
> return -ENOMEM;
>
> This way we can share more of the original code.
ook, will do
thanks,
jirka
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists