Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-08-05 Thread Greg Kroah-Hartman
On Wed, Aug 05, 2015 at 02:33:37PM -0400, Peter Hurley wrote: > On 07/23/2015 09:35 PM, Greg Kroah-Hartman wrote: > > On Sun, Jul 12, 2015 at 10:49:08PM -0400, Peter Hurley wrote: > >> Introduce tty_debug() macro to output uniform debug information for > >> tty core debug messages (function name

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-08-05 Thread Peter Hurley
On 07/23/2015 09:35 PM, Greg Kroah-Hartman wrote: > On Sun, Jul 12, 2015 at 10:49:08PM -0400, Peter Hurley wrote: >> Introduce tty_debug() macro to output uniform debug information for >> tty core debug messages (function name and tty name). >> >> Note: printk(KERN_DEBUG) is retained here over

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-08-05 Thread Peter Hurley
On 07/23/2015 09:35 PM, Greg Kroah-Hartman wrote: On Sun, Jul 12, 2015 at 10:49:08PM -0400, Peter Hurley wrote: Introduce tty_debug() macro to output uniform debug information for tty core debug messages (function name and tty name). Note: printk(KERN_DEBUG) is retained here over pr_debug()

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-08-05 Thread Greg Kroah-Hartman
On Wed, Aug 05, 2015 at 02:33:37PM -0400, Peter Hurley wrote: On 07/23/2015 09:35 PM, Greg Kroah-Hartman wrote: On Sun, Jul 12, 2015 at 10:49:08PM -0400, Peter Hurley wrote: Introduce tty_debug() macro to output uniform debug information for tty core debug messages (function name and tty

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-23 Thread Greg Kroah-Hartman
On Sun, Jul 12, 2015 at 10:49:08PM -0400, Peter Hurley wrote: > Introduce tty_debug() macro to output uniform debug information for > tty core debug messages (function name and tty name). > > Note: printk(KERN_DEBUG) is retained here over pr_debug() since > messages can be enabled in non-DEBUG

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-23 Thread Greg Kroah-Hartman
On Sun, Jul 12, 2015 at 10:49:08PM -0400, Peter Hurley wrote: Introduce tty_debug() macro to output uniform debug information for tty core debug messages (function name and tty name). Note: printk(KERN_DEBUG) is retained here over pr_debug() since messages can be enabled in non-DEBUG builds.

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-12 Thread Peter Hurley
On 07/13/2015 12:30 AM, Joe Perches wrote: > On Mon, 2015-07-13 at 00:25 -0400, Peter Hurley wrote: >> On 07/12/2015 11:47 PM, Joe Perches wrote: >>> On Sun, 2015-07-12 at 22:49 -0400, Peter Hurley wrote: Introduce tty_debug() macro to output uniform debug information for tty core debug

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-12 Thread Joe Perches
On Mon, 2015-07-13 at 00:25 -0400, Peter Hurley wrote: > On 07/12/2015 11:47 PM, Joe Perches wrote: > > On Sun, 2015-07-12 at 22:49 -0400, Peter Hurley wrote: > >> Introduce tty_debug() macro to output uniform debug information for > >> tty core debug messages (function name and tty name). > > []

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-12 Thread Peter Hurley
On 07/12/2015 11:47 PM, Joe Perches wrote: > On Sun, 2015-07-12 at 22:49 -0400, Peter Hurley wrote: >> Introduce tty_debug() macro to output uniform debug information for >> tty core debug messages (function name and tty name). > [] >> diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c > []

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-12 Thread Joe Perches
On Sun, 2015-07-12 at 22:49 -0400, Peter Hurley wrote: > Introduce tty_debug() macro to output uniform debug information for > tty core debug messages (function name and tty name). [] > diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c [] > @@ -768,7 +768,7 @@ static void

[PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-12 Thread Peter Hurley
Introduce tty_debug() macro to output uniform debug information for tty core debug messages (function name and tty name). Note: printk(KERN_DEBUG) is retained here over pr_debug() since messages can be enabled in non-DEBUG builds. Signed-off-by: Peter Hurley --- drivers/tty/tty_io.c | 41

[PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-12 Thread Peter Hurley
Introduce tty_debug() macro to output uniform debug information for tty core debug messages (function name and tty name). Note: printk(KERN_DEBUG) is retained here over pr_debug() since messages can be enabled in non-DEBUG builds. Signed-off-by: Peter Hurley pe...@hurleysoftware.com ---

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-12 Thread Joe Perches
On Sun, 2015-07-12 at 22:49 -0400, Peter Hurley wrote: Introduce tty_debug() macro to output uniform debug information for tty core debug messages (function name and tty name). [] diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c [] @@ -768,7 +768,7 @@ static void do_tty_hangup(struct

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-12 Thread Peter Hurley
On 07/12/2015 11:47 PM, Joe Perches wrote: On Sun, 2015-07-12 at 22:49 -0400, Peter Hurley wrote: Introduce tty_debug() macro to output uniform debug information for tty core debug messages (function name and tty name). [] diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c [] @@

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-12 Thread Joe Perches
On Mon, 2015-07-13 at 00:25 -0400, Peter Hurley wrote: On 07/12/2015 11:47 PM, Joe Perches wrote: On Sun, 2015-07-12 at 22:49 -0400, Peter Hurley wrote: Introduce tty_debug() macro to output uniform debug information for tty core debug messages (function name and tty name). [] diff

Re: [PATCH 2/7] tty: core: Add tty_debug() for printk(KERN_DEBUG) messages

2015-07-12 Thread Peter Hurley
On 07/13/2015 12:30 AM, Joe Perches wrote: On Mon, 2015-07-13 at 00:25 -0400, Peter Hurley wrote: On 07/12/2015 11:47 PM, Joe Perches wrote: On Sun, 2015-07-12 at 22:49 -0400, Peter Hurley wrote: Introduce tty_debug() macro to output uniform debug information for tty core debug messages