Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/ttm: remove unused paramter
@ 2024-03-25  7:45 Jesse Zhang
  2024-03-25 15:17 ` ✗ Fi.CI.BUILD: failure for " Patchwork
  2024-03-29 11:10 ` [PATCH] " Christian König
  0 siblings, 2 replies; 4+ messages in thread
From: Jesse Zhang @ 2024-03-25  7:45 UTC (permalink / raw)
  To: dri-devel, amd-gfx, intel-gfx
  Cc: Alex Deucher, Christian Koenig, Jesse Zhang, Jesse Zhang

remove the unsed the paramter in the function
ttm_bo_bounce_temp_buffer and ttm_bo_add_move_fence.

Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
---
 drivers/gpu/drm/ttm/ttm_bo.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
index edf10618fe2b..7f08787687a7 100644
--- a/drivers/gpu/drm/ttm/ttm_bo.c
+++ b/drivers/gpu/drm/ttm/ttm_bo.c
@@ -402,7 +402,6 @@ void ttm_bo_put(struct ttm_buffer_object *bo)
 EXPORT_SYMBOL(ttm_bo_put);
 
 static int ttm_bo_bounce_temp_buffer(struct ttm_buffer_object *bo,
-				     struct ttm_resource **mem,
 				     struct ttm_operation_ctx *ctx,
 				     struct ttm_place *hop)
 {
@@ -470,7 +469,7 @@ static int ttm_bo_evict(struct ttm_buffer_object *bo,
 		if (ret != -EMULTIHOP)
 			break;
 
-		ret = ttm_bo_bounce_temp_buffer(bo, &evict_mem, ctx, &hop);
+		ret = ttm_bo_bounce_temp_buffer(bo, ctx, &hop);
 	} while (!ret);
 
 	if (ret) {
@@ -699,7 +698,6 @@ EXPORT_SYMBOL(ttm_bo_unpin);
  */
 static int ttm_bo_add_move_fence(struct ttm_buffer_object *bo,
 				 struct ttm_resource_manager *man,
-				 struct ttm_resource *mem,
 				 bool no_wait_gpu)
 {
 	struct dma_fence *fence;
@@ -753,7 +751,7 @@ static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
 			return ret;
 	} while (1);
 
-	return ttm_bo_add_move_fence(bo, man, *mem, ctx->no_wait_gpu);
+	return ttm_bo_add_move_fence(bo, man, ctx->no_wait_gpu);
 }
 
 /**
@@ -802,7 +800,7 @@ int ttm_bo_mem_space(struct ttm_buffer_object *bo,
 		if (unlikely(ret))
 			goto error;
 
-		ret = ttm_bo_add_move_fence(bo, man, *mem, ctx->no_wait_gpu);
+		ret = ttm_bo_add_move_fence(bo, man, ctx->no_wait_gpu);
 		if (unlikely(ret)) {
 			ttm_resource_free(bo, mem);
 			if (ret == -EBUSY)
@@ -866,7 +864,7 @@ static int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
 bounce:
 	ret = ttm_bo_handle_move_mem(bo, mem, false, ctx, &hop);
 	if (ret == -EMULTIHOP) {
-		ret = ttm_bo_bounce_temp_buffer(bo, &mem, ctx, &hop);
+		ret = ttm_bo_bounce_temp_buffer(bo, ctx, &hop);
 		if (ret)
 			goto out;
 		/* try and move to final place now. */
-- 
2.25.1


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

* ✗ Fi.CI.BUILD: failure for drm/ttm: remove unused paramter
  2024-03-25  7:45 [PATCH] drm/ttm: remove unused paramter Jesse Zhang
@ 2024-03-25 15:17 ` Patchwork
  2024-03-29 11:10 ` [PATCH] " Christian König
  1 sibling, 0 replies; 4+ messages in thread
From: Patchwork @ 2024-03-25 15:17 UTC (permalink / raw)
  To: Jesse Zhang; +Cc: intel-gfx

== Series Details ==

Series: drm/ttm: remove unused paramter
URL   : https://patchwork.freedesktop.org/series/131576/
State : failure

== Summary ==

Error: patch https://patchwork.freedesktop.org/api/1.0/series/131576/revisions/1/mbox/ not applied
Applying: drm/ttm: remove unused paramter
Using index info to reconstruct a base tree...
M	drivers/gpu/drm/ttm/ttm_bo.c
Falling back to patching base and 3-way merge...
Auto-merging drivers/gpu/drm/ttm/ttm_bo.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/ttm/ttm_bo.c
error: Failed to merge in the changes.
hint: Use 'git am --show-current-patch=diff' to see the failed patch
Patch failed at 0001 drm/ttm: remove unused paramter
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".
Build failed, no error log produced



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

* Re: [PATCH] drm/ttm: remove unused paramter
  2024-03-25  7:45 [PATCH] drm/ttm: remove unused paramter Jesse Zhang
  2024-03-25 15:17 ` ✗ Fi.CI.BUILD: failure for " Patchwork
@ 2024-03-29 11:10 ` Christian König
  2024-03-29 11:15   ` Christian König
  1 sibling, 1 reply; 4+ messages in thread
From: Christian König @ 2024-03-29 11:10 UTC (permalink / raw)
  To: Jesse Zhang, dri-devel, amd-gfx, intel-gfx; +Cc: Alex Deucher

Am 25.03.24 um 08:45 schrieb Jesse Zhang:
> remove the unsed the paramter in the function
> ttm_bo_bounce_temp_buffer and ttm_bo_add_move_fence.
>
> Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>

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

Regards,
Christian.

> ---
>   drivers/gpu/drm/ttm/ttm_bo.c | 10 ++++------
>   1 file changed, 4 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
> index edf10618fe2b..7f08787687a7 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo.c
> @@ -402,7 +402,6 @@ void ttm_bo_put(struct ttm_buffer_object *bo)
>   EXPORT_SYMBOL(ttm_bo_put);
>   
>   static int ttm_bo_bounce_temp_buffer(struct ttm_buffer_object *bo,
> -				     struct ttm_resource **mem,
>   				     struct ttm_operation_ctx *ctx,
>   				     struct ttm_place *hop)
>   {
> @@ -470,7 +469,7 @@ static int ttm_bo_evict(struct ttm_buffer_object *bo,
>   		if (ret != -EMULTIHOP)
>   			break;
>   
> -		ret = ttm_bo_bounce_temp_buffer(bo, &evict_mem, ctx, &hop);
> +		ret = ttm_bo_bounce_temp_buffer(bo, ctx, &hop);
>   	} while (!ret);
>   
>   	if (ret) {
> @@ -699,7 +698,6 @@ EXPORT_SYMBOL(ttm_bo_unpin);
>    */
>   static int ttm_bo_add_move_fence(struct ttm_buffer_object *bo,
>   				 struct ttm_resource_manager *man,
> -				 struct ttm_resource *mem,
>   				 bool no_wait_gpu)
>   {
>   	struct dma_fence *fence;
> @@ -753,7 +751,7 @@ static int ttm_bo_mem_force_space(struct ttm_buffer_object *bo,
>   			return ret;
>   	} while (1);
>   
> -	return ttm_bo_add_move_fence(bo, man, *mem, ctx->no_wait_gpu);
> +	return ttm_bo_add_move_fence(bo, man, ctx->no_wait_gpu);
>   }
>   
>   /**
> @@ -802,7 +800,7 @@ int ttm_bo_mem_space(struct ttm_buffer_object *bo,
>   		if (unlikely(ret))
>   			goto error;
>   
> -		ret = ttm_bo_add_move_fence(bo, man, *mem, ctx->no_wait_gpu);
> +		ret = ttm_bo_add_move_fence(bo, man, ctx->no_wait_gpu);
>   		if (unlikely(ret)) {
>   			ttm_resource_free(bo, mem);
>   			if (ret == -EBUSY)
> @@ -866,7 +864,7 @@ static int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
>   bounce:
>   	ret = ttm_bo_handle_move_mem(bo, mem, false, ctx, &hop);
>   	if (ret == -EMULTIHOP) {
> -		ret = ttm_bo_bounce_temp_buffer(bo, &mem, ctx, &hop);
> +		ret = ttm_bo_bounce_temp_buffer(bo, ctx, &hop);
>   		if (ret)
>   			goto out;
>   		/* try and move to final place now. */


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

* Re: [PATCH] drm/ttm: remove unused paramter
  2024-03-29 11:10 ` [PATCH] " Christian König
@ 2024-03-29 11:15   ` Christian König
  0 siblings, 0 replies; 4+ messages in thread
From: Christian König @ 2024-03-29 11:15 UTC (permalink / raw)
  To: Jesse Zhang, dri-devel, amd-gfx, intel-gfx; +Cc: Alex Deucher

Am 29.03.24 um 12:10 schrieb Christian König:
> Am 25.03.24 um 08:45 schrieb Jesse Zhang:
>> remove the unsed the paramter in the function
>> ttm_bo_bounce_temp_buffer and ttm_bo_add_move_fence.
>>
>> Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
>
> Good catch, Reviewed-by: Christian König <christian.koenig@amd.com>

Please rebase that patch on top of drm-misc-next.

Regards,
Christian.

>
> Regards,
> Christian.
>
>> ---
>>   drivers/gpu/drm/ttm/ttm_bo.c | 10 ++++------
>>   1 file changed, 4 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
>> index edf10618fe2b..7f08787687a7 100644
>> --- a/drivers/gpu/drm/ttm/ttm_bo.c
>> +++ b/drivers/gpu/drm/ttm/ttm_bo.c
>> @@ -402,7 +402,6 @@ void ttm_bo_put(struct ttm_buffer_object *bo)
>>   EXPORT_SYMBOL(ttm_bo_put);
>>     static int ttm_bo_bounce_temp_buffer(struct ttm_buffer_object *bo,
>> -                     struct ttm_resource **mem,
>>                        struct ttm_operation_ctx *ctx,
>>                        struct ttm_place *hop)
>>   {
>> @@ -470,7 +469,7 @@ static int ttm_bo_evict(struct ttm_buffer_object 
>> *bo,
>>           if (ret != -EMULTIHOP)
>>               break;
>>   -        ret = ttm_bo_bounce_temp_buffer(bo, &evict_mem, ctx, &hop);
>> +        ret = ttm_bo_bounce_temp_buffer(bo, ctx, &hop);
>>       } while (!ret);
>>         if (ret) {
>> @@ -699,7 +698,6 @@ EXPORT_SYMBOL(ttm_bo_unpin);
>>    */
>>   static int ttm_bo_add_move_fence(struct ttm_buffer_object *bo,
>>                    struct ttm_resource_manager *man,
>> -                 struct ttm_resource *mem,
>>                    bool no_wait_gpu)
>>   {
>>       struct dma_fence *fence;
>> @@ -753,7 +751,7 @@ static int ttm_bo_mem_force_space(struct 
>> ttm_buffer_object *bo,
>>               return ret;
>>       } while (1);
>>   -    return ttm_bo_add_move_fence(bo, man, *mem, ctx->no_wait_gpu);
>> +    return ttm_bo_add_move_fence(bo, man, ctx->no_wait_gpu);
>>   }
>>     /**
>> @@ -802,7 +800,7 @@ int ttm_bo_mem_space(struct ttm_buffer_object *bo,
>>           if (unlikely(ret))
>>               goto error;
>>   -        ret = ttm_bo_add_move_fence(bo, man, *mem, ctx->no_wait_gpu);
>> +        ret = ttm_bo_add_move_fence(bo, man, ctx->no_wait_gpu);
>>           if (unlikely(ret)) {
>>               ttm_resource_free(bo, mem);
>>               if (ret == -EBUSY)
>> @@ -866,7 +864,7 @@ static int ttm_bo_move_buffer(struct 
>> ttm_buffer_object *bo,
>>   bounce:
>>       ret = ttm_bo_handle_move_mem(bo, mem, false, ctx, &hop);
>>       if (ret == -EMULTIHOP) {
>> -        ret = ttm_bo_bounce_temp_buffer(bo, &mem, ctx, &hop);
>> +        ret = ttm_bo_bounce_temp_buffer(bo, ctx, &hop);
>>           if (ret)
>>               goto out;
>>           /* try and move to final place now. */
>


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

end of thread, other threads:[~2024-03-29 11:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-25  7:45 [PATCH] drm/ttm: remove unused paramter Jesse Zhang
2024-03-25 15:17 ` ✗ Fi.CI.BUILD: failure for " Patchwork
2024-03-29 11:10 ` [PATCH] " Christian König
2024-03-29 11:15   ` Christian König

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox