函数源码 |
Source File:arch\x86\kernel\unwind_orc.c |
Create Date:2022-07-27 09:50:03 |
首页 | Copyright©Brick |
58 59 60 61 62 63 64 65 66 67 68 | #ifdef CONFIG_MODULES static struct orc_entry *orc_module_find(unsigned long ip) { struct module *mod; mod = __module_address(ip); if (!mod || !mod->arch.orc_unwind || !mod->arch.orc_unwind_ip) return NULL; return __orc_find(mod->arch.orc_unwind_ip, mod->arch.orc_unwind, mod->arch.num_orcs, ip); } |