Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 334753
b: refs/heads/master
c: 0578a97
h: refs/heads/master
i:
  334751: 2ffe32e
v: v3
  • Loading branch information
Oleg Nesterov committed Sep 29, 2012
1 parent ffede94 commit ec41e34
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 746a9e6ba24af2ccf03279c99d435a1b88ca5d17
refs/heads/master: 0578a97098dab967ece4b025fe5eb4984c4c86c0
31 changes: 15 additions & 16 deletions trunk/kernel/events/uprobes.c
Original file line number Diff line number Diff line change
Expand Up @@ -1389,10 +1389,11 @@ bool uprobe_deny_signal(void)
*/
static bool can_skip_sstep(struct uprobe *uprobe, struct pt_regs *regs)
{
if (arch_uprobe_skip_sstep(&uprobe->arch, regs))
return true;

uprobe->flags &= ~UPROBE_SKIP_SSTEP;
if (uprobe->flags & UPROBE_SKIP_SSTEP) {
if (arch_uprobe_skip_sstep(&uprobe->arch, regs))
return true;
uprobe->flags &= ~UPROBE_SKIP_SSTEP;
}
return false;
}

Expand Down Expand Up @@ -1494,12 +1495,12 @@ static void handle_swbp(struct pt_regs *regs)
utask = add_utask();
/* Cannot allocate; re-execute the instruction. */
if (!utask)
goto cleanup_ret;
goto restart;
}

handler_chain(uprobe, regs);
if (uprobe->flags & UPROBE_SKIP_SSTEP && can_skip_sstep(uprobe, regs))
goto cleanup_ret;
if (can_skip_sstep(uprobe, regs))
goto out;

if (!pre_ssout(uprobe, regs, bp_vaddr)) {
arch_uprobe_enable_step(&uprobe->arch);
Expand All @@ -1508,15 +1509,13 @@ static void handle_swbp(struct pt_regs *regs)
return;
}

cleanup_ret:
if (!(uprobe->flags & UPROBE_SKIP_SSTEP))

/*
* cannot singlestep; cannot skip instruction;
* re-execute the instruction.
*/
instruction_pointer_set(regs, bp_vaddr);

restart:
/*
* cannot singlestep; cannot skip instruction;
* re-execute the instruction.
*/
instruction_pointer_set(regs, bp_vaddr);
out:
put_uprobe(uprobe);
}

Expand Down

0 comments on commit ec41e34

Please sign in to comment.