Lines Matching refs:o_tty
380 struct tty_struct *o_tty; in pty_common_install() local
397 o_tty = alloc_tty_struct(driver->other, idx); in pty_common_install()
398 if (!o_tty) in pty_common_install()
401 tty_set_lock_subclass(o_tty); in pty_common_install()
402 lockdep_set_subclass(&o_tty->termios_rwsem, TTY_LOCK_SLAVE); in pty_common_install()
411 retval = tty_init_termios(o_tty); in pty_common_install()
415 driver->other->ttys[idx] = o_tty; in pty_common_install()
420 memset(&o_tty->termios_locked, 0, sizeof(tty->termios_locked)); in pty_common_install()
421 o_tty->termios = driver->other->init_termios; in pty_common_install()
429 tty->link = o_tty; in pty_common_install()
430 o_tty->link = tty; in pty_common_install()
435 o_tty->port = ports[0]; in pty_common_install()
437 o_tty->port->itty = o_tty; in pty_common_install()
439 tty_buffer_set_lock_subclass(o_tty->port); in pty_common_install()
443 o_tty->count++; in pty_common_install()
449 deinitialize_tty_struct(o_tty); in pty_common_install()
450 free_tty_struct(o_tty); in pty_common_install()