Lines Matching refs:ent
1382 struct kprobe_blacklist_entry *ent; in __within_kprobe_blacklist() local
1390 list_for_each_entry(ent, &kprobe_blacklist, list) { in __within_kprobe_blacklist()
1391 if (addr >= ent->start_addr && addr < ent->end_addr) in __within_kprobe_blacklist()
2465 struct kprobe_blacklist_entry *ent; in kprobe_add_ksym_blacklist() local
2472 ent = kmalloc(sizeof(*ent), GFP_KERNEL); in kprobe_add_ksym_blacklist()
2473 if (!ent) in kprobe_add_ksym_blacklist()
2475 ent->start_addr = entry; in kprobe_add_ksym_blacklist()
2476 ent->end_addr = entry + size; in kprobe_add_ksym_blacklist()
2477 INIT_LIST_HEAD(&ent->list); in kprobe_add_ksym_blacklist()
2478 list_add_tail(&ent->list, &kprobe_blacklist); in kprobe_add_ksym_blacklist()
2502 struct kprobe_blacklist_entry *ent, *n; in kprobe_remove_area_blacklist() local
2504 list_for_each_entry_safe(ent, n, &kprobe_blacklist, list) { in kprobe_remove_area_blacklist()
2505 if (ent->start_addr < start || ent->start_addr >= end) in kprobe_remove_area_blacklist()
2507 list_del(&ent->list); in kprobe_remove_area_blacklist()
2508 kfree(ent); in kprobe_remove_area_blacklist()
2862 struct kprobe_blacklist_entry *ent = in kprobe_blacklist_seq_show() local
2871 (void *)ent->start_addr); in kprobe_blacklist_seq_show()
2873 seq_printf(m, "0x%px-0x%px\t%ps\n", (void *)ent->start_addr, in kprobe_blacklist_seq_show()
2874 (void *)ent->end_addr, (void *)ent->start_addr); in kprobe_blacklist_seq_show()