All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/4] drm/ttm: zero allocation only for CPU domain
@ 2016-01-05  3:55 david1.zhou
  2016-01-05 14:32 ` Lucas Stach
  0 siblings, 1 reply; 3+ messages in thread
From: david1.zhou @ 2016-01-05  3:55 UTC (permalink / raw)
  To: dri-devel

From: Chunming Zhou <David1.Zhou@amd.com>

Change-Id: I653d61e32faaa11c39bb978bf90301513a0c35b8
Signed-off-by: Chunming Zhou <David1.Zhou@amd.com>
---
 drivers/gpu/drm/ttm/ttm_bo.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
index 745e996..0633b65 100644
--- a/drivers/gpu/drm/ttm/ttm_bo.c
+++ b/drivers/gpu/drm/ttm/ttm_bo.c
@@ -301,6 +301,7 @@ static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,
 	if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
 		if (bo->ttm == NULL) {
 			bool zero = !(old_man->flags & TTM_MEMTYPE_FLAG_FIXED);
+			zero = (mem->mem_type == TTM_PL_SYSTEM) ? zero : false;
 			ret = ttm_bo_add_ttm(bo, zero);
 			if (ret)
 				goto out_err;
-- 
1.9.1

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH 2/4] drm/ttm: zero allocation only for CPU domain
  2016-01-05  3:55 [PATCH 2/4] drm/ttm: zero allocation only for CPU domain david1.zhou
@ 2016-01-05 14:32 ` Lucas Stach
  2016-01-06  6:44   ` zhoucm1
  0 siblings, 1 reply; 3+ messages in thread
From: Lucas Stach @ 2016-01-05 14:32 UTC (permalink / raw)
  To: david1.zhou, dri-devel

Hi David,

why is this patch 2/4 if it's just a single patch?

Am Dienstag, den 05.01.2016, 11:55 +0800 schrieb david1.zhou@amd.com:
> From: Chunming Zhou <David1.Zhou@amd.com>
> 
> Change-Id: I653d61e32faaa11c39bb978bf90301513a0c35b8

This change-id is just pure noise when you submit something upstream.

Please add a proper change log on why the change below is
necessary/helpful.

Regards,
Lucas

> Signed-off-by: Chunming Zhou <David1.Zhou@amd.com>
> ---
>  drivers/gpu/drm/ttm/ttm_bo.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/gpu/drm/ttm/ttm_bo.c
> b/drivers/gpu/drm/ttm/ttm_bo.c
> index 745e996..0633b65 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo.c
> @@ -301,6 +301,7 @@ static int ttm_bo_handle_move_mem(struct
> ttm_buffer_object *bo,
>  	if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
>  		if (bo->ttm == NULL) {
>  			bool zero = !(old_man->flags &
> TTM_MEMTYPE_FLAG_FIXED);
> +			zero = (mem->mem_type == TTM_PL_SYSTEM) ?
> zero : false;
>  			ret = ttm_bo_add_ttm(bo, zero);
>  			if (ret)
>  				goto out_err;
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH 2/4] drm/ttm: zero allocation only for CPU domain
  2016-01-05 14:32 ` Lucas Stach
@ 2016-01-06  6:44   ` zhoucm1
  0 siblings, 0 replies; 3+ messages in thread
From: zhoucm1 @ 2016-01-06  6:44 UTC (permalink / raw)
  To: Lucas Stach, dri-devel

Thanks for reply, this patch is mainly for performance reason. since TTM 
is to clear page for all non-fixed memory (GTT and CPU domains), which 
takes much more CPU overhead. The patch is to remove 'clear page' for 
GTT domain.
btw: Micheal has rejected this patch.

Regards,
David Zhou (Chunming)

On 2016年01月05日 22:32, Lucas Stach wrote:
> Hi David,
>
> why is this patch 2/4 if it's just a single patch?
>
> Am Dienstag, den 05.01.2016, 11:55 +0800 schrieb david1.zhou@amd.com:
>> From: Chunming Zhou <David1.Zhou@amd.com>
>>
>> Change-Id: I653d61e32faaa11c39bb978bf90301513a0c35b8
> This change-id is just pure noise when you submit something upstream.
>
> Please add a proper change log on why the change below is
> necessary/helpful.
>
> Regards,
> Lucas
>
>> Signed-off-by: Chunming Zhou <David1.Zhou@amd.com>
>> ---
>>   drivers/gpu/drm/ttm/ttm_bo.c | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/gpu/drm/ttm/ttm_bo.c
>> b/drivers/gpu/drm/ttm/ttm_bo.c
>> index 745e996..0633b65 100644
>> --- a/drivers/gpu/drm/ttm/ttm_bo.c
>> +++ b/drivers/gpu/drm/ttm/ttm_bo.c
>> @@ -301,6 +301,7 @@ static int ttm_bo_handle_move_mem(struct
>> ttm_buffer_object *bo,
>>   	if (!(new_man->flags & TTM_MEMTYPE_FLAG_FIXED)) {
>>   		if (bo->ttm == NULL) {
>>   			bool zero = !(old_man->flags &
>> TTM_MEMTYPE_FLAG_FIXED);
>> +			zero = (mem->mem_type == TTM_PL_SYSTEM) ?
>> zero : false;
>>   			ret = ttm_bo_add_ttm(bo, zero);
>>   			if (ret)
>>   				goto out_err;

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2016-01-06  6:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-05  3:55 [PATCH 2/4] drm/ttm: zero allocation only for CPU domain david1.zhou
2016-01-05 14:32 ` Lucas Stach
2016-01-06  6:44   ` zhoucm1

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.