projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eae4c94
)
drm/i915/selftests: Replace open-coded i915_address_space_init()
author
Chris Wilson
<
[email protected]
>
Thu, 5 Jul 2018 06:56:53 +0000
(07:56 +0100)
committer
Chris Wilson
<
[email protected]
>
Thu, 5 Jul 2018 10:19:24 +0000
(11:19 +0100)
Use i915_address_space_init() rather than open-code it inside
mock_ppgtt() as we will forget to keep it in sync.
Signed-off-by: Chris Wilson <
[email protected]
>
Reviewed-by: Tvrtko Ursulin <
[email protected]
>
Link:
https://patchwork.freedesktop.org/patch/msgid/
[email protected]
drivers/gpu/drm/i915/selftests/mock_gtt.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/selftests/mock_gtt.c
b/drivers/gpu/drm/i915/selftests/mock_gtt.c
index 07df5c399ec11082bb32eae506ca03c5e2814348..a140ea5c3a7c50edca13d1ad0c81955e1dea76e8 100644
(file)
--- a/
drivers/gpu/drm/i915/selftests/mock_gtt.c
+++ b/
drivers/gpu/drm/i915/selftests/mock_gtt.c
@@
-70,11
+70,7
@@
mock_ppgtt(struct drm_i915_private *i915,
ppgtt->vm.total = round_down(U64_MAX, PAGE_SIZE);
ppgtt->vm.file = ERR_PTR(-ENODEV);
- INIT_LIST_HEAD(&ppgtt->vm.active_list);
- INIT_LIST_HEAD(&ppgtt->vm.inactive_list);
- INIT_LIST_HEAD(&ppgtt->vm.unbound_list);
-
- drm_mm_init(&ppgtt->vm.mm, 0, ppgtt->vm.total);
+ i915_address_space_init(&ppgtt->vm, i915);
ppgtt->vm.clear_range = nop_clear_range;
ppgtt->vm.insert_page = mock_insert_page;