Symbol: got_entry
arch/alpha/kernel/module.c
121
struct got_entry *g, *n;
arch/alpha/kernel/module.c
23
struct got_entry *next;
arch/alpha/kernel/module.c
30
struct got_entry *chains, Elf64_Xword *poffset)
arch/alpha/kernel/module.c
35
struct got_entry *g;
arch/alpha/kernel/module.c
67
struct got_entry *chains;
arch/alpha/kernel/module.c
96
chains = kzalloc_objs(struct got_entry, nsyms);
arch/loongarch/include/asm/module.h
113
static inline struct got_entry *get_got_entry(Elf_Addr val,
arch/loongarch/include/asm/module.h
118
struct got_entry *got = (struct got_entry *)sechdrs[sec->shndx].sh_addr;
arch/loongarch/include/asm/module.h
55
static inline struct got_entry emit_got_entry(Elf_Addr val)
arch/loongarch/include/asm/module.h
57
return (struct got_entry) { val };
arch/loongarch/kernel/module-sections.c
158
got_sec->sh_size = (num_gots + 1) * sizeof(struct got_entry);
arch/loongarch/kernel/module-sections.c
17
struct got_entry *got = get_got_entry(val, sechdrs, got_sec);
arch/loongarch/kernel/module-sections.c
23
got = (struct got_entry *)sechdrs[got_sec->shndx].sh_addr;
arch/parisc/kernel/module.c
323
mod_mem->size += gots * sizeof(struct got_entry);
arch/parisc/kernel/module.c
339
struct got_entry *got;
arch/parisc/kernel/module.c
354
pr_debug("GOT ENTRY %d[%lx] val %lx\n", i, i*sizeof(struct got_entry),
arch/parisc/kernel/module.c
356
return i * sizeof(struct got_entry);
arch/riscv/include/asm/module.h
31
static inline struct got_entry emit_got_entry(unsigned long val)
arch/riscv/include/asm/module.h
33
return (struct got_entry) {val};
arch/riscv/include/asm/module.h
36
static inline struct got_entry *get_got_entry(unsigned long val,
arch/riscv/include/asm/module.h
39
struct got_entry *got = (struct got_entry *)(sec->shdr->sh_addr);
arch/riscv/include/asm/module.h
92
struct got_entry *got_plt = (struct got_entry *)sec->shdr->sh_addr;
arch/riscv/kernel/module-sections.c
18
struct got_entry *got = get_got_entry(val, got_sec);
arch/riscv/kernel/module-sections.c
202
mod->arch.got.shdr->sh_size = (num_gots + 1) * sizeof(struct got_entry);
arch/riscv/kernel/module-sections.c
209
mod->arch.got_plt.shdr->sh_size = (num_plts + 1) * sizeof(struct got_entry);
arch/riscv/kernel/module-sections.c
24
got = (struct got_entry *)got_sec->shdr->sh_addr;
arch/riscv/kernel/module-sections.c
36
struct got_entry *got_plt;
arch/riscv/kernel/module-sections.c
45
got_plt = (struct got_entry *)got_plt_sec->shdr->sh_addr;