aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/ttm
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2011-02-22 23:24:01 -0500
committerDave Airlie <airlied@redhat.com>2011-02-22 23:24:01 -0500
commita2c06ee2fe5b48a71e697bae00c6e7195fc016b6 (patch)
treeff1761280d173d8adc0a7e0339dc68fd44146c08 /drivers/gpu/drm/ttm
parent63871f89d158e3f3e469dde00dd15763d474cb3c (diff)
Revert "ttm: Include the 'struct dev' when using the DMA API."
This reverts commit 5a893fc28f0393adb7c885a871b8c59e623fd528. This causes a use after free in the ttm free alloc pages path, when it tries to get the be after the be has been destroyed. Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/ttm')
-rw-r--r--drivers/gpu/drm/ttm/ttm_page_alloc.c11
-rw-r--r--drivers/gpu/drm/ttm/ttm_tt.c4
2 files changed, 7 insertions, 8 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
index 35849dbf3ab5..737a2a2e46a5 100644
--- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
+++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
@@ -664,7 +664,7 @@ out:
664 */ 664 */
665int ttm_get_pages(struct list_head *pages, int flags, 665int ttm_get_pages(struct list_head *pages, int flags,
666 enum ttm_caching_state cstate, unsigned count, 666 enum ttm_caching_state cstate, unsigned count,
667 dma_addr_t *dma_address, struct device *dev) 667 dma_addr_t *dma_address)
668{ 668{
669 struct ttm_page_pool *pool = ttm_get_pool(flags, cstate); 669 struct ttm_page_pool *pool = ttm_get_pool(flags, cstate);
670 struct page *p = NULL; 670 struct page *p = NULL;
@@ -685,7 +685,7 @@ int ttm_get_pages(struct list_head *pages, int flags,
685 for (r = 0; r < count; ++r) { 685 for (r = 0; r < count; ++r) {
686 if ((flags & TTM_PAGE_FLAG_DMA32) && dma_address) { 686 if ((flags & TTM_PAGE_FLAG_DMA32) && dma_address) {
687 void *addr; 687 void *addr;
688 addr = dma_alloc_coherent(dev, PAGE_SIZE, 688 addr = dma_alloc_coherent(NULL, PAGE_SIZE,
689 &dma_address[r], 689 &dma_address[r],
690 gfp_flags); 690 gfp_flags);
691 if (addr == NULL) 691 if (addr == NULL)
@@ -730,7 +730,7 @@ int ttm_get_pages(struct list_head *pages, int flags,
730 printk(KERN_ERR TTM_PFX 730 printk(KERN_ERR TTM_PFX
731 "Failed to allocate extra pages " 731 "Failed to allocate extra pages "
732 "for large request."); 732 "for large request.");
733 ttm_put_pages(pages, 0, flags, cstate, NULL, NULL); 733 ttm_put_pages(pages, 0, flags, cstate, NULL);
734 return r; 734 return r;
735 } 735 }
736 } 736 }
@@ -741,8 +741,7 @@ int ttm_get_pages(struct list_head *pages, int flags,
741 741
742/* Put all pages in pages list to correct pool to wait for reuse */ 742/* Put all pages in pages list to correct pool to wait for reuse */
743void ttm_put_pages(struct list_head *pages, unsigned page_count, int flags, 743void ttm_put_pages(struct list_head *pages, unsigned page_count, int flags,
744 enum ttm_caching_state cstate, dma_addr_t *dma_address, 744 enum ttm_caching_state cstate, dma_addr_t *dma_address)
745 struct device *dev)
746{ 745{
747 unsigned long irq_flags; 746 unsigned long irq_flags;
748 struct ttm_page_pool *pool = ttm_get_pool(flags, cstate); 747 struct ttm_page_pool *pool = ttm_get_pool(flags, cstate);
@@ -758,7 +757,7 @@ void ttm_put_pages(struct list_head *pages, unsigned page_count, int flags,
758 void *addr = page_address(p); 757 void *addr = page_address(p);
759 WARN_ON(!addr || !dma_address[r]); 758 WARN_ON(!addr || !dma_address[r]);
760 if (addr) 759 if (addr)
761 dma_free_coherent(dev, PAGE_SIZE, 760 dma_free_coherent(NULL, PAGE_SIZE,
762 addr, 761 addr,
763 dma_address[r]); 762 dma_address[r]);
764 dma_address[r] = 0; 763 dma_address[r] = 0;
diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
index 0f8fc9ff0c53..86d5b1745a45 100644
--- a/drivers/gpu/drm/ttm/ttm_tt.c
+++ b/drivers/gpu/drm/ttm/ttm_tt.c
@@ -110,7 +110,7 @@ static struct page *__ttm_tt_get_page(struct ttm_tt *ttm, int index)
110 INIT_LIST_HEAD(&h); 110 INIT_LIST_HEAD(&h);
111 111
112 ret = ttm_get_pages(&h, ttm->page_flags, ttm->caching_state, 1, 112 ret = ttm_get_pages(&h, ttm->page_flags, ttm->caching_state, 1,
113 &ttm->dma_address[index], ttm->be->bdev->dev); 113 &ttm->dma_address[index]);
114 114
115 if (ret != 0) 115 if (ret != 0)
116 return NULL; 116 return NULL;
@@ -304,7 +304,7 @@ static void ttm_tt_free_alloced_pages(struct ttm_tt *ttm)
304 } 304 }
305 } 305 }
306 ttm_put_pages(&h, count, ttm->page_flags, ttm->caching_state, 306 ttm_put_pages(&h, count, ttm->page_flags, ttm->caching_state,
307 ttm->dma_address, ttm->be->bdev->dev); 307 ttm->dma_address);
308 ttm->state = tt_unpopulated; 308 ttm->state = tt_unpopulated;
309 ttm->first_himem_page = ttm->num_pages; 309 ttm->first_himem_page = ttm->num_pages;
310 ttm->last_lomem_page = -1; 310 ttm->last_lomem_page = -1;