65 lines
1.7 KiB
C
65 lines
1.7 KiB
C
|
/*
|
||
|
* arch/arm64/kernel/ftrace.c
|
||
|
*
|
||
|
* Copyright (C) 2013 Linaro Limited
|
||
|
* Author: AKASHI Takahiro <takahiro.akashi@linaro.org>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 as
|
||
|
* published by the Free Software Foundation.
|
||
|
*/
|
||
|
|
||
|
#include <linux/ftrace.h>
|
||
|
#include <linux/swab.h>
|
||
|
#include <linux/uaccess.h>
|
||
|
|
||
|
#include <asm/cacheflush.h>
|
||
|
#include <asm/ftrace.h>
|
||
|
#include <asm/insn.h>
|
||
|
|
||
|
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
|
||
|
/*
|
||
|
* function_graph tracer expects ftrace_return_to_handler() to be called
|
||
|
* on the way back to parent. For this purpose, this function is called
|
||
|
* in _mcount() or ftrace_caller() to replace return address (*parent) on
|
||
|
* the call stack to return_to_handler.
|
||
|
*
|
||
|
* Note that @frame_pointer is used only for sanity check later.
|
||
|
*/
|
||
|
void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr,
|
||
|
unsigned long frame_pointer)
|
||
|
{
|
||
|
unsigned long return_hooker = (unsigned long)&return_to_handler;
|
||
|
unsigned long old;
|
||
|
struct ftrace_graph_ent trace;
|
||
|
int err;
|
||
|
|
||
|
if (unlikely(atomic_read(¤t->tracing_graph_pause)))
|
||
|
return;
|
||
|
|
||
|
/*
|
||
|
* Note:
|
||
|
* No protection against faulting at *parent, which may be seen
|
||
|
* on other archs. It's unlikely on AArch64.
|
||
|
*/
|
||
|
old = *parent;
|
||
|
*parent = return_hooker;
|
||
|
|
||
|
trace.func = self_addr;
|
||
|
trace.depth = current->curr_ret_stack + 1;
|
||
|
|
||
|
/* Only trace if the calling function expects to */
|
||
|
if (!ftrace_graph_entry(&trace)) {
|
||
|
*parent = old;
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
err = ftrace_push_return_trace(old, self_addr, &trace.depth,
|
||
|
frame_pointer);
|
||
|
if (err == -EBUSY) {
|
||
|
*parent = old;
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
|