projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cdf287c
)
drm/xe/query: fix gt_id bounds check
author
Matthew Auld
<matthew.auld@intel.com>
Thu, 21 Mar 2024 11:06:30 +0000
(11:06 +0000)
committer
Matthew Auld
<matthew.auld@intel.com>
Fri, 22 Mar 2024 08:14:03 +0000
(08:14 +0000)
The user provided gt_id should always be less than the
XE_MAX_GT_PER_TILE.
Fixes:
7793d00d1bf5
("drm/xe: Correlate engine and cpu timestamps with better accuracy")
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Nirmoy Das <nirmoy.das@intel.com>
Cc: <stable@vger.kernel.org> # v6.8+
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
Acked-by: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/20240321110629.334701-2-matthew.auld@intel.com
drivers/gpu/drm/xe/xe_query.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/xe/xe_query.c
b/drivers/gpu/drm/xe/xe_query.c
index
fcd8680
..
df407d7
100644
(file)
--- a/
drivers/gpu/drm/xe/xe_query.c
+++ b/
drivers/gpu/drm/xe/xe_query.c
@@
-133,7
+133,7
@@
query_engine_cycles(struct xe_device *xe,
return -EINVAL;
eci = &resp.eci;
- if (eci->gt_id > XE_MAX_GT_PER_TILE)
+ if (eci->gt_id >
=
XE_MAX_GT_PER_TILE)
return -EINVAL;
gt = xe_device_get_gt(xe, eci->gt_id);