summaryrefslogtreecommitdiff
path: root/include/linux/stacktrace.h
blob: 5da9794b2d782d27f3f77fde3418521a6a19a3e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __LINUX_STACKTRACE_H
#define __LINUX_STACKTRACE_H

#ifdef CONFIG_STACKTRACE
struct stack_trace {
	unsigned int nr_entries, max_entries;
	unsigned long *entries;
	int skip;	/* input argument: How many entries to skip */
};

extern void save_stack_trace(struct stack_trace *trace);
extern void save_stack_trace_tsk(struct task_struct *tsk,
				struct stack_trace *trace);

extern void print_stack_trace(struct stack_trace *trace, int spaces);
#else
# define save_stack_trace(trace)			do { } while (0)
# define save_stack_trace_tsk(tsk, trace)		do { } while (0)
# define print_stack_trace(trace, spaces)		do { } while (0)
#endif

#endif
kdepot implementation. Enable stackdepot for SLABAlexander Potapenko 2016-03-25mm, kasan: add GFP flags to KASAN APIAlexander Potapenko 2016-03-25mm, kasan: SLAB supportAlexander Potapenko 2016-03-09kasan: add functions to clear stack poisonMark Rutland 2015-11-20kasan: fix kmemleak false-positive in kasan_module_alloc()Andrey Ryabinin 2015-11-05kasan: use IS_ALIGNED in memory_is_poisoned_8()Xishi Qiu 2015-11-05kasan: Fix a type conversion errorWang Long 2015-11-05kasan: update reference to kasan prototype repoAndrey Konovalov 2015-11-05kasan: update log messagesAndrey Konovalov 2015-11-05kasan: update reported bug types for not user nor kernel memory accessesAndrey Konovalov 2015-09-17kasan: fix last shadow judgement in memory_is_poisoned_16()Xishi Qiu 2015-08-14.mailmap: Andrey Ryabinin has movedAndrey Ryabinin