函数源码 |
Source File:kernel\jump_label.c |
Create Date:2022-07-27 15:10:22 |
首页 | Copyright©Brick |
308 309 310 311 312 313 314 315 | static int addr_conflict( struct jump_entry *entry, void *start, void *end) { if (jump_entry_code(entry) <= (unsigned long )end && jump_entry_code(entry) + JUMP_LABEL_NOP_SIZE > (unsigned long )start) return 1; return 0; } |