dwarf_loader: cus__load_debug_types() doesn't use its 'cus' arg, remove it

But since it is still related to cus processing, remove that arg and
rename it to __cus__load_debug_types().

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2021-08-05 16:50:19 -03:00
parent 16d646c07e
commit 38df86db2b
1 changed files with 4 additions and 9 deletions

View File

@ -2512,12 +2512,9 @@ static int cu__set_common(struct cu *cu, struct conf_load *conf,
return 0; return 0;
} }
static int cus__load_debug_types(struct cus *cus, struct conf_load *conf, static int __cus__load_debug_types(struct conf_load *conf, Dwfl_Module *mod, Dwarf *dw, Elf *elf,
Dwfl_Module *mod, Dwarf *dw, Elf *elf, const char *filename, const unsigned char *build_id,
const char *filename, int build_id_len, struct cu **cup, struct dwarf_cu *dcup)
const unsigned char *build_id,
int build_id_len,
struct cu **cup, struct dwarf_cu *dcup)
{ {
Dwarf_Off off = 0, noff, type_off; Dwarf_Off off = 0, noff, type_off;
size_t cuhl; size_t cuhl;
@ -2884,9 +2881,7 @@ static int cus__load_module(struct cus *cus, struct conf_load *conf,
struct dwarf_cu type_dcu; struct dwarf_cu type_dcu;
int type_lsk = LSK__KEEPIT; int type_lsk = LSK__KEEPIT;
int res = cus__load_debug_types(cus, conf, mod, dw, elf, filename, int res = __cus__load_debug_types(conf, mod, dw, elf, filename, build_id, build_id_len, &type_cu, &type_dcu);
build_id, build_id_len,
&type_cu, &type_dcu);
if (res != 0) { if (res != 0) {
return res; return res;
} }