public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/25] TTY buffer in tty_port -- prep no. 3
@ 2012-06-04 11:35 Jiri Slaby
  2012-06-04 11:35 ` [PATCH 01/24] TTY: cyclades, add local pointer for card Jiri Slaby
                   ` (23 more replies)
  0 siblings, 24 replies; 45+ messages in thread
From: Jiri Slaby @ 2012-06-04 11:35 UTC (permalink / raw)
  To: gregkh; +Cc: alan, linux-kernel, jirislaby

Hi,

this is the third series of patches which allow tty buffers to be
moved from tty_struct (present from open to close/hangup) to tty_port
(present as long as the device). This will allow us to get rid of the
tty refcounting in the interrupt service routines and other hot paths
after we are done. This is because we won't need to handle races among
ISRs, timers, hangups and others, because tty_port lives as long as an
interrupt/timer tick may occur. Unlike tty_struct.

In this series, the third batch of drivers is converted to use
tty_port.  Read: all drivers now have a tty_port. Second, we start
assigning tty_port to tty_struct->port in this series. So the TTY
layer now finally has an access to a tty_port in most of the drivers.
This means not every driver uses the new shiny interfaces creating
tty_struct => tty_port links automatically. I ran out of time (I had
to do other things) to convert them all... The rest is going to be
converted later.

Standard x86 stuff was runtime-tested. The rest is only checked to be
compilation-errors free.

Jiri Slaby (25):
  TTY: ircomm, add tty_port
  TTY: ircomm, use close times from tty_port
  TTY: ircomm, use open counts from tty_port
  TTY: ircomm, use flags from tty_port
  TTY: ircomm, revamp locking
  TTY: ircomm, use tty from tty_port
  TTY: ircomm, define local tty_port
  TTY: ircomm, define carrier routines
  TTY: ircomm, use tty_port_close_end helper
  TTY: ircomm, use tty_port_close_start helper
  TTY: um/line, add tty_port
  TTY: um/line, use tty from tty_port
  PTY: remove one empty ops->remove
  PTY: merge pty_install implementations
  PTY: add tty_port
  TTY: vt, remove con_schedule_flip
  TTY: provide drivers with tty_port_install
  TTY: serial_core, add ->install
  TTY: vt, add ->install
  TTY: usb-serial, use tty_port_install
  TTY: centralize fail paths in tty_register_driver
  TTY: add ports array to tty_driver
  TTY: add tty_port_register_device helper
  TTY: cyclades, add local pointer for card
  TTY: use tty_port_register_device

 arch/um/drivers/chan_kern.c         |    4 +-
 arch/um/drivers/line.c              |   35 +++--
 arch/um/drivers/line.h              |    3 +-
 drivers/isdn/capi/capi.c            |    3 +-
 drivers/isdn/gigaset/interface.c    |    3 +-
 drivers/mmc/card/sdio_uart.c        |    4 +-
 drivers/net/usb/hso.c               |    7 +-
 drivers/tty/cyclades.c              |   79 +++++-----
 drivers/tty/ehv_bytechan.c          |    9 +-
 drivers/tty/ipwireless/tty.c        |    2 +-
 drivers/tty/isicom.c                |    3 +-
 drivers/tty/mxser.c                 |    6 +-
 drivers/tty/nozomi.c                |    4 +-
 drivers/tty/pty.c                   |  141 +++++++++---------
 drivers/tty/rocket.c                |    4 +-
 drivers/tty/serial/ifx6x60.c        |    4 +-
 drivers/tty/serial/msm_smd_tty.c    |    8 +-
 drivers/tty/serial/serial_core.c    |   28 ++--
 drivers/tty/synclink_gt.c           |    7 +-
 drivers/tty/tty_io.c                |   34 +++--
 drivers/tty/tty_port.c              |   17 +++
 drivers/tty/vt/keyboard.c           |    6 +-
 drivers/tty/vt/vt.c                 |   62 ++++----
 drivers/usb/class/cdc-acm.c         |    3 +-
 drivers/usb/gadget/u_serial.c       |    3 +-
 drivers/usb/serial/usb-serial.c     |    2 +-
 include/linux/kbd_kern.h            |   12 --
 include/linux/tty.h                 |    5 +
 include/linux/tty_driver.h          |    1 +
 include/net/irda/ircomm_tty.h       |   17 +--
 net/bluetooth/rfcomm/tty.c          |    4 +-
 net/irda/ircomm/ircomm_param.c      |    5 -
 net/irda/ircomm/ircomm_tty.c        |  271 ++++++++++++++++-------------------
 net/irda/ircomm/ircomm_tty_attach.c |   40 ++++--
 net/irda/ircomm/ircomm_tty_ioctl.c  |   25 ++--
 35 files changed, 450 insertions(+), 411 deletions(-)

-- 
1.7.10.3



^ permalink raw reply	[flat|nested] 45+ messages in thread

end of thread, other threads:[~2012-06-14  0:31 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-04 11:35 [PATCH 00/25] TTY buffer in tty_port -- prep no. 3 Jiri Slaby
2012-06-04 11:35 ` [PATCH 01/24] TTY: cyclades, add local pointer for card Jiri Slaby
2012-06-04 11:35 ` [PATCH 02/24] TTY: ircomm, add tty_port Jiri Slaby
2012-06-04 11:35 ` [PATCH 03/24] TTY: ircomm, use close times from tty_port Jiri Slaby
2012-06-04 11:35 ` [PATCH 04/24] TTY: ircomm, use open counts " Jiri Slaby
2012-06-04 16:36   ` Alan Cox
2012-06-04 11:35 ` [PATCH 05/24] TTY: ircomm, use flags " Jiri Slaby
2012-06-04 11:35 ` [PATCH 06/24] TTY: ircomm, revamp locking Jiri Slaby
2012-06-04 16:57   ` Alan Cox
2012-06-04 11:35 ` [PATCH 07/24] TTY: ircomm, use tty from tty_port Jiri Slaby
2012-06-04 11:35 ` [PATCH 08/24] TTY: ircomm, define local tty_port Jiri Slaby
2012-06-04 11:35 ` [PATCH 09/24] TTY: ircomm, define carrier routines Jiri Slaby
2012-06-04 11:35 ` [PATCH 10/24] TTY: ircomm, use tty_port_close_end helper Jiri Slaby
2012-06-04 11:35 ` [PATCH 11/24] TTY: ircomm, use tty_port_close_start helper Jiri Slaby
2012-06-04 11:35 ` [PATCH 12/24] TTY: um/line, add tty_port Jiri Slaby
2012-06-04 11:35 ` [PATCH 13/24] TTY: um/line, use tty from tty_port Jiri Slaby
2012-06-04 12:01   ` Richard Weinberger
2012-06-04 15:20     ` Jiri Slaby
2012-06-04 15:29       ` Richard Weinberger
2012-06-04 15:41         ` Jiri Slaby
2012-06-04 15:42           ` Richard Weinberger
2012-06-04 16:27             ` [uml-devel] " Boaz Harrosh
2012-06-04 16:29               ` Richard Weinberger
2012-06-04 16:37                 ` Boaz Harrosh
2012-06-04 16:55                 ` Boaz Harrosh
2012-06-04 17:05                   ` Richard Weinberger
2012-06-04 17:14                     ` Boaz Harrosh
2012-06-04 15:58         ` Alan Cox
2012-06-04 11:35 ` [PATCH 14/24] PTY: remove one empty ops->remove Jiri Slaby
2012-06-04 11:35 ` [PATCH 15/24] PTY: merge pty_install implementations Jiri Slaby
2012-06-04 11:35 ` [PATCH 16/24] PTY: add tty_port Jiri Slaby
2012-06-12 22:55   ` Greg KH
2012-06-14  0:29     ` Greg KH
2012-06-14  0:31       ` Greg KH
2012-06-04 11:35 ` [PATCH 17/24] TTY: vt, remove con_schedule_flip Jiri Slaby
2012-06-04 11:35 ` [PATCH 18/24] TTY: provide drivers with tty_port_install Jiri Slaby
2012-06-04 11:35 ` [PATCH 19/24] TTY: vt, add ->install Jiri Slaby
2012-06-04 11:35 ` [PATCH 20/24] TTY: usb-serial, use tty_port_install Jiri Slaby
2012-06-04 11:35 ` [PATCH 21/24] TTY: centralize fail paths in tty_register_driver Jiri Slaby
2012-06-04 11:35 ` [PATCH 22/24] TTY: add ports array to tty_driver Jiri Slaby
2012-06-04 11:35 ` [PATCH 23/24] TTY: add tty_port_register_device helper Jiri Slaby
2012-06-04 11:35 ` [PATCH 24/24] TTY: use tty_port_register_device Jiri Slaby
2012-06-04 17:00   ` Alan Cox
2012-06-09 14:58     ` Jiri Slaby
2012-06-09 17:27       ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox