All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amd/powerplay/hwmgr: Remove null check before kfree
@ 2017-08-29 13:12 Himanshu Jha
  2017-08-29 13:27 ` Christian König
  2017-08-29 13:34   ` Harry Wentland
  0 siblings, 2 replies; 7+ messages in thread
From: Himanshu Jha @ 2017-08-29 13:12 UTC (permalink / raw)
  To: airlied
  Cc: alexander.deucher, christian.koenig, Rex.Zhu, amd-gfx, dri-devel,
	linux-kernel, Himanshu Jha

kfree on NULL pointer is a no-op and therefore checking is redundant.

Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>
---
 drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c     |  6 +-
 .../gpu/drm/amd/powerplay/hwmgr/processpptables.c  | 96 ++++++++--------------
 drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c     | 52 ++++--------
 drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c   | 12 +--
 4 files changed, 56 insertions(+), 110 deletions(-)

diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
index bc839ff..9f2c037 100644
--- a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
+++ b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
@@ -1225,10 +1225,8 @@ static int cz_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
 		phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
 		phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
 
-		if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
-			kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
-			hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
-		}
+		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
+		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
 
 		kfree(hwmgr->backend);
 		hwmgr->backend = NULL;
diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
index 2716721..a6dbc55 100644
--- a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
+++ b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
@@ -1615,85 +1615,53 @@ static int pp_tables_uninitialize(struct pp_hwmgr *hwmgr)
 	if (hwmgr->chip_id == CHIP_RAVEN)
 		return 0;
 
-	if (NULL != hwmgr->dyn_state.vddc_dependency_on_sclk) {
-		kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
-		hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
-	}
+	kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
+	hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
 
-	if (NULL != hwmgr->dyn_state.vddci_dependency_on_mclk) {
-		kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
-		hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
-	}
+	kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
+	hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
 
-	if (NULL != hwmgr->dyn_state.vddc_dependency_on_mclk) {
-		kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
-		hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
-	}
+	kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
+	hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
 
-	if (NULL != hwmgr->dyn_state.mvdd_dependency_on_mclk) {
-		kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
-		hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
-	}
+	kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
+	hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
 
-	if (NULL != hwmgr->dyn_state.valid_mclk_values) {
-		kfree(hwmgr->dyn_state.valid_mclk_values);
-		hwmgr->dyn_state.valid_mclk_values = NULL;
-	}
+	kfree(hwmgr->dyn_state.valid_mclk_values);
+	hwmgr->dyn_state.valid_mclk_values = NULL;
 
-	if (NULL != hwmgr->dyn_state.valid_sclk_values) {
-		kfree(hwmgr->dyn_state.valid_sclk_values);
-		hwmgr->dyn_state.valid_sclk_values = NULL;
-	}
+	kfree(hwmgr->dyn_state.valid_sclk_values);
+	hwmgr->dyn_state.valid_sclk_values = NULL;
 
-	if (NULL != hwmgr->dyn_state.cac_leakage_table) {
-		kfree(hwmgr->dyn_state.cac_leakage_table);
-		hwmgr->dyn_state.cac_leakage_table = NULL;
-	}
+	kfree(hwmgr->dyn_state.cac_leakage_table);
+	hwmgr->dyn_state.cac_leakage_table = NULL;
 
-	if (NULL != hwmgr->dyn_state.vddc_phase_shed_limits_table) {
-		kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
-		hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
-	}
+	kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
+	hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
 
-	if (NULL != hwmgr->dyn_state.vce_clock_voltage_dependency_table) {
-		kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
-		hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
-	}
+	kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
+	hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
 
-	if (NULL != hwmgr->dyn_state.uvd_clock_voltage_dependency_table) {
-		kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
-		hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
-	}
+	kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
+	hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
 
-	if (NULL != hwmgr->dyn_state.samu_clock_voltage_dependency_table) {
-		kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
-		hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
-	}
+	kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
+	hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
 
-	if (NULL != hwmgr->dyn_state.acp_clock_voltage_dependency_table) {
-		kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
-		hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
-	}
+	kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
+	hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
 
-	if (NULL != hwmgr->dyn_state.cac_dtp_table) {
-		kfree(hwmgr->dyn_state.cac_dtp_table);
-		hwmgr->dyn_state.cac_dtp_table = NULL;
-	}
+	kfree(hwmgr->dyn_state.cac_dtp_table);
+	hwmgr->dyn_state.cac_dtp_table = NULL;
 
-	if (NULL != hwmgr->dyn_state.ppm_parameter_table) {
-		kfree(hwmgr->dyn_state.ppm_parameter_table);
-		hwmgr->dyn_state.ppm_parameter_table = NULL;
-	}
+	kfree(hwmgr->dyn_state.ppm_parameter_table);
+	hwmgr->dyn_state.ppm_parameter_table = NULL;
 
-	if (NULL != hwmgr->dyn_state.vdd_gfx_dependency_on_sclk) {
-		kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
-		hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
-	}
+	kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
+	hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
 
-	if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
-		kfree(hwmgr->dyn_state.vq_budgeting_table);
-		hwmgr->dyn_state.vq_budgeting_table = NULL;
-	}
+	kfree(hwmgr->dyn_state.vq_budgeting_table);
+	hwmgr->dyn_state.vq_budgeting_table = NULL;
 
 	return 0;
 }
diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
index 2c3e6ba..5547ed3 100644
--- a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
+++ b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
@@ -640,40 +640,24 @@ static int rv_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
 	phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
 	phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
 
-	if (pinfo->vdd_dep_on_dcefclk) {
-		kfree(pinfo->vdd_dep_on_dcefclk);
-		pinfo->vdd_dep_on_dcefclk = NULL;
-	}
-	if (pinfo->vdd_dep_on_socclk) {
-		kfree(pinfo->vdd_dep_on_socclk);
-		pinfo->vdd_dep_on_socclk = NULL;
-	}
-	if (pinfo->vdd_dep_on_fclk) {
-		kfree(pinfo->vdd_dep_on_fclk);
-		pinfo->vdd_dep_on_fclk = NULL;
-	}
-	if (pinfo->vdd_dep_on_dispclk) {
-		kfree(pinfo->vdd_dep_on_dispclk);
-		pinfo->vdd_dep_on_dispclk = NULL;
-	}
-	if (pinfo->vdd_dep_on_dppclk) {
-		kfree(pinfo->vdd_dep_on_dppclk);
-		pinfo->vdd_dep_on_dppclk = NULL;
-	}
-	if (pinfo->vdd_dep_on_phyclk) {
-		kfree(pinfo->vdd_dep_on_phyclk);
-		pinfo->vdd_dep_on_phyclk = NULL;
-	}
-
-	if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
-		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
-		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
-	}
-
-	if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
-		kfree(hwmgr->dyn_state.vq_budgeting_table);
-		hwmgr->dyn_state.vq_budgeting_table = NULL;
-	}
+	kfree(pinfo->vdd_dep_on_dcefclk);
+	pinfo->vdd_dep_on_dcefclk = NULL;
+	kfree(pinfo->vdd_dep_on_socclk);
+	pinfo->vdd_dep_on_socclk = NULL;
+	kfree(pinfo->vdd_dep_on_fclk);
+	pinfo->vdd_dep_on_fclk = NULL;
+	kfree(pinfo->vdd_dep_on_dispclk);
+	pinfo->vdd_dep_on_dispclk = NULL;
+	kfree(pinfo->vdd_dep_on_dppclk);
+	pinfo->vdd_dep_on_dppclk = NULL;
+	kfree(pinfo->vdd_dep_on_phyclk);
+	pinfo->vdd_dep_on_phyclk = NULL;
+
+	kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
+	hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
+
+	kfree(hwmgr->dyn_state.vq_budgeting_table);
+	hwmgr->dyn_state.vq_budgeting_table = NULL;
 
 	kfree(hwmgr->backend);
 	hwmgr->backend = NULL;
diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
index c274323..eb8a3ff 100644
--- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
+++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
@@ -2282,15 +2282,11 @@ static int smu7_set_private_data_based_on_pptable_v0(struct pp_hwmgr *hwmgr)
 
 static int smu7_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
 {
-	if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
-		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
-		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
-	}
+	kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
+	hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
 	pp_smu7_thermal_fini(hwmgr);
-	if (NULL != hwmgr->backend) {
-		kfree(hwmgr->backend);
-		hwmgr->backend = NULL;
-	}
+	kfree(hwmgr->backend);
+	hwmgr->backend = NULL;
 
 	return 0;
 }
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] drm/amd/powerplay/hwmgr: Remove null check before kfree
  2017-08-29 13:12 [PATCH] drm/amd/powerplay/hwmgr: Remove null check before kfree Himanshu Jha
@ 2017-08-29 13:27 ` Christian König
  2017-08-29 13:34   ` Harry Wentland
  1 sibling, 0 replies; 7+ messages in thread
From: Christian König @ 2017-08-29 13:27 UTC (permalink / raw)
  To: Himanshu Jha, airlied
  Cc: alexander.deucher, Rex.Zhu, amd-gfx, dri-devel, linux-kernel

Am 29.08.2017 um 15:12 schrieb Himanshu Jha:
> kfree on NULL pointer is a no-op and therefore checking is redundant.
>
> Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>

Reviewed-by: Christian König <christian.koenig@amd.com>

> ---
>   drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c     |  6 +-
>   .../gpu/drm/amd/powerplay/hwmgr/processpptables.c  | 96 ++++++++--------------
>   drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c     | 52 ++++--------
>   drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c   | 12 +--
>   4 files changed, 56 insertions(+), 110 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> index bc839ff..9f2c037 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> @@ -1225,10 +1225,8 @@ static int cz_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>   		phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>   		phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>   
> -		if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -			kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -			hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -		}
> +		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>   
>   		kfree(hwmgr->backend);
>   		hwmgr->backend = NULL;
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> index 2716721..a6dbc55 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> @@ -1615,85 +1615,53 @@ static int pp_tables_uninitialize(struct pp_hwmgr *hwmgr)
>   	if (hwmgr->chip_id == CHIP_RAVEN)
>   		return 0;
>   
> -	if (NULL != hwmgr->dyn_state.vddc_dependency_on_sclk) {
> -		kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
> -		hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
> +	hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.vddci_dependency_on_mclk) {
> -		kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
> -		hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
> +	hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.vddc_dependency_on_mclk) {
> -		kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
> -		hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
> +	hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.mvdd_dependency_on_mclk) {
> -		kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
> -		hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
> +	hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.valid_mclk_values) {
> -		kfree(hwmgr->dyn_state.valid_mclk_values);
> -		hwmgr->dyn_state.valid_mclk_values = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.valid_mclk_values);
> +	hwmgr->dyn_state.valid_mclk_values = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.valid_sclk_values) {
> -		kfree(hwmgr->dyn_state.valid_sclk_values);
> -		hwmgr->dyn_state.valid_sclk_values = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.valid_sclk_values);
> +	hwmgr->dyn_state.valid_sclk_values = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.cac_leakage_table) {
> -		kfree(hwmgr->dyn_state.cac_leakage_table);
> -		hwmgr->dyn_state.cac_leakage_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.cac_leakage_table);
> +	hwmgr->dyn_state.cac_leakage_table = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.vddc_phase_shed_limits_table) {
> -		kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
> -		hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
> +	hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.vce_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.uvd_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.samu_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.acp_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.cac_dtp_table) {
> -		kfree(hwmgr->dyn_state.cac_dtp_table);
> -		hwmgr->dyn_state.cac_dtp_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.cac_dtp_table);
> +	hwmgr->dyn_state.cac_dtp_table = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.ppm_parameter_table) {
> -		kfree(hwmgr->dyn_state.ppm_parameter_table);
> -		hwmgr->dyn_state.ppm_parameter_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.ppm_parameter_table);
> +	hwmgr->dyn_state.ppm_parameter_table = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.vdd_gfx_dependency_on_sclk) {
> -		kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
> -		hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
> +	hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
>   
> -	if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
> -		kfree(hwmgr->dyn_state.vq_budgeting_table);
> -		hwmgr->dyn_state.vq_budgeting_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vq_budgeting_table);
> +	hwmgr->dyn_state.vq_budgeting_table = NULL;
>   
>   	return 0;
>   }
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> index 2c3e6ba..5547ed3 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> @@ -640,40 +640,24 @@ static int rv_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>   	phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>   	phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>   
> -	if (pinfo->vdd_dep_on_dcefclk) {
> -		kfree(pinfo->vdd_dep_on_dcefclk);
> -		pinfo->vdd_dep_on_dcefclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_socclk) {
> -		kfree(pinfo->vdd_dep_on_socclk);
> -		pinfo->vdd_dep_on_socclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_fclk) {
> -		kfree(pinfo->vdd_dep_on_fclk);
> -		pinfo->vdd_dep_on_fclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_dispclk) {
> -		kfree(pinfo->vdd_dep_on_dispclk);
> -		pinfo->vdd_dep_on_dispclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_dppclk) {
> -		kfree(pinfo->vdd_dep_on_dppclk);
> -		pinfo->vdd_dep_on_dppclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_phyclk) {
> -		kfree(pinfo->vdd_dep_on_phyclk);
> -		pinfo->vdd_dep_on_phyclk = NULL;
> -	}
> -
> -	if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -	}
> -
> -	if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
> -		kfree(hwmgr->dyn_state.vq_budgeting_table);
> -		hwmgr->dyn_state.vq_budgeting_table = NULL;
> -	}
> +	kfree(pinfo->vdd_dep_on_dcefclk);
> +	pinfo->vdd_dep_on_dcefclk = NULL;
> +	kfree(pinfo->vdd_dep_on_socclk);
> +	pinfo->vdd_dep_on_socclk = NULL;
> +	kfree(pinfo->vdd_dep_on_fclk);
> +	pinfo->vdd_dep_on_fclk = NULL;
> +	kfree(pinfo->vdd_dep_on_dispclk);
> +	pinfo->vdd_dep_on_dispclk = NULL;
> +	kfree(pinfo->vdd_dep_on_dppclk);
> +	pinfo->vdd_dep_on_dppclk = NULL;
> +	kfree(pinfo->vdd_dep_on_phyclk);
> +	pinfo->vdd_dep_on_phyclk = NULL;
> +
> +	kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +	hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> +
> +	kfree(hwmgr->dyn_state.vq_budgeting_table);
> +	hwmgr->dyn_state.vq_budgeting_table = NULL;
>   
>   	kfree(hwmgr->backend);
>   	hwmgr->backend = NULL;
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> index c274323..eb8a3ff 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> @@ -2282,15 +2282,11 @@ static int smu7_set_private_data_based_on_pptable_v0(struct pp_hwmgr *hwmgr)
>   
>   static int smu7_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>   {
> -	if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +	hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>   	pp_smu7_thermal_fini(hwmgr);
> -	if (NULL != hwmgr->backend) {
> -		kfree(hwmgr->backend);
> -		hwmgr->backend = NULL;
> -	}
> +	kfree(hwmgr->backend);
> +	hwmgr->backend = NULL;
>   
>   	return 0;
>   }

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] drm/amd/powerplay/hwmgr: Remove null check before kfree
@ 2017-08-29 13:34   ` Harry Wentland
  0 siblings, 0 replies; 7+ messages in thread
From: Harry Wentland @ 2017-08-29 13:34 UTC (permalink / raw)
  To: Himanshu Jha, airlied
  Cc: linux-kernel, dri-devel, amd-gfx, alexander.deucher, Rex.Zhu,
	christian.koenig

On 2017-08-29 09:12 AM, Himanshu Jha wrote:
> kfree on NULL pointer is a no-op and therefore checking is redundant.
> 
> Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>

Reviewed-by: Harry Wentland <harry.wentland@amd.com>

Harry

> ---
>  drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c     |  6 +-
>  .../gpu/drm/amd/powerplay/hwmgr/processpptables.c  | 96 ++++++++--------------
>  drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c     | 52 ++++--------
>  drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c   | 12 +--
>  4 files changed, 56 insertions(+), 110 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> index bc839ff..9f2c037 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> @@ -1225,10 +1225,8 @@ static int cz_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>  		phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>  		phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>  
> -		if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -			kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -			hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -		}
> +		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>  
>  		kfree(hwmgr->backend);
>  		hwmgr->backend = NULL;
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> index 2716721..a6dbc55 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> @@ -1615,85 +1615,53 @@ static int pp_tables_uninitialize(struct pp_hwmgr *hwmgr)
>  	if (hwmgr->chip_id == CHIP_RAVEN)
>  		return 0;
>  
> -	if (NULL != hwmgr->dyn_state.vddc_dependency_on_sclk) {
> -		kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
> -		hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
> +	hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vddci_dependency_on_mclk) {
> -		kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
> -		hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
> +	hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vddc_dependency_on_mclk) {
> -		kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
> -		hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
> +	hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.mvdd_dependency_on_mclk) {
> -		kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
> -		hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
> +	hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.valid_mclk_values) {
> -		kfree(hwmgr->dyn_state.valid_mclk_values);
> -		hwmgr->dyn_state.valid_mclk_values = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.valid_mclk_values);
> +	hwmgr->dyn_state.valid_mclk_values = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.valid_sclk_values) {
> -		kfree(hwmgr->dyn_state.valid_sclk_values);
> -		hwmgr->dyn_state.valid_sclk_values = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.valid_sclk_values);
> +	hwmgr->dyn_state.valid_sclk_values = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.cac_leakage_table) {
> -		kfree(hwmgr->dyn_state.cac_leakage_table);
> -		hwmgr->dyn_state.cac_leakage_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.cac_leakage_table);
> +	hwmgr->dyn_state.cac_leakage_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vddc_phase_shed_limits_table) {
> -		kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
> -		hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
> +	hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vce_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.uvd_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.samu_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.acp_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.cac_dtp_table) {
> -		kfree(hwmgr->dyn_state.cac_dtp_table);
> -		hwmgr->dyn_state.cac_dtp_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.cac_dtp_table);
> +	hwmgr->dyn_state.cac_dtp_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.ppm_parameter_table) {
> -		kfree(hwmgr->dyn_state.ppm_parameter_table);
> -		hwmgr->dyn_state.ppm_parameter_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.ppm_parameter_table);
> +	hwmgr->dyn_state.ppm_parameter_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vdd_gfx_dependency_on_sclk) {
> -		kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
> -		hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
> +	hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
> -		kfree(hwmgr->dyn_state.vq_budgeting_table);
> -		hwmgr->dyn_state.vq_budgeting_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vq_budgeting_table);
> +	hwmgr->dyn_state.vq_budgeting_table = NULL;
>  
>  	return 0;
>  }
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> index 2c3e6ba..5547ed3 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> @@ -640,40 +640,24 @@ static int rv_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>  	phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>  	phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>  
> -	if (pinfo->vdd_dep_on_dcefclk) {
> -		kfree(pinfo->vdd_dep_on_dcefclk);
> -		pinfo->vdd_dep_on_dcefclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_socclk) {
> -		kfree(pinfo->vdd_dep_on_socclk);
> -		pinfo->vdd_dep_on_socclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_fclk) {
> -		kfree(pinfo->vdd_dep_on_fclk);
> -		pinfo->vdd_dep_on_fclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_dispclk) {
> -		kfree(pinfo->vdd_dep_on_dispclk);
> -		pinfo->vdd_dep_on_dispclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_dppclk) {
> -		kfree(pinfo->vdd_dep_on_dppclk);
> -		pinfo->vdd_dep_on_dppclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_phyclk) {
> -		kfree(pinfo->vdd_dep_on_phyclk);
> -		pinfo->vdd_dep_on_phyclk = NULL;
> -	}
> -
> -	if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -	}
> -
> -	if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
> -		kfree(hwmgr->dyn_state.vq_budgeting_table);
> -		hwmgr->dyn_state.vq_budgeting_table = NULL;
> -	}
> +	kfree(pinfo->vdd_dep_on_dcefclk);
> +	pinfo->vdd_dep_on_dcefclk = NULL;
> +	kfree(pinfo->vdd_dep_on_socclk);
> +	pinfo->vdd_dep_on_socclk = NULL;
> +	kfree(pinfo->vdd_dep_on_fclk);
> +	pinfo->vdd_dep_on_fclk = NULL;
> +	kfree(pinfo->vdd_dep_on_dispclk);
> +	pinfo->vdd_dep_on_dispclk = NULL;
> +	kfree(pinfo->vdd_dep_on_dppclk);
> +	pinfo->vdd_dep_on_dppclk = NULL;
> +	kfree(pinfo->vdd_dep_on_phyclk);
> +	pinfo->vdd_dep_on_phyclk = NULL;
> +
> +	kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +	hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> +
> +	kfree(hwmgr->dyn_state.vq_budgeting_table);
> +	hwmgr->dyn_state.vq_budgeting_table = NULL;
>  
>  	kfree(hwmgr->backend);
>  	hwmgr->backend = NULL;
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> index c274323..eb8a3ff 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> @@ -2282,15 +2282,11 @@ static int smu7_set_private_data_based_on_pptable_v0(struct pp_hwmgr *hwmgr)
>  
>  static int smu7_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>  {
> -	if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +	hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>  	pp_smu7_thermal_fini(hwmgr);
> -	if (NULL != hwmgr->backend) {
> -		kfree(hwmgr->backend);
> -		hwmgr->backend = NULL;
> -	}
> +	kfree(hwmgr->backend);
> +	hwmgr->backend = NULL;
>  
>  	return 0;
>  }
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] drm/amd/powerplay/hwmgr: Remove null check before kfree
@ 2017-08-29 13:34   ` Harry Wentland
  0 siblings, 0 replies; 7+ messages in thread
From: Harry Wentland @ 2017-08-29 13:34 UTC (permalink / raw)
  To: Himanshu Jha, airlied-cv59FeDIM0c
  Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	alexander.deucher-5C7GfCeVMHo, Rex.Zhu-5C7GfCeVMHo,
	christian.koenig-5C7GfCeVMHo

On 2017-08-29 09:12 AM, Himanshu Jha wrote:
> kfree on NULL pointer is a no-op and therefore checking is redundant.
> 
> Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>

Reviewed-by: Harry Wentland <harry.wentland@amd.com>

Harry

> ---
>  drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c     |  6 +-
>  .../gpu/drm/amd/powerplay/hwmgr/processpptables.c  | 96 ++++++++--------------
>  drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c     | 52 ++++--------
>  drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c   | 12 +--
>  4 files changed, 56 insertions(+), 110 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> index bc839ff..9f2c037 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> @@ -1225,10 +1225,8 @@ static int cz_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>  		phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>  		phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>  
> -		if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -			kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -			hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -		}
> +		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>  
>  		kfree(hwmgr->backend);
>  		hwmgr->backend = NULL;
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> index 2716721..a6dbc55 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> @@ -1615,85 +1615,53 @@ static int pp_tables_uninitialize(struct pp_hwmgr *hwmgr)
>  	if (hwmgr->chip_id == CHIP_RAVEN)
>  		return 0;
>  
> -	if (NULL != hwmgr->dyn_state.vddc_dependency_on_sclk) {
> -		kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
> -		hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
> +	hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vddci_dependency_on_mclk) {
> -		kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
> -		hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
> +	hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vddc_dependency_on_mclk) {
> -		kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
> -		hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
> +	hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.mvdd_dependency_on_mclk) {
> -		kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
> -		hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
> +	hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.valid_mclk_values) {
> -		kfree(hwmgr->dyn_state.valid_mclk_values);
> -		hwmgr->dyn_state.valid_mclk_values = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.valid_mclk_values);
> +	hwmgr->dyn_state.valid_mclk_values = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.valid_sclk_values) {
> -		kfree(hwmgr->dyn_state.valid_sclk_values);
> -		hwmgr->dyn_state.valid_sclk_values = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.valid_sclk_values);
> +	hwmgr->dyn_state.valid_sclk_values = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.cac_leakage_table) {
> -		kfree(hwmgr->dyn_state.cac_leakage_table);
> -		hwmgr->dyn_state.cac_leakage_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.cac_leakage_table);
> +	hwmgr->dyn_state.cac_leakage_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vddc_phase_shed_limits_table) {
> -		kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
> -		hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
> +	hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vce_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.uvd_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.samu_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.acp_clock_voltage_dependency_table) {
> -		kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
> -		hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
> +	hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.cac_dtp_table) {
> -		kfree(hwmgr->dyn_state.cac_dtp_table);
> -		hwmgr->dyn_state.cac_dtp_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.cac_dtp_table);
> +	hwmgr->dyn_state.cac_dtp_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.ppm_parameter_table) {
> -		kfree(hwmgr->dyn_state.ppm_parameter_table);
> -		hwmgr->dyn_state.ppm_parameter_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.ppm_parameter_table);
> +	hwmgr->dyn_state.ppm_parameter_table = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vdd_gfx_dependency_on_sclk) {
> -		kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
> -		hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
> +	hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
>  
> -	if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
> -		kfree(hwmgr->dyn_state.vq_budgeting_table);
> -		hwmgr->dyn_state.vq_budgeting_table = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vq_budgeting_table);
> +	hwmgr->dyn_state.vq_budgeting_table = NULL;
>  
>  	return 0;
>  }
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> index 2c3e6ba..5547ed3 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> @@ -640,40 +640,24 @@ static int rv_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>  	phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>  	phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>  
> -	if (pinfo->vdd_dep_on_dcefclk) {
> -		kfree(pinfo->vdd_dep_on_dcefclk);
> -		pinfo->vdd_dep_on_dcefclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_socclk) {
> -		kfree(pinfo->vdd_dep_on_socclk);
> -		pinfo->vdd_dep_on_socclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_fclk) {
> -		kfree(pinfo->vdd_dep_on_fclk);
> -		pinfo->vdd_dep_on_fclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_dispclk) {
> -		kfree(pinfo->vdd_dep_on_dispclk);
> -		pinfo->vdd_dep_on_dispclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_dppclk) {
> -		kfree(pinfo->vdd_dep_on_dppclk);
> -		pinfo->vdd_dep_on_dppclk = NULL;
> -	}
> -	if (pinfo->vdd_dep_on_phyclk) {
> -		kfree(pinfo->vdd_dep_on_phyclk);
> -		pinfo->vdd_dep_on_phyclk = NULL;
> -	}
> -
> -	if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -	}
> -
> -	if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
> -		kfree(hwmgr->dyn_state.vq_budgeting_table);
> -		hwmgr->dyn_state.vq_budgeting_table = NULL;
> -	}
> +	kfree(pinfo->vdd_dep_on_dcefclk);
> +	pinfo->vdd_dep_on_dcefclk = NULL;
> +	kfree(pinfo->vdd_dep_on_socclk);
> +	pinfo->vdd_dep_on_socclk = NULL;
> +	kfree(pinfo->vdd_dep_on_fclk);
> +	pinfo->vdd_dep_on_fclk = NULL;
> +	kfree(pinfo->vdd_dep_on_dispclk);
> +	pinfo->vdd_dep_on_dispclk = NULL;
> +	kfree(pinfo->vdd_dep_on_dppclk);
> +	pinfo->vdd_dep_on_dppclk = NULL;
> +	kfree(pinfo->vdd_dep_on_phyclk);
> +	pinfo->vdd_dep_on_phyclk = NULL;
> +
> +	kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +	hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> +
> +	kfree(hwmgr->dyn_state.vq_budgeting_table);
> +	hwmgr->dyn_state.vq_budgeting_table = NULL;
>  
>  	kfree(hwmgr->backend);
>  	hwmgr->backend = NULL;
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> index c274323..eb8a3ff 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> @@ -2282,15 +2282,11 @@ static int smu7_set_private_data_based_on_pptable_v0(struct pp_hwmgr *hwmgr)
>  
>  static int smu7_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>  {
> -	if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -		kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -		hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -	}
> +	kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +	hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>  	pp_smu7_thermal_fini(hwmgr);
> -	if (NULL != hwmgr->backend) {
> -		kfree(hwmgr->backend);
> -		hwmgr->backend = NULL;
> -	}
> +	kfree(hwmgr->backend);
> +	hwmgr->backend = NULL;
>  
>  	return 0;
>  }
> 
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] drm/amd/powerplay/hwmgr: Remove null check before kfree
       [not found]   ` <337d5257-2d0a-8482-f8d8-4a44234347d4-5C7GfCeVMHo@public.gmane.org>
@ 2017-08-29 14:54     ` Zhu, Rex
  0 siblings, 0 replies; 7+ messages in thread
From: Zhu, Rex @ 2017-08-29 14:54 UTC (permalink / raw)
  To: Wentland, Harry, Himanshu Jha, airlied-cv59FeDIM0c, Zhu, Rex
  Cc: Deucher, Alexander, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, Koenig, Christian


[-- Attachment #1.1: Type: text/plain, Size: 11521 bytes --]


Reviewed-by:  Rex Zhu <Rex.Zhu-5C7GfCeVMHo@public.gmane.org<mailto:Rex.Zhu-5C7GfCeVMHo@public.gmane.org>>


Best Regards

Rex

________________________________
From: Wentland, Harry
Sent: Tuesday, August 29, 2017 9:34:01 PM
To: Himanshu Jha; airlied-cv59FeDIM0c@public.gmane.org
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org; dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org; amd-gfx@lists.freedesktop.org; Deucher, Alexander; Zhu, Rex; Koenig, Christian
Subject: Re: [PATCH] drm/amd/powerplay/hwmgr: Remove null check before kfree

On 2017-08-29 09:12 AM, Himanshu Jha wrote:
> kfree on NULL pointer is a no-op and therefore checking is redundant.
>
> Signed-off-by: Himanshu Jha <himanshujha199640-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

Reviewed-by: Harry Wentland <harry.wentland-5C7GfCeVMHo@public.gmane.org>

Harry

> ---
>  drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c     |  6 +-
>  .../gpu/drm/amd/powerplay/hwmgr/processpptables.c  | 96 ++++++++--------------
>  drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c     | 52 ++++--------
>  drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c   | 12 +--
>  4 files changed, 56 insertions(+), 110 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> index bc839ff..9f2c037 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
> @@ -1225,10 +1225,8 @@ static int cz_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>                phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>                phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>
> -             if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -                     kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -                     hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -             }
> +             kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +             hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>
>                kfree(hwmgr->backend);
>                hwmgr->backend = NULL;
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> index 2716721..a6dbc55 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
> @@ -1615,85 +1615,53 @@ static int pp_tables_uninitialize(struct pp_hwmgr *hwmgr)
>        if (hwmgr->chip_id == CHIP_RAVEN)
>                return 0;
>
> -     if (NULL != hwmgr->dyn_state.vddc_dependency_on_sclk) {
> -             kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
> -             hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
> +     hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
>
> -     if (NULL != hwmgr->dyn_state.vddci_dependency_on_mclk) {
> -             kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
> -             hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
> +     hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
>
> -     if (NULL != hwmgr->dyn_state.vddc_dependency_on_mclk) {
> -             kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
> -             hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
> +     hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
>
> -     if (NULL != hwmgr->dyn_state.mvdd_dependency_on_mclk) {
> -             kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
> -             hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
> +     hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
>
> -     if (NULL != hwmgr->dyn_state.valid_mclk_values) {
> -             kfree(hwmgr->dyn_state.valid_mclk_values);
> -             hwmgr->dyn_state.valid_mclk_values = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.valid_mclk_values);
> +     hwmgr->dyn_state.valid_mclk_values = NULL;
>
> -     if (NULL != hwmgr->dyn_state.valid_sclk_values) {
> -             kfree(hwmgr->dyn_state.valid_sclk_values);
> -             hwmgr->dyn_state.valid_sclk_values = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.valid_sclk_values);
> +     hwmgr->dyn_state.valid_sclk_values = NULL;
>
> -     if (NULL != hwmgr->dyn_state.cac_leakage_table) {
> -             kfree(hwmgr->dyn_state.cac_leakage_table);
> -             hwmgr->dyn_state.cac_leakage_table = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.cac_leakage_table);
> +     hwmgr->dyn_state.cac_leakage_table = NULL;
>
> -     if (NULL != hwmgr->dyn_state.vddc_phase_shed_limits_table) {
> -             kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
> -             hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
> +     hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
>
> -     if (NULL != hwmgr->dyn_state.vce_clock_voltage_dependency_table) {
> -             kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
> -             hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
> +     hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
>
> -     if (NULL != hwmgr->dyn_state.uvd_clock_voltage_dependency_table) {
> -             kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
> -             hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
> +     hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
>
> -     if (NULL != hwmgr->dyn_state.samu_clock_voltage_dependency_table) {
> -             kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
> -             hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
> +     hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
>
> -     if (NULL != hwmgr->dyn_state.acp_clock_voltage_dependency_table) {
> -             kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
> -             hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
> +     hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
>
> -     if (NULL != hwmgr->dyn_state.cac_dtp_table) {
> -             kfree(hwmgr->dyn_state.cac_dtp_table);
> -             hwmgr->dyn_state.cac_dtp_table = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.cac_dtp_table);
> +     hwmgr->dyn_state.cac_dtp_table = NULL;
>
> -     if (NULL != hwmgr->dyn_state.ppm_parameter_table) {
> -             kfree(hwmgr->dyn_state.ppm_parameter_table);
> -             hwmgr->dyn_state.ppm_parameter_table = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.ppm_parameter_table);
> +     hwmgr->dyn_state.ppm_parameter_table = NULL;
>
> -     if (NULL != hwmgr->dyn_state.vdd_gfx_dependency_on_sclk) {
> -             kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
> -             hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
> +     hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
>
> -     if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
> -             kfree(hwmgr->dyn_state.vq_budgeting_table);
> -             hwmgr->dyn_state.vq_budgeting_table = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.vq_budgeting_table);
> +     hwmgr->dyn_state.vq_budgeting_table = NULL;
>
>        return 0;
>  }
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> index 2c3e6ba..5547ed3 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
> @@ -640,40 +640,24 @@ static int rv_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>        phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>        phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>
> -     if (pinfo->vdd_dep_on_dcefclk) {
> -             kfree(pinfo->vdd_dep_on_dcefclk);
> -             pinfo->vdd_dep_on_dcefclk = NULL;
> -     }
> -     if (pinfo->vdd_dep_on_socclk) {
> -             kfree(pinfo->vdd_dep_on_socclk);
> -             pinfo->vdd_dep_on_socclk = NULL;
> -     }
> -     if (pinfo->vdd_dep_on_fclk) {
> -             kfree(pinfo->vdd_dep_on_fclk);
> -             pinfo->vdd_dep_on_fclk = NULL;
> -     }
> -     if (pinfo->vdd_dep_on_dispclk) {
> -             kfree(pinfo->vdd_dep_on_dispclk);
> -             pinfo->vdd_dep_on_dispclk = NULL;
> -     }
> -     if (pinfo->vdd_dep_on_dppclk) {
> -             kfree(pinfo->vdd_dep_on_dppclk);
> -             pinfo->vdd_dep_on_dppclk = NULL;
> -     }
> -     if (pinfo->vdd_dep_on_phyclk) {
> -             kfree(pinfo->vdd_dep_on_phyclk);
> -             pinfo->vdd_dep_on_phyclk = NULL;
> -     }
> -
> -     if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -             kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -             hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -     }
> -
> -     if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
> -             kfree(hwmgr->dyn_state.vq_budgeting_table);
> -             hwmgr->dyn_state.vq_budgeting_table = NULL;
> -     }
> +     kfree(pinfo->vdd_dep_on_dcefclk);
> +     pinfo->vdd_dep_on_dcefclk = NULL;
> +     kfree(pinfo->vdd_dep_on_socclk);
> +     pinfo->vdd_dep_on_socclk = NULL;
> +     kfree(pinfo->vdd_dep_on_fclk);
> +     pinfo->vdd_dep_on_fclk = NULL;
> +     kfree(pinfo->vdd_dep_on_dispclk);
> +     pinfo->vdd_dep_on_dispclk = NULL;
> +     kfree(pinfo->vdd_dep_on_dppclk);
> +     pinfo->vdd_dep_on_dppclk = NULL;
> +     kfree(pinfo->vdd_dep_on_phyclk);
> +     pinfo->vdd_dep_on_phyclk = NULL;
> +
> +     kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +     hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> +
> +     kfree(hwmgr->dyn_state.vq_budgeting_table);
> +     hwmgr->dyn_state.vq_budgeting_table = NULL;
>
>        kfree(hwmgr->backend);
>        hwmgr->backend = NULL;
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> index c274323..eb8a3ff 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
> @@ -2282,15 +2282,11 @@ static int smu7_set_private_data_based_on_pptable_v0(struct pp_hwmgr *hwmgr)
>
>  static int smu7_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>  {
> -     if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
> -             kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> -             hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
> -     }
> +     kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
> +     hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>        pp_smu7_thermal_fini(hwmgr);
> -     if (NULL != hwmgr->backend) {
> -             kfree(hwmgr->backend);
> -             hwmgr->backend = NULL;
> -     }
> +     kfree(hwmgr->backend);
> +     hwmgr->backend = NULL;
>
>        return 0;
>  }
>

[-- Attachment #1.2: Type: text/html, Size: 22808 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] drm/amd/powerplay/hwmgr: Remove null check before kfree
  2017-08-29 13:34   ` Harry Wentland
@ 2017-08-29 19:52     ` Alex Deucher
  -1 siblings, 0 replies; 7+ messages in thread
From: Alex Deucher @ 2017-08-29 19:52 UTC (permalink / raw)
  To: Harry Wentland
  Cc: Himanshu Jha, Dave Airlie, LKML, amd-gfx list,
	Maling list - DRI developers, Deucher, Alexander, Rex Zhu,
	Christian Koenig

On Tue, Aug 29, 2017 at 9:34 AM, Harry Wentland <harry.wentland@amd.com> wrote:
> On 2017-08-29 09:12 AM, Himanshu Jha wrote:
>> kfree on NULL pointer is a no-op and therefore checking is redundant.
>>
>> Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>
>
> Reviewed-by: Harry Wentland <harry.wentland@amd.com>

Applied.  thanks!

Alex

>
> Harry
>
>> ---
>>  drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c     |  6 +-
>>  .../gpu/drm/amd/powerplay/hwmgr/processpptables.c  | 96 ++++++++--------------
>>  drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c     | 52 ++++--------
>>  drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c   | 12 +--
>>  4 files changed, 56 insertions(+), 110 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
>> index bc839ff..9f2c037 100644
>> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
>> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
>> @@ -1225,10 +1225,8 @@ static int cz_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>>               phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>>               phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>>
>> -             if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
>> -                     kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> -                     hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>> -             }
>> +             kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> +             hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>>
>>               kfree(hwmgr->backend);
>>               hwmgr->backend = NULL;
>> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
>> index 2716721..a6dbc55 100644
>> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
>> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
>> @@ -1615,85 +1615,53 @@ static int pp_tables_uninitialize(struct pp_hwmgr *hwmgr)
>>       if (hwmgr->chip_id == CHIP_RAVEN)
>>               return 0;
>>
>> -     if (NULL != hwmgr->dyn_state.vddc_dependency_on_sclk) {
>> -             kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
>> -             hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
>> +     hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vddci_dependency_on_mclk) {
>> -             kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
>> -             hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
>> +     hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vddc_dependency_on_mclk) {
>> -             kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
>> -             hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
>> +     hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.mvdd_dependency_on_mclk) {
>> -             kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
>> -             hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
>> +     hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.valid_mclk_values) {
>> -             kfree(hwmgr->dyn_state.valid_mclk_values);
>> -             hwmgr->dyn_state.valid_mclk_values = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.valid_mclk_values);
>> +     hwmgr->dyn_state.valid_mclk_values = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.valid_sclk_values) {
>> -             kfree(hwmgr->dyn_state.valid_sclk_values);
>> -             hwmgr->dyn_state.valid_sclk_values = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.valid_sclk_values);
>> +     hwmgr->dyn_state.valid_sclk_values = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.cac_leakage_table) {
>> -             kfree(hwmgr->dyn_state.cac_leakage_table);
>> -             hwmgr->dyn_state.cac_leakage_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.cac_leakage_table);
>> +     hwmgr->dyn_state.cac_leakage_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vddc_phase_shed_limits_table) {
>> -             kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
>> -             hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
>> +     hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vce_clock_voltage_dependency_table) {
>> -             kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
>> -             hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
>> +     hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.uvd_clock_voltage_dependency_table) {
>> -             kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
>> -             hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
>> +     hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.samu_clock_voltage_dependency_table) {
>> -             kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
>> -             hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
>> +     hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.acp_clock_voltage_dependency_table) {
>> -             kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
>> -             hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
>> +     hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.cac_dtp_table) {
>> -             kfree(hwmgr->dyn_state.cac_dtp_table);
>> -             hwmgr->dyn_state.cac_dtp_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.cac_dtp_table);
>> +     hwmgr->dyn_state.cac_dtp_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.ppm_parameter_table) {
>> -             kfree(hwmgr->dyn_state.ppm_parameter_table);
>> -             hwmgr->dyn_state.ppm_parameter_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.ppm_parameter_table);
>> +     hwmgr->dyn_state.ppm_parameter_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vdd_gfx_dependency_on_sclk) {
>> -             kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
>> -             hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
>> +     hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
>> -             kfree(hwmgr->dyn_state.vq_budgeting_table);
>> -             hwmgr->dyn_state.vq_budgeting_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vq_budgeting_table);
>> +     hwmgr->dyn_state.vq_budgeting_table = NULL;
>>
>>       return 0;
>>  }
>> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
>> index 2c3e6ba..5547ed3 100644
>> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
>> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
>> @@ -640,40 +640,24 @@ static int rv_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>>       phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>>       phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>>
>> -     if (pinfo->vdd_dep_on_dcefclk) {
>> -             kfree(pinfo->vdd_dep_on_dcefclk);
>> -             pinfo->vdd_dep_on_dcefclk = NULL;
>> -     }
>> -     if (pinfo->vdd_dep_on_socclk) {
>> -             kfree(pinfo->vdd_dep_on_socclk);
>> -             pinfo->vdd_dep_on_socclk = NULL;
>> -     }
>> -     if (pinfo->vdd_dep_on_fclk) {
>> -             kfree(pinfo->vdd_dep_on_fclk);
>> -             pinfo->vdd_dep_on_fclk = NULL;
>> -     }
>> -     if (pinfo->vdd_dep_on_dispclk) {
>> -             kfree(pinfo->vdd_dep_on_dispclk);
>> -             pinfo->vdd_dep_on_dispclk = NULL;
>> -     }
>> -     if (pinfo->vdd_dep_on_dppclk) {
>> -             kfree(pinfo->vdd_dep_on_dppclk);
>> -             pinfo->vdd_dep_on_dppclk = NULL;
>> -     }
>> -     if (pinfo->vdd_dep_on_phyclk) {
>> -             kfree(pinfo->vdd_dep_on_phyclk);
>> -             pinfo->vdd_dep_on_phyclk = NULL;
>> -     }
>> -
>> -     if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
>> -             kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> -             hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>> -     }
>> -
>> -     if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
>> -             kfree(hwmgr->dyn_state.vq_budgeting_table);
>> -             hwmgr->dyn_state.vq_budgeting_table = NULL;
>> -     }
>> +     kfree(pinfo->vdd_dep_on_dcefclk);
>> +     pinfo->vdd_dep_on_dcefclk = NULL;
>> +     kfree(pinfo->vdd_dep_on_socclk);
>> +     pinfo->vdd_dep_on_socclk = NULL;
>> +     kfree(pinfo->vdd_dep_on_fclk);
>> +     pinfo->vdd_dep_on_fclk = NULL;
>> +     kfree(pinfo->vdd_dep_on_dispclk);
>> +     pinfo->vdd_dep_on_dispclk = NULL;
>> +     kfree(pinfo->vdd_dep_on_dppclk);
>> +     pinfo->vdd_dep_on_dppclk = NULL;
>> +     kfree(pinfo->vdd_dep_on_phyclk);
>> +     pinfo->vdd_dep_on_phyclk = NULL;
>> +
>> +     kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> +     hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>> +
>> +     kfree(hwmgr->dyn_state.vq_budgeting_table);
>> +     hwmgr->dyn_state.vq_budgeting_table = NULL;
>>
>>       kfree(hwmgr->backend);
>>       hwmgr->backend = NULL;
>> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
>> index c274323..eb8a3ff 100644
>> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
>> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
>> @@ -2282,15 +2282,11 @@ static int smu7_set_private_data_based_on_pptable_v0(struct pp_hwmgr *hwmgr)
>>
>>  static int smu7_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>>  {
>> -     if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
>> -             kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> -             hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> +     hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>>       pp_smu7_thermal_fini(hwmgr);
>> -     if (NULL != hwmgr->backend) {
>> -             kfree(hwmgr->backend);
>> -             hwmgr->backend = NULL;
>> -     }
>> +     kfree(hwmgr->backend);
>> +     hwmgr->backend = NULL;
>>
>>       return 0;
>>  }
>>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] drm/amd/powerplay/hwmgr: Remove null check before kfree
@ 2017-08-29 19:52     ` Alex Deucher
  0 siblings, 0 replies; 7+ messages in thread
From: Alex Deucher @ 2017-08-29 19:52 UTC (permalink / raw)
  To: Harry Wentland
  Cc: amd-gfx list, LKML, Maling list - DRI developers, Himanshu Jha,
	Deucher, Alexander, Rex Zhu, Christian Koenig

On Tue, Aug 29, 2017 at 9:34 AM, Harry Wentland <harry.wentland@amd.com> wrote:
> On 2017-08-29 09:12 AM, Himanshu Jha wrote:
>> kfree on NULL pointer is a no-op and therefore checking is redundant.
>>
>> Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>
>
> Reviewed-by: Harry Wentland <harry.wentland@amd.com>

Applied.  thanks!

Alex

>
> Harry
>
>> ---
>>  drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c     |  6 +-
>>  .../gpu/drm/amd/powerplay/hwmgr/processpptables.c  | 96 ++++++++--------------
>>  drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c     | 52 ++++--------
>>  drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c   | 12 +--
>>  4 files changed, 56 insertions(+), 110 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
>> index bc839ff..9f2c037 100644
>> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
>> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/cz_hwmgr.c
>> @@ -1225,10 +1225,8 @@ static int cz_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>>               phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>>               phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>>
>> -             if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
>> -                     kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> -                     hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>> -             }
>> +             kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> +             hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>>
>>               kfree(hwmgr->backend);
>>               hwmgr->backend = NULL;
>> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
>> index 2716721..a6dbc55 100644
>> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
>> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/processpptables.c
>> @@ -1615,85 +1615,53 @@ static int pp_tables_uninitialize(struct pp_hwmgr *hwmgr)
>>       if (hwmgr->chip_id == CHIP_RAVEN)
>>               return 0;
>>
>> -     if (NULL != hwmgr->dyn_state.vddc_dependency_on_sclk) {
>> -             kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
>> -             hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vddc_dependency_on_sclk);
>> +     hwmgr->dyn_state.vddc_dependency_on_sclk = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vddci_dependency_on_mclk) {
>> -             kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
>> -             hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vddci_dependency_on_mclk);
>> +     hwmgr->dyn_state.vddci_dependency_on_mclk = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vddc_dependency_on_mclk) {
>> -             kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
>> -             hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vddc_dependency_on_mclk);
>> +     hwmgr->dyn_state.vddc_dependency_on_mclk = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.mvdd_dependency_on_mclk) {
>> -             kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
>> -             hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.mvdd_dependency_on_mclk);
>> +     hwmgr->dyn_state.mvdd_dependency_on_mclk = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.valid_mclk_values) {
>> -             kfree(hwmgr->dyn_state.valid_mclk_values);
>> -             hwmgr->dyn_state.valid_mclk_values = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.valid_mclk_values);
>> +     hwmgr->dyn_state.valid_mclk_values = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.valid_sclk_values) {
>> -             kfree(hwmgr->dyn_state.valid_sclk_values);
>> -             hwmgr->dyn_state.valid_sclk_values = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.valid_sclk_values);
>> +     hwmgr->dyn_state.valid_sclk_values = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.cac_leakage_table) {
>> -             kfree(hwmgr->dyn_state.cac_leakage_table);
>> -             hwmgr->dyn_state.cac_leakage_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.cac_leakage_table);
>> +     hwmgr->dyn_state.cac_leakage_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vddc_phase_shed_limits_table) {
>> -             kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
>> -             hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vddc_phase_shed_limits_table);
>> +     hwmgr->dyn_state.vddc_phase_shed_limits_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vce_clock_voltage_dependency_table) {
>> -             kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
>> -             hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vce_clock_voltage_dependency_table);
>> +     hwmgr->dyn_state.vce_clock_voltage_dependency_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.uvd_clock_voltage_dependency_table) {
>> -             kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
>> -             hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.uvd_clock_voltage_dependency_table);
>> +     hwmgr->dyn_state.uvd_clock_voltage_dependency_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.samu_clock_voltage_dependency_table) {
>> -             kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
>> -             hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.samu_clock_voltage_dependency_table);
>> +     hwmgr->dyn_state.samu_clock_voltage_dependency_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.acp_clock_voltage_dependency_table) {
>> -             kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
>> -             hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.acp_clock_voltage_dependency_table);
>> +     hwmgr->dyn_state.acp_clock_voltage_dependency_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.cac_dtp_table) {
>> -             kfree(hwmgr->dyn_state.cac_dtp_table);
>> -             hwmgr->dyn_state.cac_dtp_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.cac_dtp_table);
>> +     hwmgr->dyn_state.cac_dtp_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.ppm_parameter_table) {
>> -             kfree(hwmgr->dyn_state.ppm_parameter_table);
>> -             hwmgr->dyn_state.ppm_parameter_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.ppm_parameter_table);
>> +     hwmgr->dyn_state.ppm_parameter_table = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vdd_gfx_dependency_on_sclk) {
>> -             kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
>> -             hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vdd_gfx_dependency_on_sclk);
>> +     hwmgr->dyn_state.vdd_gfx_dependency_on_sclk = NULL;
>>
>> -     if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
>> -             kfree(hwmgr->dyn_state.vq_budgeting_table);
>> -             hwmgr->dyn_state.vq_budgeting_table = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vq_budgeting_table);
>> +     hwmgr->dyn_state.vq_budgeting_table = NULL;
>>
>>       return 0;
>>  }
>> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
>> index 2c3e6ba..5547ed3 100644
>> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
>> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/rv_hwmgr.c
>> @@ -640,40 +640,24 @@ static int rv_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>>       phm_destroy_table(hwmgr, &(hwmgr->power_down_asic));
>>       phm_destroy_table(hwmgr, &(hwmgr->setup_asic));
>>
>> -     if (pinfo->vdd_dep_on_dcefclk) {
>> -             kfree(pinfo->vdd_dep_on_dcefclk);
>> -             pinfo->vdd_dep_on_dcefclk = NULL;
>> -     }
>> -     if (pinfo->vdd_dep_on_socclk) {
>> -             kfree(pinfo->vdd_dep_on_socclk);
>> -             pinfo->vdd_dep_on_socclk = NULL;
>> -     }
>> -     if (pinfo->vdd_dep_on_fclk) {
>> -             kfree(pinfo->vdd_dep_on_fclk);
>> -             pinfo->vdd_dep_on_fclk = NULL;
>> -     }
>> -     if (pinfo->vdd_dep_on_dispclk) {
>> -             kfree(pinfo->vdd_dep_on_dispclk);
>> -             pinfo->vdd_dep_on_dispclk = NULL;
>> -     }
>> -     if (pinfo->vdd_dep_on_dppclk) {
>> -             kfree(pinfo->vdd_dep_on_dppclk);
>> -             pinfo->vdd_dep_on_dppclk = NULL;
>> -     }
>> -     if (pinfo->vdd_dep_on_phyclk) {
>> -             kfree(pinfo->vdd_dep_on_phyclk);
>> -             pinfo->vdd_dep_on_phyclk = NULL;
>> -     }
>> -
>> -     if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
>> -             kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> -             hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>> -     }
>> -
>> -     if (NULL != hwmgr->dyn_state.vq_budgeting_table) {
>> -             kfree(hwmgr->dyn_state.vq_budgeting_table);
>> -             hwmgr->dyn_state.vq_budgeting_table = NULL;
>> -     }
>> +     kfree(pinfo->vdd_dep_on_dcefclk);
>> +     pinfo->vdd_dep_on_dcefclk = NULL;
>> +     kfree(pinfo->vdd_dep_on_socclk);
>> +     pinfo->vdd_dep_on_socclk = NULL;
>> +     kfree(pinfo->vdd_dep_on_fclk);
>> +     pinfo->vdd_dep_on_fclk = NULL;
>> +     kfree(pinfo->vdd_dep_on_dispclk);
>> +     pinfo->vdd_dep_on_dispclk = NULL;
>> +     kfree(pinfo->vdd_dep_on_dppclk);
>> +     pinfo->vdd_dep_on_dppclk = NULL;
>> +     kfree(pinfo->vdd_dep_on_phyclk);
>> +     pinfo->vdd_dep_on_phyclk = NULL;
>> +
>> +     kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> +     hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>> +
>> +     kfree(hwmgr->dyn_state.vq_budgeting_table);
>> +     hwmgr->dyn_state.vq_budgeting_table = NULL;
>>
>>       kfree(hwmgr->backend);
>>       hwmgr->backend = NULL;
>> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
>> index c274323..eb8a3ff 100644
>> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
>> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c
>> @@ -2282,15 +2282,11 @@ static int smu7_set_private_data_based_on_pptable_v0(struct pp_hwmgr *hwmgr)
>>
>>  static int smu7_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
>>  {
>> -     if (NULL != hwmgr->dyn_state.vddc_dep_on_dal_pwrl) {
>> -             kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> -             hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>> -     }
>> +     kfree(hwmgr->dyn_state.vddc_dep_on_dal_pwrl);
>> +     hwmgr->dyn_state.vddc_dep_on_dal_pwrl = NULL;
>>       pp_smu7_thermal_fini(hwmgr);
>> -     if (NULL != hwmgr->backend) {
>> -             kfree(hwmgr->backend);
>> -             hwmgr->backend = NULL;
>> -     }
>> +     kfree(hwmgr->backend);
>> +     hwmgr->backend = NULL;
>>
>>       return 0;
>>  }
>>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-08-29 19:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-29 13:12 [PATCH] drm/amd/powerplay/hwmgr: Remove null check before kfree Himanshu Jha
2017-08-29 13:27 ` Christian König
2017-08-29 13:34 ` Harry Wentland
2017-08-29 13:34   ` Harry Wentland
     [not found]   ` <337d5257-2d0a-8482-f8d8-4a44234347d4-5C7GfCeVMHo@public.gmane.org>
2017-08-29 14:54     ` Zhu, Rex
2017-08-29 19:52   ` Alex Deucher
2017-08-29 19:52     ` Alex Deucher

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.