#ifndef __LINUX_STACKTRACE_H #define __LINUX_STACKTRACE_H struct task_struct; struct pt_regs; #ifdef CONFIG_STACKTRACE struct task_struct; 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_regs(struct pt_regs *regs, 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); #ifdef CONFIG_USER_STACKTRACE_SUPPORT extern void save_stack_trace_user(struct stack_trace *trace); #else # define save_stack_trace_user(trace) do { } while (0) #endif #else # define save_stack_trace(trace) do { } while (0) # define save_stack_trace_tsk(tsk, trace) do { } while (0) # define save_stack_trace_user(trace) do { } while (0) # define print_stack_trace(trace, spaces) do { } while (0) #endif #endif nux-2.6.12.y'>linux-2.6.12.y Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/mm/zbud.c
AgeCommit message (Expand)Author
2016-01-15mm/zbud.c: use list_last_entry() instead of list_tail_entry()Geliang Tang
2015-11-06mm: zsmalloc: constify struct zs_pool nameSergey SENOZHATSKY
2015-09-08mm: zbud: constify the zbud_opsKrzysztof Kozlowski
2015-09-08mm: zpool: constify the zpool_opsKrzysztof Kozlowski
2015-06-25zpool: remove zpool_evict()Dan Streetman
2015-02-12mm/zpool: add name argument to create zpoolGanesh Mahendran
2014-12-13mm/zbud: init user ops only when it is neededHeesub Shin
2014-11-20Merge Linus' tree to be be to apply submitted patches to newer code thanJiri Kosina
2014-11-13zbud, zswap: change module author emailSeth Jennings
2014-10-09zbud: avoid accessing last unused freelistChao Yu
2014-08-29mm/zpool: use prefixed module loadingKees Cook
2014-08-06mm/zpool: zbud/zsmalloc implement zpoolDan Streetman
2014-08-06mm/zbud: change zbud_alloc size type to size_tDan Streetman
2014-06-04mm/zbud.c: make size unsigned like unique callsiteFabian Frederick
2013-09-11mm/zbud: fix some trivial typos in commentsJianguo Wu
2013-07-31mm: zbud: fix condition check on allocation sizeHeesub Shin
2013-07-10zbud: add to mm/Seth Jennings