Hi,

On Sat, Feb 16, 2019 at 6:55 AM Song Liu <songliubrav...@fb.com> wrote:
>
> This patch enables perf-record to save btf information as headers to
> perf.data A new header type HEADER_BTF is introduced for this data.
>
> Signed-off-by: Song Liu <songliubrav...@fb.com>
> ---

[SNIP]
> +static void print_btf(struct feat_fd *ff, FILE *fp)
> +{
> +       struct perf_env *env = &ff->ph->env;
> +       struct rb_root *root;
> +       struct rb_node *next;
> +
> +       down_read(&env->bpf_progs.bpf_info_lock);
> +
> +       root = &env->bpf_progs.btfs;
> +       next = rb_first(root);
> +
> +       while (next) {
> +               struct btf_node *node;
> +
> +               node = rb_entry(next, struct btf_node, rb_node);
> +               next = rb_next(&node->rb_node);
> +               fprintf(fp, "# bpf_prog_info of id %u\n", node->id);

How about saying it's "btf" info?

Thanks,
Namhyung


> +       }
> +
> +       up_read(&env->bpf_progs.bpf_info_lock);
> +}

Reply via email to