Re: [PATCH v3 3/6] TTY: fix DTR being raised on hang up

2013-03-15 Thread Peter Hurley
On Fri, 2013-03-15 at 12:30 +0100, Johan Hovold wrote: > On Fri, Mar 15, 2013 at 07:03:08AM -0400, Peter Hurley wrote: > > On Fri, 2013-03-15 at 10:24 +0100, Johan Hovold wrote: > > > On Wed, Mar 13, 2013 at 03:43:43PM -0400, Peter Hurley wrote: > > > > On Thu, 2013-03-07 at 15:55 +0100, Johan Hovo

Re: [PATCH v3 3/6] TTY: fix DTR being raised on hang up

2013-03-15 Thread Johan Hovold
On Fri, Mar 15, 2013 at 07:03:08AM -0400, Peter Hurley wrote: > On Fri, 2013-03-15 at 10:24 +0100, Johan Hovold wrote: > > On Wed, Mar 13, 2013 at 03:43:43PM -0400, Peter Hurley wrote: > > > On Thu, 2013-03-07 at 15:55 +0100, Johan Hovold wrote: > > > > Make sure to check ASYNC_INITIALISED before r

Re: [PATCH v3 3/6] TTY: fix DTR being raised on hang up

2013-03-15 Thread Peter Hurley
On Fri, 2013-03-15 at 10:24 +0100, Johan Hovold wrote: > On Wed, Mar 13, 2013 at 03:43:43PM -0400, Peter Hurley wrote: > > On Thu, 2013-03-07 at 15:55 +0100, Johan Hovold wrote: > > > Make sure to check ASYNC_INITIALISED before raising DTR when waking up > > > from blocked open in tty_port_block_ti

Re: [PATCH v3 3/6] TTY: fix DTR being raised on hang up

2013-03-15 Thread Johan Hovold
On Wed, Mar 13, 2013 at 03:43:43PM -0400, Peter Hurley wrote: > On Thu, 2013-03-07 at 15:55 +0100, Johan Hovold wrote: > > Make sure to check ASYNC_INITIALISED before raising DTR when waking up > > from blocked open in tty_port_block_til_ready. > > > > Currently DTR could get raised at hang up as

Re: [PATCH v3 3/6] TTY: fix DTR being raised on hang up

2013-03-13 Thread Peter Hurley
On Thu, 2013-03-07 at 15:55 +0100, Johan Hovold wrote: > Make sure to check ASYNC_INITIALISED before raising DTR when waking up > from blocked open in tty_port_block_til_ready. > > Currently DTR could get raised at hang up as a blocked process would > raise DTR unconditionally before checking for

[PATCH v3 3/6] TTY: fix DTR being raised on hang up

2013-03-07 Thread Johan Hovold
Make sure to check ASYNC_INITIALISED before raising DTR when waking up from blocked open in tty_port_block_til_ready. Currently DTR could get raised at hang up as a blocked process would raise DTR unconditionally before checking for hang up and returning. Signed-off-by: Johan Hovold --- drivers