]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
pch_uart: Fix dma_sync_sg_for_device() nents value
authorThomas Fourier <fourier.thomas@gmail.com>
Tue, 1 Jul 2025 11:34:52 +0000 (13:34 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 24 Jul 2025 06:51:47 +0000 (08:51 +0200)
commit9e1deb757e4f76e3b1a9afd9e44ca391b0f22e14
treed1a9f3bcf5f8ec28c980d35e0ff6df11887aeb84
parent9946710ae7c62fd25736b0115041e6dd6313cafc
pch_uart: Fix dma_sync_sg_for_device() nents value

commit 6c0e9f05c9d7875995b0e92ace71be947f280bbd upstream.

The dma_sync_sg_for_device() functions should be called with the same
nents as the dma_map_sg(), not the value the map function returned
according to the documentation in Documentation/core-api/dma-api.rst:450:
With the sync_sg API, all the parameters must be the same
as those passed into the sg mapping API.

Fixes: da3564ee027e ("pch_uart: add multi-scatter processing")
Cc: stable <stable@kernel.org>
Signed-off-by: Thomas Fourier <fourier.thomas@gmail.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20250701113452.18590-2-fourier.thomas@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/pch_uart.c