[GIT PULL] TTY/Serial driver fixes for 5.19-rc7

From: Greg KH
Date: Sat Jul 16 2022 - 02:24:23 EST


The following changes since commit a111daf0c53ae91e71fd2bfe7497862d14132e3e:

Linux 5.19-rc3 (2022-06-19 15:06:47 -0500)

are available in the Git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tags/tty-5.19-rc7

for you to fetch changes up to a501ab75e7624d133a5a3c7ec010687c8b961d23:

tty: use new tty_insert_flip_string_and_push_buffer() in pty_write() (2022-07-08 15:16:28 +0200)

----------------------------------------------------------------
TTY / Serial driver fixes for 5.19-rc7

Here are some TTY and Serial driver fixes for 5.19-rc7. They resolve a
number of reported problems including:
- long time bug in pty_write() that has been reported in the
past.
- 8250 driver fixes
- new serial device ids
- vt overlapping data copy bugfix
- other tiny serial driver bugfixes

All of these have been in linux-next for a while with no reported
problems.

Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>

----------------------------------------------------------------
Biju Das (1):
serial: 8250: dw: Fix the macro RZN1_UART_xDMACR_8_WORD_BURST

Chanho Park (1):
tty: serial: samsung_tty: set dma burst_size to 1

Ilpo Järvinen (4):
serial: pl011: UPSTAT_AUTORTS requires .throttle/unthrottle
serial: 8250: Fix __stop_tx() & DMA Tx restart races
serial: stm32: Clear prev values before setting RTS delays
serial: 8250: Fix PM usage_count for console handover

Jiri Slaby (2):
tty: extract tty_flip_buffer_commit() from tty_flip_buffer_push()
tty: use new tty_insert_flip_string_and_push_buffer() in pty_write()

Marcin Wojtas (1):
serial: 8250: dw: enable using pdata with ACPI

Max Staudt (1):
tty: Add N_CAN327 line discipline ID for ELM327 based CAN driver

Pali Rohár (1):
serial: mvebu-uart: correctly report configured baudrate value

Yangxi Xiang (1):
vt: fix memory overlapping when deleting chars in the buffer

Yi Yang (1):
serial: 8250: fix return error code in serial8250_request_std_resource()

drivers/tty/pty.c | 14 ++---------
drivers/tty/serial/8250/8250_core.c | 4 ++++
drivers/tty/serial/8250/8250_dma.c | 6 ++---
drivers/tty/serial/8250/8250_dw.c | 26 ++++++++++-----------
drivers/tty/serial/8250/8250_port.c | 6 +++--
drivers/tty/serial/amba-pl011.c | 23 +++++++++++++++++--
drivers/tty/serial/mvebu-uart.c | 25 ++++++++++----------
drivers/tty/serial/samsung_tty.c | 5 ++--
drivers/tty/serial/serial_core.c | 5 ----
drivers/tty/serial/stm32-usart.c | 2 ++
drivers/tty/tty.h | 3 +++
drivers/tty/tty_buffer.c | 46 +++++++++++++++++++++++++++++++++----
drivers/tty/vt/vt.c | 2 +-
include/linux/serial_core.h | 5 ++++
include/uapi/linux/tty.h | 3 ++-
15 files changed, 116 insertions(+), 59 deletions(-)