mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 07:29:12 -04:00
drm/i915/guc: Fix potential null pointer deref in GuC 'steal id' test
It was noticed that if the very first 'stealing' request failed to create for some reason then the 'steal all ids' loop would immediately exit with 'last' still being NULL. The test would attempt to continue but using a null pointer. Fix that by aborting the test if it fails to create any requests at all. Signed-off-by: John Harrison <John.C.Harrison@Intel.com> Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230802184940.911753-1-John.C.Harrison@Intel.com
This commit is contained in:
@@ -204,9 +204,9 @@ static int intel_guc_steal_guc_ids(void *arg)
|
||||
if (IS_ERR(rq)) {
|
||||
ret = PTR_ERR(rq);
|
||||
rq = NULL;
|
||||
if (ret != -EAGAIN) {
|
||||
guc_err(guc, "Failed to create request %d: %pe\n",
|
||||
context_index, ERR_PTR(ret));
|
||||
if ((ret != -EAGAIN) || !last) {
|
||||
guc_err(guc, "Failed to create %srequest %d: %pe\n",
|
||||
last ? "" : "first ", context_index, ERR_PTR(ret));
|
||||
goto err_spin_rq;
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user