Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-04-16 Thread James Hogan
On 30/03/13 02:27, Tejun Heo wrote: > Both dump_stack() and show_stack() are currently implemented by each > architecture. show_stack(NULL, NULL) dumps the backtrace for the > current task as does dump_stack(). On some archs, dump_stack() prints > extra information - pid, utsname and so on - in

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-04-16 Thread James Hogan
On 30/03/13 02:27, Tejun Heo wrote: Both dump_stack() and show_stack() are currently implemented by each architecture. show_stack(NULL, NULL) dumps the backtrace for the current task as does dump_stack(). On some archs, dump_stack() prints extra information - pid, utsname and so on - in

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-04-02 Thread Tejun Heo
Hello, Martin. On Tue, Apr 02, 2013 at 08:48:08AM +0200, Martin Schwidefsky wrote: > > The couple of extra fields aren't worth an s390 version of dump_stack() > > that differs from all other architectures. > > Please drop the s390 version as well. Thanks! > > Hmm, we would lose

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-04-02 Thread Jesper Nilsson
On Fri, Mar 29, 2013 at 07:27:06PM -0700, Tejun Heo wrote: > Both dump_stack() and show_stack() are currently implemented by each > architecture. show_stack(NULL, NULL) dumps the backtrace for the > current task as does dump_stack(). On some archs, dump_stack() prints > extra information - pid,

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-04-02 Thread Martin Schwidefsky
On Sat, 30 Mar 2013 12:45:35 +0100 Heiko Carstens wrote: > On Fri, Mar 29, 2013 at 07:27:06PM -0700, Tejun Heo wrote: > > Both dump_stack() and show_stack() are currently implemented by each > > architecture. show_stack(NULL, NULL) dumps the backtrace for the > > current task as does

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-04-02 Thread Martin Schwidefsky
On Sat, 30 Mar 2013 12:45:35 +0100 Heiko Carstens heiko.carst...@de.ibm.com wrote: On Fri, Mar 29, 2013 at 07:27:06PM -0700, Tejun Heo wrote: Both dump_stack() and show_stack() are currently implemented by each architecture. show_stack(NULL, NULL) dumps the backtrace for the current task

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-04-02 Thread Jesper Nilsson
On Fri, Mar 29, 2013 at 07:27:06PM -0700, Tejun Heo wrote: Both dump_stack() and show_stack() are currently implemented by each architecture. show_stack(NULL, NULL) dumps the backtrace for the current task as does dump_stack(). On some archs, dump_stack() prints extra information - pid,

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-04-02 Thread Tejun Heo
Hello, Martin. On Tue, Apr 02, 2013 at 08:48:08AM +0200, Martin Schwidefsky wrote: The couple of extra fields aren't worth an s390 version of dump_stack() that differs from all other architectures. Please drop the s390 version as well. Thanks! Hmm, we would lose

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-03-30 Thread Heiko Carstens
On Fri, Mar 29, 2013 at 07:27:06PM -0700, Tejun Heo wrote: > Both dump_stack() and show_stack() are currently implemented by each > architecture. show_stack(NULL, NULL) dumps the backtrace for the > current task as does dump_stack(). On some archs, dump_stack() prints > extra information - pid,

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-03-30 Thread Heiko Carstens
On Fri, Mar 29, 2013 at 07:27:06PM -0700, Tejun Heo wrote: Both dump_stack() and show_stack() are currently implemented by each architecture. show_stack(NULL, NULL) dumps the backtrace for the current task as does dump_stack(). On some archs, dump_stack() prints extra information - pid,

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-03-29 Thread Vineet Gupta
On 03/30/2013 07:57 AM, Tejun Heo wrote: > Both dump_stack() and show_stack() are currently implemented by each > architecture. show_stack(NULL, NULL) dumps the backtrace for the > current task as does dump_stack(). On some archs, dump_stack() prints > extra information - pid, utsname and so on

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-03-29 Thread David Miller
From: Tejun Heo Date: Fri, 29 Mar 2013 19:27:06 -0700 > Both dump_stack() and show_stack() are currently implemented by each > architecture. show_stack(NULL, NULL) dumps the backtrace for the > current task as does dump_stack(). On some archs, dump_stack() prints > extra information - pid,

[PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-03-29 Thread Tejun Heo
Both dump_stack() and show_stack() are currently implemented by each architecture. show_stack(NULL, NULL) dumps the backtrace for the current task as does dump_stack(). On some archs, dump_stack() prints extra information - pid, utsname and so on - in addition to the backtrace while the two are

[PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-03-29 Thread Tejun Heo
Both dump_stack() and show_stack() are currently implemented by each architecture. show_stack(NULL, NULL) dumps the backtrace for the current task as does dump_stack(). On some archs, dump_stack() prints extra information - pid, utsname and so on - in addition to the backtrace while the two are

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-03-29 Thread David Miller
From: Tejun Heo t...@kernel.org Date: Fri, 29 Mar 2013 19:27:06 -0700 Both dump_stack() and show_stack() are currently implemented by each architecture. show_stack(NULL, NULL) dumps the backtrace for the current task as does dump_stack(). On some archs, dump_stack() prints extra information

Re: [PATCH 3/5] dump_stack: consolidate dump_stack() implementations and unify their behaviors

2013-03-29 Thread Vineet Gupta
On 03/30/2013 07:57 AM, Tejun Heo wrote: Both dump_stack() and show_stack() are currently implemented by each architecture. show_stack(NULL, NULL) dumps the backtrace for the current task as does dump_stack(). On some archs, dump_stack() prints extra information - pid, utsname and so on - in