Hi Atsushi Atsushi Nemoto wrote: > Implement stacktrace interface by using unwind_stack(). > And enable lockdep support. > [snip] > + */ > +static inline void > +save_raw_context_stack(struct stack_trace *trace, unsigned int skip, > + unsigned long reg29) > +{ [snip] > + > +static inline struct pt_regs * > +save_context_stack(struct stack_trace *trace, unsigned int skip, > + struct task_struct *task, struct pt_regs *regs) > +{ > + unsigned long sp = regs->regs[29]; Any reasons why marking these 2 functions as inlined ? IMHO gcc is now good enough for this decision. Franck