btf_loader: Move create_new_datasec() from btfe to cu

As all it needs is btfe->priv that is cu.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2021-06-02 13:04:48 -03:00
parent 6fb41bbf8e
commit 8323cb33bc
1 changed files with 3 additions and 5 deletions

View File

@ -361,11 +361,9 @@ static int create_new_variable(struct cu *cu, const struct btf_type *tp, uint32_
return 0;
}
static int create_new_datasec(struct btf_elf *btfe, const struct btf_type *tp, uint32_t id)
static int create_new_datasec(struct cu *cu, const struct btf_type *tp, uint32_t id)
{
//strings_t name = btf_elf__get32(btfe, &tp->name_off);
//cu__add_tag_with_id(btfe->priv, &datasec->tag, id);
//cu__add_tag_with_id(cu, &datasec->tag, id);
/*
* FIXME: this will not be used to reconstruct some original C code,
@ -433,7 +431,7 @@ static int btf_elf__load_types(struct btf_elf *btfe, struct cu *cu)
err = create_new_variable(cu, type_ptr, type_index);
break;
case BTF_KIND_DATASEC:
err = create_new_datasec(btfe, type_ptr, type_index);
err = create_new_datasec(cu, type_ptr, type_index);
break;
case BTF_KIND_VOLATILE:
case BTF_KIND_PTR: