Skip to content
Permalink
Browse files Browse the repository at this point in the history
drm/ttm: fix start page for huge page check in ttm_put_pages()
The first page entry is always the same with itself.

Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Reviewed-by: Junwei Zhang <Jerry.Zhang@amd.com>
Reviewed-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
ChristianKoenigAMD authored and alexdeucher committed Apr 11, 2019
1 parent a66477b commit ac1e516
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/ttm/ttm_page_alloc.c
Expand Up @@ -732,7 +732,7 @@ static void ttm_put_pages(struct page **pages, unsigned npages, int flags,
#ifdef CONFIG_TRANSPARENT_HUGEPAGE
if (!(flags & TTM_PAGE_FLAG_DMA32) &&
(npages - i) >= HPAGE_PMD_NR) {
for (j = 0; j < HPAGE_PMD_NR; ++j)
for (j = 1; j < HPAGE_PMD_NR; ++j)
if (p++ != pages[i + j])
break;

Expand Down Expand Up @@ -767,7 +767,7 @@ static void ttm_put_pages(struct page **pages, unsigned npages, int flags,
if (!p)
break;

for (j = 0; j < HPAGE_PMD_NR; ++j)
for (j = 1; j < HPAGE_PMD_NR; ++j)
if (p++ != pages[i + j])
break;

Expand Down

0 comments on commit ac1e516

Please sign in to comment.