[PATCH 1/7] drm/ttm: add pool wc/uc page allocator V3

2010-04-01 Thread Pauli Nieminen
On AGP system we might allocate/free routinely uncached or wc memory, changing page from cached (wb) to uc or wc is very expensive and involves a lot of flushing. To improve performance this allocator use a pool of uc,wc pages. Pools are protected with spinlocks to allow multiple threads to

Re: [PATCH 1/7] drm/ttm: add pool wc/uc page allocator V3

2010-04-01 Thread Jerome Glisse
On Thu, Apr 01, 2010 at 03:44:57PM +0300, Pauli Nieminen wrote: On AGP system we might allocate/free routinely uncached or wc memory, changing page from cached (wb) to uc or wc is very expensive and involves a lot of flushing. To improve performance this allocator use a pool of uc,wc pages.