drm/i915/gt: Cleanup partial engine discovery failures
authorChris Wilson <chris.p.wilson@intel.com>
Thu, 15 Sep 2022 23:26:51 +0000 (16:26 -0700)
committerMatt Roper <matthew.d.roper@intel.com>
Fri, 16 Sep 2022 14:56:59 +0000 (07:56 -0700)
commit78a033433a5ae4fee85511ee075bc9a48312c79e
treed23fa0d5f3e230ad1d761d823268c2c25828b3b2
parent8adc718881e0a70127f8843dd70e69a80de39352
drm/i915/gt: Cleanup partial engine discovery failures

If we abort driver initialisation in the middle of gt/engine discovery,
some engines will be fully setup and some not. Those incompletely setup
engines only have 'engine->release == NULL' and so will leak any of the
common objects allocated.

v2:
 - Drop the destroy_pinned_context() helper for now.  It's not really
   worth it with just a single callsite at the moment.  (Janusz)

Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220915232654.3283095-2-matthew.d.roper@intel.com
drivers/gpu/drm/i915/gt/intel_engine_cs.c