]> git.baikalelectronics.ru Git - kernel.git/commit
uprobes: Introduce filter_chain()
authorOleg Nesterov <oleg@redhat.com>
Thu, 22 Nov 2012 17:30:15 +0000 (18:30 +0100)
committerOleg Nesterov <oleg@redhat.com>
Fri, 8 Feb 2013 16:47:02 +0000 (17:47 +0100)
commit6c42d892c6abf3736e861b7f8ccfa2fa68703e70
treee596a5f686ed4ac79ab95455622648bc0321a406
parentf1024b49df52b37bbb7cc32a879e30855d8264e1
uprobes: Introduce filter_chain()

Add the new helper filter_chain(). Currently it is only placeholder,
the comment explains what is should do. We will change it later to
consult every consumer to decide whether we need to install the swbp.
Until then it works as if any consumer returns true, this matches the
current behavior.

Change install_breakpoint() to call filter_chain() instead of checking
uprobe->consumers != NULL. We obviously need this, and this equally
closes the race with _unregister().

Change remove_breakpoint() to call this helper too. Currently this is
pointless because remove_breakpoint() is only called when the last
consumer goes away, but we will change this.

Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Acked-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
kernel/events/uprobes.c