summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/xe/xe_bo_types.h
diff options
context:
space:
mode:
authorThomas Hellström <thomas.hellstrom@linux.intel.com>2023-09-15 19:26:06 +0200
committerRodrigo Vivi <rodrigo.vivi@intel.com>2023-12-21 11:41:14 -0500
commitfc678ec7c2e037fcc1bb678403036a9772e61dbd (patch)
treebe2efd3db1ffd47e04c1e284ab364216bc183429 /drivers/gpu/drm/xe/xe_bo_types.h
parenta455ed04669f03bbb1f22267f1237983e026739f (diff)
downloadlinux-stable-fc678ec7c2e037fcc1bb678403036a9772e61dbd.tar.gz
linux-stable-fc678ec7c2e037fcc1bb678403036a9772e61dbd.tar.bz2
linux-stable-fc678ec7c2e037fcc1bb678403036a9772e61dbd.zip
drm/xe: Reinstate pipelined fence enable_signaling
With the GPUVA conversion, the xe_bo::vmas member became replaced with drm_gem_object::gpuva.list, however there was a couple of usage instances left using the old member. Most notably the pipelined fence enable_signaling. Remove the xe_bo::vmas member completely, fix usage instances and also enable this pipelined fence enable_signaling even for faulting VM:s since we actually wait for bind fences to complete. v2: - Rebase. v3: - Fix display code build error. Cc: Matthew Brost <matthew.brost@intel.com> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230915172606.14436-1-thomas.hellstrom@linux.intel.com Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_bo_types.h')
-rw-r--r--drivers/gpu/drm/xe/xe_bo_types.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/xe/xe_bo_types.h b/drivers/gpu/drm/xe/xe_bo_types.h
index f6ee920303af..27fe72129ee6 100644
--- a/drivers/gpu/drm/xe/xe_bo_types.h
+++ b/drivers/gpu/drm/xe/xe_bo_types.h
@@ -31,8 +31,6 @@ struct xe_bo {
struct xe_vm *vm;
/** @tile: Tile this BO is attached to (kernel BO only) */
struct xe_tile *tile;
- /** @vmas: List of VMAs for this BO */
- struct list_head vmas;
/** @placements: valid placements for this BO */
struct ttm_place placements[XE_BO_MAX_PLACEMENTS];
/** @placement: current placement for this BO */