linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/amdkfd: remove set but not used variable 'pdd'
@ 2019-07-26 14:00 YueHaibing
  2019-08-22  2:43 ` Alex Deucher
  0 siblings, 1 reply; 2+ messages in thread
From: YueHaibing @ 2019-07-26 14:00 UTC (permalink / raw)
  To: oded.gabbay, alexander.deucher, christian.koenig, David1.Zhou,
	airlied, daniel
  Cc: linux-kernel, amd-gfx, dri-devel, YueHaibing

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_process.c: In function restore_process_worker:
drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_process.c:949:29: warning:
 variable pdd set but not used [-Wunused-but-set-variable]

It is not used since
commit 5b87245faf57 ("drm/amdkfd: Simplify kfd2kgd interface")

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/gpu/drm/amd/amdkfd/kfd_process.c | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_process.c b/drivers/gpu/drm/amd/amdkfd/kfd_process.c
index 8f1076c..240bf68 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_process.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_process.c
@@ -1042,7 +1042,6 @@ static void restore_process_worker(struct work_struct *work)
 {
 	struct delayed_work *dwork;
 	struct kfd_process *p;
-	struct kfd_process_device *pdd;
 	int ret = 0;
 
 	dwork = to_delayed_work(work);
@@ -1051,16 +1050,6 @@ static void restore_process_worker(struct work_struct *work)
 	 * lifetime of this thread, kfd_process p will be valid
 	 */
 	p = container_of(dwork, struct kfd_process, restore_work);
-
-	/* Call restore_process_bos on the first KGD device. This function
-	 * takes care of restoring the whole process including other devices.
-	 * Restore can fail if enough memory is not available. If so,
-	 * reschedule again.
-	 */
-	pdd = list_first_entry(&p->per_device_data,
-			       struct kfd_process_device,
-			       per_device_list);
-
 	pr_debug("Started restoring pasid %d\n", p->pasid);
 
 	/* Setting last_restore_timestamp before successful restoration.
-- 
2.7.4



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

* Re: [PATCH] drm/amdkfd: remove set but not used variable 'pdd'
  2019-07-26 14:00 [PATCH] drm/amdkfd: remove set but not used variable 'pdd' YueHaibing
@ 2019-08-22  2:43 ` Alex Deucher
  0 siblings, 0 replies; 2+ messages in thread
From: Alex Deucher @ 2019-08-22  2:43 UTC (permalink / raw)
  To: YueHaibing
  Cc: Oded Gabbay, Deucher, Alexander, Christian Koenig, Chunming Zhou,
	Dave Airlie, Daniel Vetter, Maling list - DRI developers, LKML,
	amd-gfx list

Applied.  thanks!

Alex

On Fri, Jul 26, 2019 at 11:58 AM YueHaibing <yuehaibing@huawei.com> wrote:
>
> Fixes gcc '-Wunused-but-set-variable' warning:
>
> drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_process.c: In function restore_process_worker:
> drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_process.c:949:29: warning:
>  variable pdd set but not used [-Wunused-but-set-variable]
>
> It is not used since
> commit 5b87245faf57 ("drm/amdkfd: Simplify kfd2kgd interface")
>
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
> ---
>  drivers/gpu/drm/amd/amdkfd/kfd_process.c | 11 -----------
>  1 file changed, 11 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_process.c b/drivers/gpu/drm/amd/amdkfd/kfd_process.c
> index 8f1076c..240bf68 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_process.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_process.c
> @@ -1042,7 +1042,6 @@ static void restore_process_worker(struct work_struct *work)
>  {
>         struct delayed_work *dwork;
>         struct kfd_process *p;
> -       struct kfd_process_device *pdd;
>         int ret = 0;
>
>         dwork = to_delayed_work(work);
> @@ -1051,16 +1050,6 @@ static void restore_process_worker(struct work_struct *work)
>          * lifetime of this thread, kfd_process p will be valid
>          */
>         p = container_of(dwork, struct kfd_process, restore_work);
> -
> -       /* Call restore_process_bos on the first KGD device. This function
> -        * takes care of restoring the whole process including other devices.
> -        * Restore can fail if enough memory is not available. If so,
> -        * reschedule again.
> -        */
> -       pdd = list_first_entry(&p->per_device_data,
> -                              struct kfd_process_device,
> -                              per_device_list);
> -
>         pr_debug("Started restoring pasid %d\n", p->pasid);
>
>         /* Setting last_restore_timestamp before successful restoration.
> --
> 2.7.4
>
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

end of thread, other threads:[~2019-08-22  2:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-26 14:00 [PATCH] drm/amdkfd: remove set but not used variable 'pdd' YueHaibing
2019-08-22  2:43 ` Alex Deucher

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).