diff options
author | Wang Nan <wangnan0@huawei.com> | 2015-01-05 06:29:21 -0500 |
---|---|---|
committer | Jon Medhurst <tixy@linaro.org> | 2015-01-13 11:10:06 -0500 |
commit | 6624cf651f1a14363d0385f36dc255d304ac7ebb (patch) | |
tree | 38cb38d33f5faa96e36814caa3fa63bfe322c193 /arch/arm/probes/kprobes/Makefile | |
parent | 83803d97dae1eaf6850a45ef8ee179cc66e147dc (diff) |
ARM: kprobes: collects stack consumption for store instructions
This patch uses the previously introduced checker functionality on
store instructions to record their stack consumption information to
arch_probes_insn.
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Reviewed-by: Jon Medhurst <tixy@linaro.org>
Signed-off-by: Jon Medhurst <tixy@linaro.org>
Diffstat (limited to 'arch/arm/probes/kprobes/Makefile')
-rw-r--r-- | arch/arm/probes/kprobes/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/probes/kprobes/Makefile b/arch/arm/probes/kprobes/Makefile index eb38a428ecd6..bc8d504c3d78 100644 --- a/arch/arm/probes/kprobes/Makefile +++ b/arch/arm/probes/kprobes/Makefile | |||
@@ -1,11 +1,11 @@ | |||
1 | obj-$(CONFIG_KPROBES) += core.o actions-common.o | 1 | obj-$(CONFIG_KPROBES) += core.o actions-common.o checkers-common.o |
2 | obj-$(CONFIG_ARM_KPROBES_TEST) += test-kprobes.o | 2 | obj-$(CONFIG_ARM_KPROBES_TEST) += test-kprobes.o |
3 | test-kprobes-objs := test-core.o | 3 | test-kprobes-objs := test-core.o |
4 | 4 | ||
5 | ifdef CONFIG_THUMB2_KERNEL | 5 | ifdef CONFIG_THUMB2_KERNEL |
6 | obj-$(CONFIG_KPROBES) += actions-thumb.o | 6 | obj-$(CONFIG_KPROBES) += actions-thumb.o checkers-thumb.o |
7 | test-kprobes-objs += test-thumb.o | 7 | test-kprobes-objs += test-thumb.o |
8 | else | 8 | else |
9 | obj-$(CONFIG_KPROBES) += actions-arm.o | 9 | obj-$(CONFIG_KPROBES) += actions-arm.o checkers-arm.o |
10 | test-kprobes-objs += test-arm.o | 10 | test-kprobes-objs += test-arm.o |
11 | endif | 11 | endif |