File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
drivers/gpu/drm/i915/gt/uc Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2014,11 +2014,12 @@ void intel_guc_submission_reset_finish(struct intel_guc *guc)
2014
2014
2015
2015
/*
2016
2016
* Technically possible for either of these values to be non-zero here,
2017
- * but very unlikely + harmless. Regardless let's add a warn so we can
2017
+ * but very unlikely + harmless. Regardless let's add an error so we can
2018
2018
* see in CI if this happens frequently / a precursor to taking down the
2019
2019
* machine.
2020
2020
*/
2021
- GEM_WARN_ON (atomic_read (& guc -> outstanding_submission_g2h ));
2021
+ if (atomic_read (& guc -> outstanding_submission_g2h ))
2022
+ guc_err (guc , "Unexpected outstanding GuC to Host in reset finish\n" );
2022
2023
atomic_set (& guc -> outstanding_submission_g2h , 0 );
2023
2024
2024
2025
intel_guc_global_policies_update (guc );
You can’t perform that action at this time.
0 commit comments