aboutsummaryrefslogtreecommitdiffstats
diff options
-rw-r--r--series1
-rw-r--r--tty/tty-n_tty-for-some-i-o-patterns-n_tty-will-lose-bytes.patch31
2 files changed, 0 insertions, 32 deletions
diff --git a/series b/series
index 0b845eaa9fbb98..66147ef71e9769 100644
--- a/series
+++ b/series
@@ -105,7 +105,6 @@ tty/tty-tty_port-move-the-io_error-clear.patch
tty/tty-stallion-convert-to-the-tty_port_open-close-methods.patch
tty/tty-istallion-tty-port-open-close-methods.patch
tty/tty-tty_port-add-a-kref-object-to-the-tty-port.patch
-tty/tty-n_tty-for-some-i-o-patterns-n_tty-will-lose-bytes.patch
tty/tty-isicom-switch-to-the-new-tty_port_open-helper.patch
tty/tty-isicom-sort-out-the-board-init-logic.patch
tty/tty-mxser-use-the-tty_port_open-method.patch
diff --git a/tty/tty-n_tty-for-some-i-o-patterns-n_tty-will-lose-bytes.patch b/tty/tty-n_tty-for-some-i-o-patterns-n_tty-will-lose-bytes.patch
deleted file mode 100644
index 113c909200b1b2..00000000000000
--- a/tty/tty-n_tty-for-some-i-o-patterns-n_tty-will-lose-bytes.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From alan@linux.intel.com Mon Dec 7 16:59:56 2009
-From: Alan Cox <alan@linux.intel.com>
-Date: Mon, 30 Nov 2009 13:17:19 +0000
-Subject: tty: n_tty: For some I/O patterns n_tty will lose bytes
-To: greg@kroah.com
-Message-ID: <20091130131719.26701.63040.stgit@localhost.localdomain>
-
-
-Fix the obvious disagreement between the receive path and the receive room
-logic.
-
-Signed-off-by: Alan Cox <alan@linux.intel.com>
-Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
----
-
- drivers/char/n_tty.c | 3 +++
- 1 file changed, 3 insertions(+)
-
-
---- a/drivers/char/n_tty.c
-+++ b/drivers/char/n_tty.c
-@@ -95,6 +95,9 @@ static void n_tty_set_room(struct tty_st
- /* tty->read_cnt is not read locked ? */
- int left = N_TTY_BUF_SIZE - tty->read_cnt - 1;
-
-+ if (tty->real_raw)
-+ left = min(left, N_TTY_BUF_SIZE - tty->read_head - 1);
-+
- /*
- * If we are doing input canonicalization, and there are no
- * pending newlines, let characters through without limit, so