Re: [PATCH 0/8] Replace kernel-defined ASYNC_ bits

2016-04-28 Thread Grant Edwards
On Thu, Apr 28, 2016 at 01:36:43PM -0700, Greg Kroah-Hartman wrote: > On Sat, Apr 09, 2016 at 05:53:19PM -0700, Peter Hurley wrote: > > As outlined in my January email ("RFC: out-of-tree tty driver breakage"), > > the tty/serial core uses 5 bits in the tty_port.flags field to manage > > state. They

Re: [PATCH 0/8] Replace kernel-defined ASYNC_ bits

2016-04-28 Thread Greg Kroah-Hartman
On Sat, Apr 09, 2016 at 05:53:19PM -0700, Peter Hurley wrote: > As outlined in my January email ("RFC: out-of-tree tty driver breakage"), > the tty/serial core uses 5 bits in the tty_port.flags field to manage > state. They are: > > ASYNCB_INITIALIZED > ASYNCB_SUSPENDED > ASYNCB_NORMAL_ACTIVE > AS

[PATCH 0/8] Replace kernel-defined ASYNC_ bits

2016-04-09 Thread Peter Hurley
As outlined in my January email ("RFC: out-of-tree tty driver breakage"), the tty/serial core uses 5 bits in the tty_port.flags field to manage state. They are: ASYNCB_INITIALIZED ASYNCB_SUSPENDED ASYNCB_NORMAL_ACTIVE ASYNCB_CTS_FLOW ASYNCB_CHECK_CD (NB: ASYNC_CLOSING was recently removed) Howev