tty: Replace ASYNC_INITIALIZED bit and update atomically
Replace ASYNC_INITIALIZED bit in the tty_port::flags field with TTY_PORT_INITIALIZED bit in the tty_port::iflags field. Introduce helpers tty_port_set_initialized() and tty_port_initialized() to abstract atomic bit ops. Note: the transforms for test_and_set_bit() and test_and_clear_bit() are unnecessary as the state transitions are already mutually exclusive; the tty lock prevents concurrent open/close/hangup. Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
80f02d5424
commit
d41861ca19
@@ -324,7 +324,7 @@ static int ircomm_tty_set_serial_info(struct ircomm_tty_cb *self,
|
||||
|
||||
check_and_exit:
|
||||
|
||||
if (self->flags & ASYNC_INITIALIZED) {
|
||||
if (tty_port_initialized(self)) {
|
||||
if (((old_state.flags & ASYNC_SPD_MASK) !=
|
||||
(self->flags & ASYNC_SPD_MASK)) ||
|
||||
(old_driver.custom_divisor != driver->custom_divisor)) {
|
||||
|
Reference in New Issue
Block a user