aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/ttm/ttm_tt.c
diff options
context:
space:
mode:
authorChristian König <christian.koenig@amd.com>2021-04-09 14:58:43 +0200
committerChristian König <christian.koenig@amd.com>2021-04-12 13:42:29 +0200
commita28e10ed99bcf57cbd55a6146367f7ea752af6be (patch)
treee41f6b1ddbd77b2a1d5f87452bc11bb515b11776 /drivers/gpu/drm/ttm/ttm_tt.c
parentdrm/qxl: Use drm_gem_ttm_dumb_map_offset() (diff)
downloadlinux-dev-a28e10ed99bcf57cbd55a6146367f7ea752af6be.tar.xz
linux-dev-a28e10ed99bcf57cbd55a6146367f7ea752af6be.zip
drm/ttm: fix return value check
The function returns the number of swapped pages here. Only abort when we get a negative error code. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Matthew Auld <matthew.auld@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210409130113.1459-1-christian.koenig@amd.com
Diffstat (limited to 'drivers/gpu/drm/ttm/ttm_tt.c')
-rw-r--r--drivers/gpu/drm/ttm/ttm_tt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
index 7dcd3fb69495..7d479095dcf8 100644
--- a/drivers/gpu/drm/ttm/ttm_tt.c
+++ b/drivers/gpu/drm/ttm/ttm_tt.c
@@ -326,7 +326,7 @@ int ttm_tt_populate(struct ttm_device *bdev,
ttm_dma32_pages_limit) {
ret = ttm_global_swapout(ctx, GFP_KERNEL);
- if (ret)
+ if (ret < 0)
goto error;
}