public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@suse.de>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, Alan Cox <alan@lxorguk.ukuu.org.uk>
Subject: [GIT PATCH] TTY/serial fixes for .37-rc1
Date: Fri, 12 Nov 2010 13:32:15 -0800	[thread overview]
Message-ID: <20101112213215.GB9294@kroah.com> (raw)

Here are a number of tty and serial fixes for your .37-rc1 tree.

Full details are below, but there's just a range of bug fixes all over
the place, some of them having lived in the tree for quite some time,
and it's nice to get them finally resolved.

Please pull from:
	master.kernel.org:/pub/scm/linux/kernel/git/gregkh/tty-2.6.git/ tty-linus

Patches will be sent to the linux-kernel mailing list, if anyone wants
to see them.

thanks,

greg k-h

------------

 MAINTAINERS                       |    4 +-
 drivers/char/amiserial.c          |    1 -
 drivers/char/nozomi.c             |    1 -
 drivers/char/pcmcia/synclink_cs.c |    1 +
 drivers/serial/8250.c             |    5 +++-
 drivers/serial/8250_pci.c         |    5 ++++
 drivers/serial/bfin_5xx.c         |   31 ++++++++++++++++-------
 drivers/tty/n_gsm.c               |    5 ++-
 drivers/tty/tty_buffer.c          |   14 +++++++++-
 drivers/tty/tty_ldisc.c           |   49 +++++++++++++++++++++++++++++++-----
 drivers/tty/vt/vc_screen.c        |    6 ++--
 include/linux/tty.h               |    2 +-
 12 files changed, 94 insertions(+), 30 deletions(-)

---------------

Alan Cox (2):
      tty: Fix formatting in tty.h
      nozomi: Fix warning from the previous TIOCGCOUNT changes

Andres Salomon (1):
      tty: fix warning in synclink driver

Geert Uytterhoeven (1):
      amiserial: Remove unused variable icount

Greg Kroah-Hartman (1):
      tty: the development tree is now done in git

Jiri Olsa (1):
      tty: prevent DOS in the flush_to_ldisc

Jiri Slaby (1):
      TTY: restore tty_ldisc_wait_idle

Joe Perches (1):
      drivers/serial/bfin_5xx.c: Fix line continuation defects

Ken Mills (2):
      n_gsm: Copy n2 over when configuring via ioctl interface
      n_gsm: Fix length handling

Lawrence Rust (1):
      8250: Fix tcsetattr to avoid ioctl(TIOCMIWAIT) hang

Maciej Szmigiero (1):
      SERIAL: blacklist si3052 chip

Mikulas Patocka (1):
      8250: add support for Kouwell KW-L221N-2

Nicolas Pitre (1):
      vcs: make proper usage of the poll flags

Philippe Rétornaz (1):
      tty_ldisc: Fix BUG() on hangup

Sonic Zhang (4):
      serial: bfin_5xx: always include DMA headers
      serial: bfin_5xx: remove redundant SSYNC to improve TX speed
      serial: bfin_5xx: disable CON_PRINTBUFFER for consoles
      serial: bfin_5xx: grab port lock before making port termios changes


             reply	other threads:[~2010-11-12 21:34 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-12 21:32 Greg KH [this message]
2010-11-12 21:40 ` [PATCH 01/19] tty: the development tree is now done in git Greg Kroah-Hartman
2010-11-12 21:40 ` [PATCH 02/19] tty: Fix formatting in tty.h Greg Kroah-Hartman
2010-11-12 21:40 ` [PATCH 03/19] tty: fix warning in synclink driver Greg Kroah-Hartman
2010-11-12 21:40 ` [PATCH 04/19] nozomi: Fix warning from the previous TIOCGCOUNT changes Greg Kroah-Hartman
2010-11-12 21:40 ` [PATCH 05/19] 8250: add support for Kouwell KW-L221N-2 Greg Kroah-Hartman
2010-11-12 21:40 ` [PATCH 06/19] tty: prevent DOS in the flush_to_ldisc Greg Kroah-Hartman
2010-11-12 21:40 ` [PATCH 07/19] drivers/serial/bfin_5xx.c: Fix line continuation defects Greg Kroah-Hartman
2010-11-12 21:40 ` [PATCH 08/19] SERIAL: blacklist si3052 chip Greg Kroah-Hartman
2010-11-12 21:40 ` [PATCH 10/19] tty_ldisc: Fix BUG() on hangup Greg Kroah-Hartman
2010-12-07 21:00   ` Russ Dill
2010-11-12 21:40 ` [PATCH 11/19] 8250: Fix tcsetattr to avoid ioctl(TIOCMIWAIT) hang Greg Kroah-Hartman
2010-11-13  4:18   ` Alexey Zaytsev
2010-11-13 14:49     ` Greg KH
2010-11-13 17:42       ` Alan Cox
2010-11-13 19:22       ` Lawrence Rust
2010-11-13 23:49         ` Greg KH
2010-11-12 21:40 ` [PATCH 12/19] amiserial: Remove unused variable icount Greg Kroah-Hartman
2010-11-12 21:41 ` [PATCH 13/19] vcs: make proper usage of the poll flags Greg Kroah-Hartman
2010-11-12 21:41 ` [PATCH 14/19] serial: bfin_5xx: always include DMA headers Greg Kroah-Hartman
2010-11-12 21:41 ` [PATCH 15/19] serial: bfin_5xx: remove redundant SSYNC to improve TX speed Greg Kroah-Hartman
2010-11-12 21:41 ` [PATCH 16/19] serial: bfin_5xx: disable CON_PRINTBUFFER for consoles Greg Kroah-Hartman
2010-11-12 21:41 ` [PATCH 17/19] serial: bfin_5xx: grab port lock before making port termios changes Greg Kroah-Hartman
2010-11-12 21:41 ` [PATCH 18/19] n_gsm: Copy n2 over when configuring via ioctl interface Greg Kroah-Hartman
2010-11-12 21:41 ` [PATCH 19/19] n_gsm: Fix length handling Greg Kroah-Hartman
2010-11-13 15:10 ` [boot crash] Re: [GIT PATCH] TTY/serial fixes for .37-rc1 Ingo Molnar
2010-11-13 15:21   ` Ingo Molnar
2010-11-13 15:25     ` Ingo Molnar
2010-11-13 23:49       ` Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20101112213215.GB9294@kroah.com \
    --to=gregkh@suse.de \
    --cc=akpm@linux-foundation.org \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox