dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] drm/ttm: swap consecutive allocated cached pages
@ 2017-12-04 11:42 Christian König
       [not found] ` <20171204114224.27712-1-christian.koenig-5C7GfCeVMHo@public.gmane.org>
  2017-12-04 11:51 ` [PATCH 1/2] drm/ttm: swap consecutive allocated cached pages Michel Dänzer
  0 siblings, 2 replies; 4+ messages in thread
From: Christian König @ 2017-12-04 11:42 UTC (permalink / raw)
  To: dri-devel, amd-gfx, Hongbo.He

When we detect consecutive allocation of pages swap them to avoid
accidentally freeing them as huge page.

Signed-off-by: Christian König <christian.koenig@amd.com>
---
 drivers/gpu/drm/ttm/ttm_page_alloc.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
index c82d94cbbabc..60401350a01a 100644
--- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
+++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
@@ -921,6 +921,14 @@ static int ttm_get_pages(struct page **pages, unsigned npages, int flags,
 				return -ENOMEM;
 			}
 
+			/* Swap the pages if we detect consecutive order */
+			if (i && pages[i - 1] == p - 1) {
+				struct page *tmp = p;
+
+				p = pages[i - 1];
+				pages[i - 1] = tmp;
+			}
+
 			pages[i++] = p;
 			--npages;
 		}
-- 
2.11.0

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

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

* [PATCH 2/2] drm/ttm: swap consecutive allocated pooled pages
       [not found] ` <20171204114224.27712-1-christian.koenig-5C7GfCeVMHo@public.gmane.org>
@ 2017-12-04 11:42   ` Christian König
  0 siblings, 0 replies; 4+ messages in thread
From: Christian König @ 2017-12-04 11:42 UTC (permalink / raw)
  To: dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, Hongbo.He-5C7GfCeVMHo

When we detect consecutive allocation of pages swap them to avoid
accidentally freeing them as huge page.

Signed-off-by: Christian König <christian.koenig@amd.com>
---
 drivers/gpu/drm/ttm/ttm_page_alloc.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
index 60401350a01a..909028fd663d 100644
--- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
+++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
@@ -957,8 +957,16 @@ static int ttm_get_pages(struct page **pages, unsigned npages, int flags,
 	r = ttm_page_pool_get_pages(pool, &plist, flags, cstate,
 				    npages - count, 0);
 
-	list_for_each_entry(p, &plist, lru)
+	list_for_each_entry(p, &plist, lru) {
+		/* Swap the pages if we detect consecutive order */
+		if (count && pages[count - 1] == p - 1) {
+			struct page *tmp = p;
+
+			p = pages[count - 1];
+			pages[count - 1] = tmp;
+		}
 		pages[count++] = p;
+	}
 
 	if (r) {
 		/* If there is any pages in the list put them back to
-- 
2.11.0

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* Re: [PATCH 1/2] drm/ttm: swap consecutive allocated cached pages
  2017-12-04 11:42 [PATCH 1/2] drm/ttm: swap consecutive allocated cached pages Christian König
       [not found] ` <20171204114224.27712-1-christian.koenig-5C7GfCeVMHo@public.gmane.org>
@ 2017-12-04 11:51 ` Michel Dänzer
  2017-12-04 12:13   ` Christian König
  1 sibling, 1 reply; 4+ messages in thread
From: Michel Dänzer @ 2017-12-04 11:51 UTC (permalink / raw)
  To: Christian König, Hongbo.He; +Cc: amd-gfx, dri-devel

On 2017-12-04 12:42 PM, Christian König wrote:
> When we detect consecutive allocation of pages swap them to avoid
> accidentally freeing them as huge page.
> 
> Signed-off-by: Christian König <christian.koenig@amd.com>
> ---
>  drivers/gpu/drm/ttm/ttm_page_alloc.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
> index c82d94cbbabc..60401350a01a 100644
> --- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
> +++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
> @@ -921,6 +921,14 @@ static int ttm_get_pages(struct page **pages, unsigned npages, int flags,
>  				return -ENOMEM;
>  			}
>  
> +			/* Swap the pages if we detect consecutive order */
> +			if (i && pages[i - 1] == p - 1) {
> +				struct page *tmp = p;
> +
> +				p = pages[i - 1];
> +				pages[i - 1] = tmp;
> +			}
> +

Should be (something like):

		if (i && pages[i - 1] == p - 1)
			swap(pages[i - 1], p);


-- 
Earthling Michel Dänzer               |               http://www.amd.com
Libre software enthusiast             |             Mesa and X developer
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH 1/2] drm/ttm: swap consecutive allocated cached pages
  2017-12-04 11:51 ` [PATCH 1/2] drm/ttm: swap consecutive allocated cached pages Michel Dänzer
@ 2017-12-04 12:13   ` Christian König
  0 siblings, 0 replies; 4+ messages in thread
From: Christian König @ 2017-12-04 12:13 UTC (permalink / raw)
  To: Michel Dänzer, Hongbo.He; +Cc: amd-gfx, dri-devel

Am 04.12.2017 um 12:51 schrieb Michel Dänzer:
> On 2017-12-04 12:42 PM, Christian König wrote:
>> When we detect consecutive allocation of pages swap them to avoid
>> accidentally freeing them as huge page.
>>
>> Signed-off-by: Christian König <christian.koenig@amd.com>
>> ---
>>   drivers/gpu/drm/ttm/ttm_page_alloc.c | 8 ++++++++
>>   1 file changed, 8 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
>> index c82d94cbbabc..60401350a01a 100644
>> --- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
>> +++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
>> @@ -921,6 +921,14 @@ static int ttm_get_pages(struct page **pages, unsigned npages, int flags,
>>   				return -ENOMEM;
>>   			}
>>   
>> +			/* Swap the pages if we detect consecutive order */
>> +			if (i && pages[i - 1] == p - 1) {
>> +				struct page *tmp = p;
>> +
>> +				p = pages[i - 1];
>> +				pages[i - 1] = tmp;
>> +			}
>> +
> Should be (something like):
>
> 		if (i && pages[i - 1] == p - 1)
> 			swap(pages[i - 1], p);

Good point, updates patches send out a few seconds ago.

Please review,
Christian.
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2017-12-04 12:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-04 11:42 [PATCH 1/2] drm/ttm: swap consecutive allocated cached pages Christian König
     [not found] ` <20171204114224.27712-1-christian.koenig-5C7GfCeVMHo@public.gmane.org>
2017-12-04 11:42   ` [PATCH 2/2] drm/ttm: swap consecutive allocated pooled pages Christian König
2017-12-04 11:51 ` [PATCH 1/2] drm/ttm: swap consecutive allocated cached pages Michel Dänzer
2017-12-04 12:13   ` 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