[PATCH 2/2] drm/ttm: swap consecutive allocated pooled pages v2
Christian König
ckoenig.leichtzumerken at gmail.com
Mon Dec 4 12:12:33 UTC 2017
When we detect consecutive allocation of pages swap them to avoid
accidentally freeing them as huge page.
v2: use swap
Signed-off-by: Christian König <christian.koenig at amd.com>
---
drivers/gpu/drm/ttm/ttm_page_alloc.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
index b6c5148607e9..29652b2615a8 100644
--- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
+++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
@@ -953,8 +953,12 @@ 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)
+ swap(p, pages[count - 1]);
pages[count++] = p;
+ }
if (r) {
/* If there is any pages in the list put them back to
--
2.11.0
More information about the amd-gfx
mailing list