summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Kolasa <kkolasa@winsoft.pl>2015-03-15 20:22:36 +0100
committerDave Airlie <airlied@redhat.com>2015-03-16 06:28:50 +1000
commit046d669c62f37323ef0329c41d83a03c06b2087d (patch)
treeade52f7d590c7dbb0d73a95b29960c2ccce664f9
parent6981e2af36b0d96404b60df29e90068855a81225 (diff)
downloadop-kernel-dev-046d669c62f37323ef0329c41d83a03c06b2087d.zip
op-kernel-dev-046d669c62f37323ef0329c41d83a03c06b2087d.tar.gz
[PATCH] drm/mm: Fix support 4 GiB and larger ranges
bad argument if(tmp)... in check_free_hole fix oops: kernel BUG at drivers/gpu/drm/drm_mm.c:305! [airlied: excellent, this was my task for today]. Signed-off-by: Krzysztof Kolasa <kkolasa@winsoft.pl> Reviewed-by: Chris wilson <chris@chris-wilson.co.uk> Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r--drivers/gpu/drm/drm_mm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_mm.c b/drivers/gpu/drm/drm_mm.c
index 7fc6f8b..1134526 100644
--- a/drivers/gpu/drm/drm_mm.c
+++ b/drivers/gpu/drm/drm_mm.c
@@ -403,7 +403,7 @@ static int check_free_hole(u64 start, u64 end, u64 size, unsigned alignment)
unsigned rem;
rem = do_div(tmp, alignment);
- if (tmp)
+ if (rem)
start += alignment - rem;
}
OpenPOWER on IntegriCloud