diff options
author | Eric Anholt <eric@anholt.net> | 2008-05-15 09:37:49 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2008-05-15 11:59:58 -0700 |
commit | 3ab152da66f6c7bcc68a13efcf4a62800354f13b (patch) | |
tree | 75ae69821f5e543af65e950dce309407851506d1 /shared-core/i915_dma.c | |
parent | aafafe507ba6d073bad25b74c808b73c428db67f (diff) |
[gem] Rename the GTT LRU lists to active (executing) and inactive (idle).
Diffstat (limited to 'shared-core/i915_dma.c')
-rw-r--r-- | shared-core/i915_dma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-core/i915_dma.c b/shared-core/i915_dma.c index cf2dfeb6..0e832057 100644 --- a/shared-core/i915_dma.c +++ b/shared-core/i915_dma.c @@ -1051,8 +1051,8 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags) ret = drm_addmap(dev, base, size, _DRM_REGISTERS, _DRM_KERNEL | _DRM_DRIVER, &dev_priv->mmio_map); - INIT_LIST_HEAD(&dev_priv->mm.gtt_lru); - INIT_LIST_HEAD(&dev_priv->mm.execution_list); + INIT_LIST_HEAD(&dev_priv->mm.active_list); + INIT_LIST_HEAD(&dev_priv->mm.inactive_list); #ifdef __linux__ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25) |