aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/riscv/Kconfig1
-rw-r--r--arch/riscv/Makefile3
-rwxr-xr-xscripts/recordmcount.pl5
3 files changed, 9 insertions, 0 deletions
diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
index 04807c7f64cc..c9ccc6ea4371 100644
--- a/arch/riscv/Kconfig
+++ b/arch/riscv/Kconfig
@@ -114,6 +114,7 @@ config ARCH_RV64I
114 select 64BIT 114 select 64BIT
115 select HAVE_FUNCTION_TRACER 115 select HAVE_FUNCTION_TRACER
116 select HAVE_FUNCTION_GRAPH_TRACER 116 select HAVE_FUNCTION_GRAPH_TRACER
117 select HAVE_FTRACE_MCOUNT_RECORD
117 118
118endchoice 119endchoice
119 120
diff --git a/arch/riscv/Makefile b/arch/riscv/Makefile
index 6719dd30ec5b..899226e0da7d 100644
--- a/arch/riscv/Makefile
+++ b/arch/riscv/Makefile
@@ -11,6 +11,9 @@
11LDFLAGS := 11LDFLAGS :=
12OBJCOPYFLAGS := -O binary 12OBJCOPYFLAGS := -O binary
13LDFLAGS_vmlinux := 13LDFLAGS_vmlinux :=
14ifeq ($(CONFIG_DYNAMIC_FTRACE),y)
15 LDFLAGS_vmlinux := --no-relax
16endif
14KBUILD_AFLAGS_MODULE += -fPIC 17KBUILD_AFLAGS_MODULE += -fPIC
15KBUILD_CFLAGS_MODULE += -fPIC 18KBUILD_CFLAGS_MODULE += -fPIC
16 19
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl
index 2033af758173..d44d55db7c06 100755
--- a/scripts/recordmcount.pl
+++ b/scripts/recordmcount.pl
@@ -376,6 +376,11 @@ if ($arch eq "x86_64") {
376 $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$"; 376 $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$";
377 $type = ".quad"; 377 $type = ".quad";
378 $alignment = 8; 378 $alignment = 8;
379} elsif ($arch eq "riscv") {
380 $function_regex = "^([0-9a-fA-F]+)\\s+<([^.0-9][0-9a-zA-Z_\\.]+)>:";
381 $mcount_regex = "^\\s*([0-9a-fA-F]+):\\sR_RISCV_CALL\\s_mcount\$";
382 $type = ".quad";
383 $alignment = 2;
379} else { 384} else {
380 die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD"; 385 die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD";
381} 386}