Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1332781

Re: [PATCH 14/54] perf tools: Support setting different slots in a BPF map separately

From Jiri Olsa <jolsa@redhat.com>
Newsgroups linux.kernel
Subject Re: [PATCH 14/54] perf tools: Support setting different slots in a BPF map separately
Date 2016-02-12 15:30 +0100
Message-ID <r1mTo-8b8-11@gated-at.bofh.it> (permalink)
References <qYPfb-1gO-3@gated-at.bofh.it> <qYPfd-1gO-31@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Fri, Feb 05, 2016 at 02:01:39PM +0000, Wang Nan wrote:

SNIP

>  
> +int parse_events__merge_arrays(struct parse_events_array *dest,
> +			       struct parse_events_array *another)
> +{
> +	struct parse_events_array new;
> +
> +	if (!dest || !another)
> +		return -EINVAL;
> +
> +	new.nr_ranges = dest->nr_ranges + another->nr_ranges;
> +	new.ranges = malloc(sizeof(new.ranges[0]) * new.nr_ranges);
> +	if (!new.ranges)
> +		return -ENOMEM;
> +
> +	memcpy(&new.ranges[0], dest->ranges,
> +	       sizeof(new.ranges[0]) * dest->nr_ranges);
> +	memcpy(&new.ranges[dest->nr_ranges], another->ranges,
> +	       sizeof(new.ranges[0]) * another->nr_ranges);
> +	free(dest->ranges);
> +	free(another->ranges);
> +	*dest = new;
> +	return 0;
> +}

is there a user for this function in this patchset? can't find it..

I recall I've already seen it in earlier versions, but can't find it now ;-)

jirka

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

Re: [PATCH 14/54] perf tools: Support setting different slots in a  BPF map separately Jiri Olsa <jolsa@redhat.com> - 2016-02-12 15:30 +0100
  Re: [PATCH 14/54] perf tools: Support setting different slots in a BPF map separately pi3orama <pi3orama@163.com> - 2016-02-12 15:40 +0100

csiph-web