drm/amd/display: Add NULL check
authorChris Park <Chris.Park@amd.com>
Mon, 28 Feb 2022 15:23:00 +0000 (10:23 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 15 Mar 2022 18:25:16 +0000 (14:25 -0400)
[Why]
Virtualization enters blue screen of death (BSoD)
due to NULL res_pool object when accessing DSC
encoder capability.

[How]
Add NULL check to avoid blue screen of death.

Reviewed-by: Aric Cyr <Aric.Cyr@amd.com>
Acked-by: Alan Liu <HaoPing.Liu@amd.com>
Signed-off-by: Chris Park <Chris.Park@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/core/dc_resource.c

index bc2150f3d79be6463b1c401317ab45cc3531d438..7af153434e9e4578b7217d83db2cd0b109d70cb7 100644 (file)
@@ -2335,6 +2335,9 @@ void dc_resource_state_construct(
 
 bool dc_resource_is_dsc_encoding_supported(const struct dc *dc)
 {
+       if (dc->res_pool == NULL)
+               return false;
+
        return dc->res_pool->res_cap->num_dsc > 0;
 }