2023-06-25 03:17:49

by Feng Jiang

[permalink] [raw]
Subject: [PATCH] drm/ttm: Remove duplicate assignments to ttm->caching

The parameter 'caching' has already been assigned to
'ttm->caching', so 'ttm_cached' is redundant.

Fixes: 1b4ea4c5980f ("drm/ttm: set the tt caching state at creation time")
Signed-off-by: Feng Jiang <[email protected]>
---
drivers/gpu/drm/ttm/ttm_tt.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
index ab725d9d14a6..1ce4b36ab33b 100644
--- a/drivers/gpu/drm/ttm/ttm_tt.c
+++ b/drivers/gpu/drm/ttm/ttm_tt.c
@@ -137,7 +137,6 @@ static void ttm_tt_init_fields(struct ttm_tt *ttm,
unsigned long extra_pages)
{
ttm->num_pages = (PAGE_ALIGN(bo->base.size) >> PAGE_SHIFT) + extra_pages;
- ttm->caching = ttm_cached;
ttm->page_flags = page_flags;
ttm->dma_address = NULL;
ttm->swap_storage = NULL;
--
2.41.0



2023-06-29 06:47:54

by Christian König

[permalink] [raw]
Subject: Re: [PATCH] drm/ttm: Remove duplicate assignments to ttm->caching

This has already been fixed with:

commit 2ce977df10c179138e2723b25c2d2c055a3e3cc6
Author: Ma Jun <[email protected]>
Date:   Wed May 31 13:30:51 2023 +0800

    drm/ttm: Remove redundant code in ttm_tt_init_fields

    Remove redundant assignment code for ttm->caching as it's overwritten
    just a few lines later.

    v2:
     - Update the commit message.

    Signed-off-by: Ma Jun <[email protected]>
    Reviewed-by: Guchun Chen <[email protected]>
    Reviewed-by: Christian König <[email protected]>
    Signed-off-by: Christian König <[email protected]>
    Link:
https://patchwork.freedesktop.org/patch/msgid/[email protected]


Regards,
Christian.

Am 25.06.23 um 04:45 schrieb Feng Jiang:
> The parameter 'caching' has already been assigned to
> 'ttm->caching', so 'ttm_cached' is redundant.
>
> Fixes: 1b4ea4c5980f ("drm/ttm: set the tt caching state at creation time")
> Signed-off-by: Feng Jiang <[email protected]>
> ---
> drivers/gpu/drm/ttm/ttm_tt.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
> index ab725d9d14a6..1ce4b36ab33b 100644
> --- a/drivers/gpu/drm/ttm/ttm_tt.c
> +++ b/drivers/gpu/drm/ttm/ttm_tt.c
> @@ -137,7 +137,6 @@ static void ttm_tt_init_fields(struct ttm_tt *ttm,
> unsigned long extra_pages)
> {
> ttm->num_pages = (PAGE_ALIGN(bo->base.size) >> PAGE_SHIFT) + extra_pages;
> - ttm->caching = ttm_cached;
> ttm->page_flags = page_flags;
> ttm->dma_address = NULL;
> ttm->swap_storage = NULL;


2023-06-30 02:49:34

by Feng Jiang

[permalink] [raw]
Subject: Re: [PATCH] drm/ttm: Remove duplicate assignments to ttm->caching

On 2023/6/29 14:37, Christian König wrote:
> This has already been fixed with:
>
> commit 2ce977df10c179138e2723b25c2d2c055a3e3cc6
> Author: Ma Jun <[email protected]>
> Date:   Wed May 31 13:30:51 2023 +0800
>
>     drm/ttm: Remove redundant code in ttm_tt_init_fields
>
>     Remove redundant assignment code for ttm->caching as it's overwritten
>     just a few lines later.
>
>     v2:
>      - Update the commit message.
>
>     Signed-off-by: Ma Jun <[email protected]>
>     Reviewed-by: Guchun Chen <[email protected]>
>     Reviewed-by: Christian König <[email protected]>
>     Signed-off-by: Christian König <[email protected]>
>     Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
>
>
> Regards,
> Christian.
>
> Am 25.06.23 um 04:45 schrieb Feng Jiang:
>> The parameter 'caching' has already been assigned to
>> 'ttm->caching', so 'ttm_cached' is redundant.
>>
>> Fixes: 1b4ea4c5980f ("drm/ttm: set the tt caching state at creation time")
>> Signed-off-by: Feng Jiang <[email protected]>
>> ---
>>   drivers/gpu/drm/ttm/ttm_tt.c | 1 -
>>   1 file changed, 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
>> index ab725d9d14a6..1ce4b36ab33b 100644
>> --- a/drivers/gpu/drm/ttm/ttm_tt.c
>> +++ b/drivers/gpu/drm/ttm/ttm_tt.c
>> @@ -137,7 +137,6 @@ static void ttm_tt_init_fields(struct ttm_tt *ttm,
>>                      unsigned long extra_pages)
>>   {
>>       ttm->num_pages = (PAGE_ALIGN(bo->base.size) >> PAGE_SHIFT) + extra_pages;
>> -    ttm->caching = ttm_cached;
>>       ttm->page_flags = page_flags;
>>       ttm->dma_address = NULL;
>>       ttm->swap_storage = NULL;
>
Sorry, I will check before sending next time, thanks!
--
Best regards,
Feng