]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
arm64: ftrace: always pass instrumented pc in x0
authorMark Rutland <mark.rutland@arm.com>
Thu, 15 Nov 2018 22:42:03 +0000 (22:42 +0000)
committerWill Deacon <will.deacon@arm.com>
Fri, 30 Nov 2018 13:29:05 +0000 (13:29 +0000)
The core ftrace hooks take the instrumented PC in x0, but for some
reason arm64's prepare_ftrace_return() takes this in x1.

For consistency, let's flip the argument order and always pass the
instrumented PC in x0.

There should be no functional change as a result of this patch.

Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Cc: AKASHI Takahiro <takahiro.akashi@linaro.org>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Torsten Duwe <duwe@suse.de>
Cc: Will Deacon <will.deacon@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
arch/arm64/kernel/entry-ftrace.S
arch/arm64/kernel/ftrace.c

index 0cd8f828d9c3ded4174436248d408e361ac4ac71..032e24d2d554ce34b712725f54d4dafdf7dacbae 100644 (file)
@@ -176,10 +176,10 @@ ENDPROC(ftrace_stub)
  * and run return_to_handler() later on its exit.
  */
 ENTRY(ftrace_graph_caller)
-       mcount_get_lr_addr        x0    //     pointer to function's saved lr
-       mcount_get_pc             x1    //     function's pc
+       mcount_get_pc             x0    //     function's pc
+       mcount_get_lr_addr        x1    //     pointer to function's saved lr
        mcount_get_parent_fp      x2    //     parent's fp
-       bl      prepare_ftrace_return   // prepare_ftrace_return(&lr, pc, fp)
+       bl      prepare_ftrace_return   // prepare_ftrace_return(pc, &lr, fp)
 
        mcount_exit
 ENDPROC(ftrace_graph_caller)
index 2135665a8ab3ec50399c4ce9369fd5d478c55b70..b4bd46bdc4d23da0f5ce18b7bf255c8e3bb01aa7 100644 (file)
@@ -211,7 +211,7 @@ int __init ftrace_dyn_arch_init(void)
  *
  * Note that @frame_pointer is used only for sanity check later.
  */
-void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr,
+void prepare_ftrace_return(unsigned long self_addr, unsigned long *parent,
                           unsigned long frame_pointer)
 {
        unsigned long return_hooker = (unsigned long)&return_to_handler;