projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d9f36a0
)
drm/ttm: Make sure system buffer objects has offset == 0.
author
Thomas Hellstrom
<thellstrom@vmware.com>
Wed, 13 Jan 2010 21:28:45 +0000
(22:28 +0100)
committer
Dave Airlie
<airlied@redhat.com>
Thu, 14 Jan 2010 02:20:04 +0000
(12:20 +1000)
This is a convention that the vmwgfx driver has come to rely on.
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/ttm/ttm_bo.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/ttm/ttm_bo.c
b/drivers/gpu/drm/ttm/ttm_bo.c
index 7a64f07b1202e913cfc370fcd819005a2ecbccd4..da3702135ada857a21985e07128fb41e85a906c1 100644
(file)
--- a/
drivers/gpu/drm/ttm/ttm_bo.c
+++ b/
drivers/gpu/drm/ttm/ttm_bo.c
@@
-426,7
+426,8
@@
moved:
bdev->man[bo->mem.mem_type].gpu_offset;
bo->cur_placement = bo->mem.placement;
spin_unlock(&bo->lock);
- }
+ } else
+ bo->offset = 0;
return 0;