diff options
| -rw-r--r-- | arch/arc/kernel/kprobes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arc/kernel/kprobes.c b/arch/arc/kernel/kprobes.c index 47e42f29f927..3bfeacb674de 100644 --- a/arch/arc/kernel/kprobes.c +++ b/arch/arc/kernel/kprobes.c | |||
| @@ -440,7 +440,7 @@ static int __kprobes trampoline_probe_handler(struct kprobe *p, | |||
| 440 | { | 440 | { |
| 441 | struct kretprobe_instance *ri = NULL; | 441 | struct kretprobe_instance *ri = NULL; |
| 442 | struct hlist_head *head, empty_rp; | 442 | struct hlist_head *head, empty_rp; |
| 443 | struct hlist_node *node, *tmp; | 443 | struct hlist_node *tmp; |
| 444 | unsigned long flags, orig_ret_address = 0; | 444 | unsigned long flags, orig_ret_address = 0; |
| 445 | unsigned long trampoline_address = (unsigned long)&kretprobe_trampoline; | 445 | unsigned long trampoline_address = (unsigned long)&kretprobe_trampoline; |
| 446 | 446 | ||
| @@ -460,7 +460,7 @@ static int __kprobes trampoline_probe_handler(struct kprobe *p, | |||
| 460 | * real return address, and all the rest will point to | 460 | * real return address, and all the rest will point to |
| 461 | * kretprobe_trampoline | 461 | * kretprobe_trampoline |
| 462 | */ | 462 | */ |
| 463 | hlist_for_each_entry_safe(ri, node, tmp, head, hlist) { | 463 | hlist_for_each_entry_safe(ri, tmp, head, hlist) { |
| 464 | if (ri->task != current) | 464 | if (ri->task != current) |
| 465 | /* another task is sharing our hash bucket */ | 465 | /* another task is sharing our hash bucket */ |
| 466 | continue; | 466 | continue; |
| @@ -488,7 +488,7 @@ static int __kprobes trampoline_probe_handler(struct kprobe *p, | |||
| 488 | kretprobe_hash_unlock(current, &flags); | 488 | kretprobe_hash_unlock(current, &flags); |
| 489 | preempt_enable_no_resched(); | 489 | preempt_enable_no_resched(); |
| 490 | 490 | ||
| 491 | hlist_for_each_entry_safe(ri, node, tmp, &empty_rp, hlist) { | 491 | hlist_for_each_entry_safe(ri, tmp, &empty_rp, hlist) { |
| 492 | hlist_del(&ri->hlist); | 492 | hlist_del(&ri->hlist); |
| 493 | kfree(ri); | 493 | kfree(ri); |
| 494 | } | 494 | } |
