diff options
author | Anton Arapov <anton@redhat.com> | 2013-04-03 12:00:38 -0400 |
---|---|---|
committer | Oleg Nesterov <oleg@redhat.com> | 2013-04-13 09:31:58 -0400 |
commit | a0d60aef4be10c498809c2985fc9c28fd503880d (patch) | |
tree | cd2af070b7deced3c30a7f78f398a9d8861d9385 /kernel/events | |
parent | ded49c55309a37129dc30a5f0e85b8a64e5c1716 (diff) |
uretprobes: Remove -ENOSYS as return probes implemented
Enclose return probes implementation.
Signed-off-by: Anton Arapov <anton@redhat.com>
Acked-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Diffstat (limited to 'kernel/events')
-rw-r--r-- | kernel/events/uprobes.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c index 6ab00e090c87..f3569747d629 100644 --- a/kernel/events/uprobes.c +++ b/kernel/events/uprobes.c | |||
@@ -851,10 +851,6 @@ int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer * | |||
851 | if (!uc->handler && !uc->ret_handler) | 851 | if (!uc->handler && !uc->ret_handler) |
852 | return -EINVAL; | 852 | return -EINVAL; |
853 | 853 | ||
854 | /* TODO: Implement return probes */ | ||
855 | if (uc->ret_handler) | ||
856 | return -ENOSYS; | ||
857 | |||
858 | /* Racy, just to catch the obvious mistakes */ | 854 | /* Racy, just to catch the obvious mistakes */ |
859 | if (offset > i_size_read(inode)) | 855 | if (offset > i_size_read(inode)) |
860 | return -EINVAL; | 856 | return -EINVAL; |