]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
dma-buf: fix timeout handling in dma_resv_wait_timeout v2
authorChristian König <christian.koenig@amd.com>
Tue, 28 Jan 2025 09:47:48 +0000 (10:47 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Jul 2025 16:30:52 +0000 (18:30 +0200)
commit09064e6d659729d01742744efecd9131cdd93c24
tree65d03093648f6203681e3fea86c19e1c58695d41
parent419192cb11f29a13ba671317f9b77019409d0b04
dma-buf: fix timeout handling in dma_resv_wait_timeout v2

[ Upstream commit 2b95a7db6e0f75587bffddbb490399cbb87e4985 ]

Even the kerneldoc says that with a zero timeout the function should not
wait for anything, but still return 1 to indicate that the fences are
signaled now.

Unfortunately that isn't what was implemented, instead of only returning
1 we also waited for at least one jiffies.

Fix that by adjusting the handling to what the function is actually
documented to do.

v2: improve code readability

Reported-by: Marek Olšák <marek.olsak@amd.com>
Reported-by: Lucas Stach <l.stach@pengutronix.de>
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Lucas Stach <l.stach@pengutronix.de>
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20250129105841.1806-1-christian.koenig@amd.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/dma-buf/dma-resv.c