Searched refs:new_func (Results 1 – 14 of 14) sorted by relevance
/openbmc/linux/tools/bpf/bpftool/ |
H A D | cfg.c | 65 struct func_node *new_func, *func; in cfg_append_func() local 75 new_func = calloc(1, sizeof(*new_func)); in cfg_append_func() 76 if (!new_func) { in cfg_append_func() 80 new_func->start = insn; in cfg_append_func() 81 new_func->idx = cfg->func_num; in cfg_append_func() 82 list_add(&new_func->l, &func->l); in cfg_append_func() 85 return new_func; in cfg_append_func()
|
/openbmc/linux/samples/livepatch/ |
H A D | livepatch-shadow-fix2.c | 98 .new_func = livepatch_fix2_dummy_check, 102 .new_func = livepatch_fix2_dummy_free,
|
H A D | livepatch-shadow-fix1.c | 139 .new_func = livepatch_fix1_dummy_alloc, 143 .new_func = livepatch_fix1_dummy_free,
|
H A D | livepatch-sample.c | 42 .new_func = livepatch_cmdline_proc_show,
|
H A D | livepatch-callbacks-demo.c | 144 .new_func = patched_work_func,
|
/openbmc/linux/include/linux/ |
H A D | livepatch.h | 59 void *new_func; member 186 func->old_name || func->new_func || func->old_sympos; \
|
/openbmc/linux/lib/livepatch/ |
H A D | test_klp_livepatch.c | 21 .new_func = livepatch_cmdline_proc_show,
|
H A D | test_klp_atomic_replace.c | 25 .new_func = livepatch_meminfo_proc_show,
|
H A D | test_klp_callbacks_demo.c | 67 .new_func = patched_work_func,
|
/openbmc/linux/kernel/livepatch/ |
H A D | transition.c | 226 func_addr = (unsigned long)func->new_func; in klp_check_stack_func() 244 func_addr = (unsigned long)prev->new_func; in klp_check_stack_func()
|
H A D | core.c | 660 func->new_func = NULL; in klp_free_object_loaded() 767 if (!func->new_func && !func->nop) in klp_init_func() 858 func->new_func = func->old_func; in klp_init_object_loaded() 860 ret = kallsyms_lookup_size_offset((unsigned long)func->new_func, in klp_init_object_loaded()
|
H A D | patch.c | 121 ftrace_regs_set_instruction_pointer(fregs, (unsigned long)func->new_func); in klp_ftrace_handler()
|
/openbmc/qemu/target/i386/ |
H A D | sev.c | 850 SnpCpuidFunc *old_func, *new_func; in sev_snp_cpuid_report_mismatches() local 853 new_func = &new->entries[i]; in sev_snp_cpuid_report_mismatches() 855 if (memcmp(old_func, new_func, sizeof(SnpCpuidFunc))) { in sev_snp_cpuid_report_mismatches() 861 new_func->eax, new_func->ebx, new_func->ecx, new_func->edx); in sev_snp_cpuid_report_mismatches()
|
/openbmc/qemu/hw/sd/ |
H A D | sd.c | 1182 int i, mode, new_func; in sd_function_switch() local 1202 new_func = (arg >> (i * 4)) & 0x0f; in sd_function_switch() 1203 if (mode && new_func != 0x0f) in sd_function_switch() 1204 sd->function_group[i] = new_func; in sd_function_switch() 1205 sd->data[16 - (i >> 1)] |= new_func << ((i % 2) * 4); in sd_function_switch()
|