diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2017-07-05 18:49:00 +0300 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2017-07-05 23:18:07 +0300 |
commit | e6090cc9be15f8e3a5e736d427186e39fea7cceb (patch) | |
tree | 6346371f33237df55f5247615f9bcf6d4e303ee9 /include/drm/drm_gem.h | |
parent | 8c3a8181a46b55ec0ab9dee3c178ba2b2b6ed77b (diff) | |
download | linux-e6090cc9be15f8e3a5e736d427186e39fea7cceb.tar.xz |
drm: Remove pending_read_domains and pending_write_domain
The last user of these (i915.ko) no longer does. We can slim down the
core GEM object by removing the unused 8 bytes.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20170705154900.28697-1-chris@chris-wilson.co.uk
Diffstat (limited to 'include/drm/drm_gem.h')
-rw-r--r-- | include/drm/drm_gem.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h index 663d80358057..4a9d231b4294 100644 --- a/include/drm/drm_gem.h +++ b/include/drm/drm_gem.h @@ -131,21 +131,6 @@ struct drm_gem_object { uint32_t write_domain; /** - * @pending_read_domains: - * - * While validating an exec operation, the - * new read/write domain values are computed here. - * They will be transferred to the above values - * at the point that any cache flushing occurs - */ - uint32_t pending_read_domains; - - /** - * @pending_write_domain: Write domain similar to @pending_read_domains. - */ - uint32_t pending_write_domain; - - /** * @dma_buf: * * dma-buf associated with this GEM object. |