Files
linux-apfs/arch/sh/kernel/stacktrace.c
T

93 lines
2.1 KiB
C
Raw Normal View History

/*
* arch/sh/kernel/stacktrace.c
*
* Stack trace management functions
*
2008-09-13 01:44:03 +09:00
* Copyright (C) 2006 - 2008 Paul Mundt
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*/
#include <linux/sched.h>
#include <linux/stacktrace.h>
#include <linux/thread_info.h>
#include <linux/module.h>
2009-08-11 22:43:20 +01:00
#include <asm/unwinder.h>
#include <asm/ptrace.h>
2009-08-07 16:11:19 +01:00
#include <asm/stacktrace.h>
static int save_stack_stack(void *data, char *name)
{
return 0;
}
/*
* Save stack-backtrace addresses into a stack_trace buffer.
*/
2009-08-07 16:11:19 +01:00
static void save_stack_address(void *data, unsigned long addr, int reliable)
{
struct stack_trace *trace = data;
if (!reliable)
return;
2009-08-07 16:11:19 +01:00
if (trace->skip > 0) {
trace->skip--;
return;
}
if (trace->nr_entries < trace->max_entries)
trace->entries[trace->nr_entries++] = addr;
}
static const struct stacktrace_ops save_stack_ops = {
.stack = save_stack_stack,
.address = save_stack_address,
};
2007-05-09 18:55:14 +09:00
void save_stack_trace(struct stack_trace *trace)
{
2007-05-08 00:23:29 -07:00
unsigned long *sp = (unsigned long *)current_stack_pointer;
2009-08-11 22:43:20 +01:00
unwind_stack(current, NULL, sp, &save_stack_ops, trace);
if (trace->nr_entries < trace->max_entries)
trace->entries[trace->nr_entries++] = ULONG_MAX;
}
2008-07-03 09:17:55 +02:00
EXPORT_SYMBOL_GPL(save_stack_trace);
2008-09-13 01:44:03 +09:00
2009-08-07 16:11:19 +01:00
static void
save_stack_address_nosched(void *data, unsigned long addr, int reliable)
{
struct stack_trace *trace = (struct stack_trace *)data;
if (!reliable)
return;
2009-08-07 16:11:19 +01:00
if (in_sched_functions(addr))
return;
if (trace->skip > 0) {
trace->skip--;
return;
}
if (trace->nr_entries < trace->max_entries)
trace->entries[trace->nr_entries++] = addr;
}
static const struct stacktrace_ops save_stack_ops_nosched = {
.stack = save_stack_stack,
.address = save_stack_address_nosched,
};
2008-09-13 01:44:03 +09:00
void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
{
unsigned long *sp = (unsigned long *)tsk->thread.sp;
2009-08-11 22:43:20 +01:00
unwind_stack(current, NULL, sp, &save_stack_ops_nosched, trace);
if (trace->nr_entries < trace->max_entries)
trace->entries[trace->nr_entries++] = ULONG_MAX;
2008-09-13 01:44:03 +09:00
}
EXPORT_SYMBOL_GPL(save_stack_trace_tsk);