summaryrefslogtreecommitdiffstats
path: root/arch/csky/kernel/probes/Makefile
diff options
context:
space:
mode:
authorGuo Ren <guoren@linux.alibaba.com>2020-04-02 19:52:27 +0800
committerGuo Ren <guoren@linux.alibaba.com>2020-04-03 11:37:51 +0800
commit8f6bb793b2be82f1f73bfb416486f156f70b4314 (patch)
tree783eef0d08ebaa652b335db205f99e970d4a2c0d /arch/csky/kernel/probes/Makefile
parent33e53ae1ce413a081254e686d9b27cc1b3585e2f (diff)
downloadlinux-stable-8f6bb793b2be82f1f73bfb416486f156f70b4314.tar.gz
linux-stable-8f6bb793b2be82f1f73bfb416486f156f70b4314.tar.bz2
linux-stable-8f6bb793b2be82f1f73bfb416486f156f70b4314.zip
csky: Add uprobes support
This patch adds support for uprobes on csky architecture. Just like kprobe, it support single-step and simulate instructions. Signed-off-by: Guo Ren <guoren@linux.alibaba.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'arch/csky/kernel/probes/Makefile')
-rw-r--r--arch/csky/kernel/probes/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/csky/kernel/probes/Makefile b/arch/csky/kernel/probes/Makefile
index 3a857d081958..1c7c6e6cb25b 100644
--- a/arch/csky/kernel/probes/Makefile
+++ b/arch/csky/kernel/probes/Makefile
@@ -2,5 +2,6 @@
obj-$(CONFIG_KPROBES) += kprobes.o decode-insn.o simulate-insn.o
obj-$(CONFIG_KPROBES) += kprobes_trampoline.o
obj-$(CONFIG_KPROBES_ON_FTRACE) += ftrace.o
+obj-$(CONFIG_UPROBES) += uprobes.o decode-insn.o simulate-insn.o
CFLAGS_REMOVE_simulate-insn.o = $(CC_FLAGS_FTRACE)