Loops through the filters callbacks of currently registered consumers to see if any consumer is interested in tracing this task. Signed-off-by: Srikar Dronamraju <srikar@xxxxxxxxxxxxxxxxxx> --- kernel/uprobes.c | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/kernel/uprobes.c b/kernel/uprobes.c index bbedcef..e3a3051 100644 --- a/kernel/uprobes.c +++ b/kernel/uprobes.c @@ -428,6 +428,24 @@ static void handler_chain(struct uprobe *uprobe, struct pt_regs *regs) } /* Acquires uprobe->consumer_rwsem */ +static bool filter_chain(struct uprobe *uprobe, struct task_struct *t) +{ + struct uprobe_consumer *consumer; + bool ret = false; + + down_read(&uprobe->consumer_rwsem); + for (consumer = uprobe->consumers; consumer; + consumer = consumer->next) { + if (!consumer->filter || consumer->filter(consumer, t)) { + ret = true; + break; + } + } + up_read(&uprobe->consumer_rwsem); + return ret; +} + +/* Acquires uprobe->consumer_rwsem */ static void add_consumer(struct uprobe *uprobe, struct uprobe_consumer *consumer) { -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxxx For more info on Linux MM, see: http://www.linux-mm.org/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>