diff options
author | Dan Carpenter | 2023-10-11 11:01:48 +0300 |
---|---|---|
committer | Greg Kroah-Hartman | 2023-11-20 11:52:00 +0100 |
commit | ace6403e7854d3e24ef95b3ae3b3c0825e524e72 (patch) | |
tree | 843639d9b12d6bf7d63b4c4bcbc750372d0240eb /mm/nommu.c | |
parent | 2836c72e8d60ce50bb7b7bc8f4c6f599882c3d04 (diff) |
drm/rockchip: Fix type promotion bug in rockchip_gem_iommu_map()
[ Upstream commit 6471da5ee311d53ef46eebcb7725bc94266cc0cf ]
The "ret" variable is declared as ssize_t and it can hold negative error
codes but the "rk_obj->base.size" variable is type size_t. This means
that when we compare them, they are both type promoted to size_t and the
negative error code becomes a high unsigned value and is treated as
success. Add a cast to fix this.
Fixes: 38f993b7c59e ("drm/rockchip: Do not use DMA mapping API if attached to IOMMU domain")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Link: https://patchwork.freedesktop.org/patch/msgid/2bfa28b5-145d-4b9e-a18a-98819dd686ce@moroto.mountain
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'mm/nommu.c')
0 files changed, 0 insertions, 0 deletions