[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <53ADFA13.50304@gmail.com>
Date: Fri, 27 Jun 2014 17:11:15 -0600
From: David Ahern <dsahern@...il.com>
To: Jiri Olsa <jolsa@...nel.org>, linux-kernel@...r.kernel.org
CC: Arnaldo Carvalho de Melo <acme@...nel.org>,
Corey Ashford <cjashfor@...ux.vnet.ibm.com>,
Frederic Weisbecker <fweisbec@...il.com>,
Ingo Molnar <mingo@...nel.org>,
Jean Pihet <jean.pihet@...aro.org>,
Namhyung Kim <namhyung@...nel.org>,
Paul Mackerras <paulus@...ba.org>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>
Subject: Re: [PATCH 07/18] perf tools: Limit ordered events queue size
On 6/18/14, 8:58 AM, Jiri Olsa wrote:
> @@ -520,7 +522,7 @@ static void queue_event(struct ordered_events_queue *q, struct ordered_event *ne
> static struct ordered_event *alloc_event(struct ordered_events_queue *q)
> {
> struct list_head *cache = &q->cache;
> - struct ordered_event *new;
> + struct ordered_event *new = NULL;
>
> if (!list_empty(cache)) {
> new = list_entry(cache->next, struct ordered_event, list);
> @@ -529,10 +531,14 @@ static struct ordered_event *alloc_event(struct ordered_events_queue *q)
> 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));
> + } else if (q->cur_alloc_size < q->max_alloc_size) {
> + size_t size = MAX_SAMPLE_BUFFER * sizeof(*new);
> +
> + q->buffer = malloc(size);
> if (!q->buffer)
> return NULL;
> +
> + q->cur_alloc_size += size;
> list_add(&q->buffer->list, &q->to_free);
>
When is cur_alloc_size decremented?
$ git checkout remotes/jolsa/perf/core_ordered_events
$ egrep -r cur_alloc_size tools/perf/
tools/perf//util/ordered-events.c: } else if (q->cur_alloc_size <
q->max_alloc_size) {
tools/perf//util/ordered-events.c: q->cur_alloc_size,
q->max_alloc_size);
tools/perf//util/ordered-events.c: q->cur_alloc_size += size;
tools/perf//util/ordered-events.c: q->cur_alloc_size = 0;
tools/perf//util/ordered-events.h: u64 cur_alloc_size;
Does not appear to ever be decremented.
David
--
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