[RFC PATCH v3 6/6] uretprobes: implemented, thus remove -ENOSYS

From: Anton Arapov
Date: Thu Feb 28 2013 - 06:01:26 EST


1/6 and 6/6 patches are here to enclose return probes implementation
as well as prohibit uprobe_register() routine with no consumer set.

v3 changes: (the patch is introduced in v3)
- remove 'TODO' as return probes implemented now

Signed-off-by: Anton Arapov <anton@xxxxxxxxxx>
---
kernel/events/uprobes.c | 4 ----
1 file changed, 4 deletions(-)

diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c
index deacb35..7ae338b 100644
--- a/kernel/events/uprobes.c
+++ b/kernel/events/uprobes.c
@@ -838,10 +838,6 @@ int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *
if (!uc->handler && !uc->rp_handler)
return -EINVAL;

- /* TODO: Implement return probes */
- if (uc->rp_handler)
- return -ENOSYS;
-
/* Racy, just to catch the obvious mistakes */
if (offset > i_size_read(inode))
return -EINVAL;
--
1.8.1.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/