search for: agp_heap

Displaying 1 result from an estimated 1 matches for "agp_heap".

Did you mean: add_heap
2008 Mar 09
0
[PATCH 4/4] nouveau: clean up nouveau_mem_alloc function
...file_priv); +} + +static struct mem_block * +nouveau_mem_alloc_agp(struct drm_device *dev, uint64_t size, int alignment, + int flags, struct drm_file *file_priv) +{ + struct drm_nouveau_private *dev_priv = dev->dev_private; + + return __nouveau_mem_alloc(dev, NOUVEAU_MEM_AGP, dev_priv->agp_heap, + size, alignment, flags, file_priv); +} + +static struct mem_block * +nouveau_mem_alloc_fb(struct drm_device *dev, uint64_t size, int alignment, + int flags, struct drm_file *file_priv) +{ + struct drm_nouveau_private *dev_priv = dev->dev_private; + struct mem_block *block; + + if...