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


Groups > linux.kernel > #1734865 > unrolled thread

Re: [PATCH v3 03/13] perf report: create real callchain entries for inlined frames

Started byJiri Olsa <jolsa@redhat.com>
First post2017-09-19 14:30 +0200
Last post2017-09-19 14:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH v3 03/13] perf report: create real callchain entries for  inlined frames Jiri Olsa <jolsa@redhat.com> - 2017-09-19 14:30 +0200

#1734865 — Re: [PATCH v3 03/13] perf report: create real callchain entries for inlined frames

FromJiri Olsa <jolsa@redhat.com>
Date2017-09-19 14:30 +0200
SubjectRe: [PATCH v3 03/13] perf report: create real callchain entries for inlined frames
Message-ID<urpP5-5pF-21@gated-at.bofh.it>
On Wed, Sep 06, 2017 at 03:54:51PM +0200, Milian Wolff wrote:

SNIP

>  
> -struct inline_node *dso__parse_addr_inlines(struct dso *dso, u64 addr);
> +// parse inlined frames for the given address
> +struct inline_node *dso__parse_addr_inlines(struct dso *dso, u64 addr,
> +					    struct symbol *sym);
> +// free resources associated to the inline node list
>  void inline_node__delete(struct inline_node *node);
>  
> +// insert the inline node list into the DSO, which will take ownership
> +void inlines__tree_insert(struct rb_root *tree, struct inline_node *inlines);
> +// find previously inserted inline node list
> +struct inline_node *inlines__tree_find(struct rb_root *tree, u64 addr);
> +// delete all nodes within the tree of inline_node s
> +void inlines__tree_delete(struct rb_root *tree);

nit, think we prefer the /* */ comment style

jirka

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web