Lines Matching refs:end
2395 int kprobe_add_area_blacklist(unsigned long start, unsigned long end) in kprobe_add_area_blacklist() argument
2400 for (entry = start; entry < end; entry += ret) { in kprobe_add_area_blacklist()
2411 static void kprobe_remove_area_blacklist(unsigned long start, unsigned long end) in kprobe_remove_area_blacklist() argument
2416 if (ent->start_addr < start || ent->start_addr >= end) in kprobe_remove_area_blacklist()
2464 unsigned long *end) in populate_kprobe_blacklist() argument
2470 for (iter = start; iter < end; iter++) { in populate_kprobe_blacklist()
2494 unsigned long start, end; in add_module_kprobe_blacklist() local
2504 end = start + mod->kprobes_text_size; in add_module_kprobe_blacklist()
2505 kprobe_add_area_blacklist(start, end); in add_module_kprobe_blacklist()
2510 end = start + mod->noinstr_text_size; in add_module_kprobe_blacklist()
2511 kprobe_add_area_blacklist(start, end); in add_module_kprobe_blacklist()
2517 unsigned long start, end; in remove_module_kprobe_blacklist() local
2527 end = start + mod->kprobes_text_size; in remove_module_kprobe_blacklist()
2528 kprobe_remove_area_blacklist(start, end); in remove_module_kprobe_blacklist()
2533 end = start + mod->noinstr_text_size; in remove_module_kprobe_blacklist()
2534 kprobe_remove_area_blacklist(start, end); in remove_module_kprobe_blacklist()
2605 void *end = (void *)(&__init_end); in kprobe_free_init_mem() local
2616 if (start <= (void *)p->addr && (void *)p->addr < end) in kprobe_free_init_mem()