core_plt           17 arch/ia64/include/asm/module.h 	struct elf64_shdr *core_plt;	/* core PLT section */
core_plt          435 arch/ia64/kernel/module.c 			mod->arch.core_plt = s;
core_plt          445 arch/ia64/kernel/module.c 	if (!mod->arch.core_plt || !mod->arch.init_plt || !mod->arch.got || !mod->arch.opd) {
core_plt          466 arch/ia64/kernel/module.c 	mod->arch.core_plt->sh_type = SHT_NOBITS;
core_plt          467 arch/ia64/kernel/module.c 	mod->arch.core_plt->sh_flags = SHF_EXECINSTR | SHF_ALLOC;
core_plt          468 arch/ia64/kernel/module.c 	mod->arch.core_plt->sh_addralign = 16;
core_plt          469 arch/ia64/kernel/module.c 	mod->arch.core_plt->sh_size = core_plts * sizeof(struct plt_entry);
core_plt          483 arch/ia64/kernel/module.c 	       __func__, mod->arch.core_plt->sh_size, mod->arch.init_plt->sh_size,
core_plt          551 arch/ia64/kernel/module.c 		plt = (void *) mod->arch.core_plt->sh_addr;
core_plt          552 arch/ia64/kernel/module.c 		plt_end = (void *) plt + mod->arch.core_plt->sh_size;