Lines Matching refs:ports
376 struct tty_port *ports[2]; in pty_common_install() local
384 ports[0] = kmalloc(sizeof **ports, GFP_KERNEL); in pty_common_install()
385 ports[1] = kmalloc(sizeof **ports, GFP_KERNEL); in pty_common_install()
386 if (!ports[0] || !ports[1]) in pty_common_install()
426 tty_port_init(ports[0]); in pty_common_install()
427 tty_port_init(ports[1]); in pty_common_install()
428 tty_buffer_set_limit(ports[0], 8192); in pty_common_install()
429 tty_buffer_set_limit(ports[1], 8192); in pty_common_install()
430 o_tty->port = ports[0]; in pty_common_install()
431 tty->port = ports[1]; in pty_common_install()
449 kfree(ports[0]); in pty_common_install()
450 kfree(ports[1]); in pty_common_install()