linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] drm/amdgpu: Remove two redundant null pointer checks
@ 2019-09-05  5:49 zhong jiang
  2019-09-05  5:55 ` Zhou, David(ChunMing)
  2019-09-05  8:23 ` [v2] " Markus Elfring
  0 siblings, 2 replies; 3+ messages in thread
From: zhong jiang @ 2019-09-05  5:49 UTC (permalink / raw)
  To: airlied, daniel
  Cc: Markus.Elfring, alexander.deucher, christian.koenig, David1.Zhou,
	zhongjiang, linux-kernel

The functions "debugfs_remove" and "kfree" tolerate the passing
of null pointers. Hence it is unnecessary to check such arguments
around the calls. Thus remove the extra condition check at two places.

Signed-off-by: zhong jiang <zhongjiang@huawei.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
index 5652cc7..cb94627 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
@@ -1077,8 +1077,7 @@ static int amdgpu_debugfs_ib_preempt(void *data, u64 val)
 
 	ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
 
-	if (fences)
-		kfree(fences);
+	kfree(fences);
 
 	return 0;
 }
@@ -1103,8 +1102,7 @@ int amdgpu_debugfs_init(struct amdgpu_device *adev)
 
 void amdgpu_debugfs_preempt_cleanup(struct amdgpu_device *adev)
 {
-	if (adev->debugfs_preempt)
-		debugfs_remove(adev->debugfs_preempt);
+	debugfs_remove(adev->debugfs_preempt);
 }
 
 #else
-- 
1.7.12.4


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

* Re: [PATCH v2] drm/amdgpu: Remove two redundant null pointer checks
  2019-09-05  5:49 [PATCH v2] drm/amdgpu: Remove two redundant null pointer checks zhong jiang
@ 2019-09-05  5:55 ` Zhou, David(ChunMing)
  2019-09-05  8:23 ` [v2] " Markus Elfring
  1 sibling, 0 replies; 3+ messages in thread
From: Zhou, David(ChunMing) @ 2019-09-05  5:55 UTC (permalink / raw)
  To: zhong jiang, airlied, daniel
  Cc: Markus.Elfring, Deucher, Alexander, Koenig, Christian, linux-kernel


On 2019/9/5 下午1:49, zhong jiang wrote:
> The functions "debugfs_remove" and "kfree" tolerate the passing
> of null pointers. Hence it is unnecessary to check such arguments
> around the calls. Thus remove the extra condition check at two places.
>
> Signed-off-by: zhong jiang <zhongjiang@huawei.com>

Reviewed-by: Chunming Zhou <david1.zhou@amd.com>


> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 6 ++----
>   1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
> index 5652cc7..cb94627 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
> @@ -1077,8 +1077,7 @@ static int amdgpu_debugfs_ib_preempt(void *data, u64 val)
>   
>   	ttm_bo_unlock_delayed_workqueue(&adev->mman.bdev, resched);
>   
> -	if (fences)
> -		kfree(fences);
> +	kfree(fences);
>   
>   	return 0;
>   }
> @@ -1103,8 +1102,7 @@ int amdgpu_debugfs_init(struct amdgpu_device *adev)
>   
>   void amdgpu_debugfs_preempt_cleanup(struct amdgpu_device *adev)
>   {
> -	if (adev->debugfs_preempt)
> -		debugfs_remove(adev->debugfs_preempt);
> +	debugfs_remove(adev->debugfs_preempt);
>   }
>   
>   #else

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

* Re: [v2] drm/amdgpu: Remove two redundant null pointer checks
  2019-09-05  5:49 [PATCH v2] drm/amdgpu: Remove two redundant null pointer checks zhong jiang
  2019-09-05  5:55 ` Zhou, David(ChunMing)
@ 2019-09-05  8:23 ` Markus Elfring
  1 sibling, 0 replies; 3+ messages in thread
From: Markus Elfring @ 2019-09-05  8:23 UTC (permalink / raw)
  To: zhong jiang, amd-gfx, dri-devel, Alex Deucher,
	Christian König, Chunming Zhou, Dan Carpenter,
	Daniel Vetter, David Airlie, Hawking Zhang, Jack Xiao,
	Kevin Wang, Tom St Denis, Wang Xiayang
  Cc: linux-kernel, kernel-janitors

> The functions "debugfs_remove" and "kfree" tolerate the passing
> of null pointers. Hence it is unnecessary to check such arguments
> around the calls. Thus remove the extra condition check at two places.

Will a tag like “Generated-by: scripts/coccinelle/free/ifnullfree.cocci” be relevant here?

How do you think about to compare this change approach with another patch variant?

drm/amdgpu: Delete an unnecessary check before two function calls
https://lkml.org/lkml/2019/9/4/401
https://lore.kernel.org/patchwork/patch/1123689/
https://lore.kernel.org/r/a3739125-5fa8-cadb-d2b8-8a9f12e9bacd@web.de/

Regards,
Markus

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

end of thread, other threads:[~2019-09-05  8:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-05  5:49 [PATCH v2] drm/amdgpu: Remove two redundant null pointer checks zhong jiang
2019-09-05  5:55 ` Zhou, David(ChunMing)
2019-09-05  8:23 ` [v2] " Markus Elfring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).