btf_loader: Move create_new_float_type() 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 6b452a1cc5
commit ab2f502891
1 changed files with 3 additions and 3 deletions

View File

@ -174,7 +174,7 @@ static int create_new_int_type(struct cu *cu, const struct btf_type *tp, uint32_
return 0;
}
static int create_new_float_type(struct btf_elf *btfe, const struct btf_type *tp, uint32_t id)
static int create_new_float_type(struct cu *cu, const struct btf_type *tp, uint32_t id)
{
strings_t name = tp->name_off;
struct base_type *base = base_type__new(name, 0, BT_FP_SINGLE, tp->size * 8);
@ -183,7 +183,7 @@ static int create_new_float_type(struct btf_elf *btfe, const struct btf_type *tp
return -ENOMEM;
base->tag.tag = DW_TAG_base_type;
cu__add_tag_with_id(btfe->priv, &base->tag, id);
cu__add_tag_with_id(cu, &base->tag, id);
return 0;
}
@ -456,7 +456,7 @@ static int btf_elf__load_types(struct btf_elf *btfe, struct cu *cu)
err = create_new_function(cu, type_ptr, type_index);
break;
case BTF_KIND_FLOAT:
err = create_new_float_type(btfe, type_ptr, type_index);
err = create_new_float_type(cu, type_ptr, type_index);
break;
default:
fprintf(stderr, "BTF: idx: %d, Unknown kind %d\n", type_index, type);