diff options
author | Christian König <christian.koenig@amd.com> | 2017-12-04 05:26:14 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-12-06 12:48:32 -0500 |
commit | ae937fe19636067ec5e20d7f1fa10c6cc6000b52 (patch) | |
tree | edb64fd14fe0345bf11dba7bbd39b06ce935a6ae /drivers/gpu | |
parent | d4b7648d6d1774f961f3f6a758d9b009f1f34f05 (diff) |
drm/ttm: swap consecutive allocated pooled pages v4
When we detect consecutive allocation of pages swap them to avoid
accidentally freeing them as huge page.
v2: use swap
v3: check if it's really the first allocated page
v4: don't touch the loop variable
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Roger He <Hongbo.He@amd.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Tested-by: Dieter Nützel <Dieter@nuetzel-hh.de>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_page_alloc.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c index b6f7ce286fb1..44343a2bf55c 100644 --- a/drivers/gpu/drm/ttm/ttm_page_alloc.c +++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c | |||
@@ -958,8 +958,15 @@ static int ttm_get_pages(struct page **pages, unsigned npages, int flags, | |||
958 | r = ttm_page_pool_get_pages(pool, &plist, flags, cstate, | 958 | r = ttm_page_pool_get_pages(pool, &plist, flags, cstate, |
959 | npages - count, 0); | 959 | npages - count, 0); |
960 | 960 | ||
961 | list_for_each_entry(p, &plist, lru) | 961 | first = count; |
962 | pages[count++] = p; | 962 | list_for_each_entry(p, &plist, lru) { |
963 | struct page *tmp = p; | ||
964 | |||
965 | /* Swap the pages if we detect consecutive order */ | ||
966 | if (count > first && pages[count - 1] == tmp - 1) | ||
967 | swap(tmp, pages[count - 1]); | ||
968 | pages[count++] = tmp; | ||
969 | } | ||
963 | 970 | ||
964 | if (r) { | 971 | if (r) { |
965 | /* If there is any pages in the list put them back to | 972 | /* If there is any pages in the list put them back to |