crypto: xcbc - Fix alignment calculation of xcbc_tfm_ctx
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / kernel / dumpstack.h
blob81086c227ab7cafe28c0c608f1b3eb2bce72b1c0
1 /*
2 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
4 */
6 #ifndef DUMPSTACK_H
7 #define DUMPSTACK_H
9 #ifdef CONFIG_X86_32
10 #define STACKSLOTS_PER_LINE 8
11 #define get_bp(bp) asm("movl %%ebp, %0" : "=r" (bp) :)
12 #else
13 #define STACKSLOTS_PER_LINE 4
14 #define get_bp(bp) asm("movq %%rbp, %0" : "=r" (bp) :)
15 #endif
17 extern unsigned long
18 print_context_stack(struct thread_info *tinfo,
19 unsigned long *stack, unsigned long bp,
20 const struct stacktrace_ops *ops, void *data,
21 unsigned long *end, int *graph);
23 extern void
24 show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
25 unsigned long *stack, unsigned long bp, char *log_lvl);
27 extern void
28 show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
29 unsigned long *sp, unsigned long bp, char *log_lvl);
31 extern unsigned int code_bytes;
33 /* The form of the top of the frame on the stack */
34 struct stack_frame {
35 struct stack_frame *next_frame;
36 unsigned long return_address;
38 #endif