aboutsummaryrefslogtreecommitdiff
path: root/linux-core/drm_bo.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2007-08-02 13:51:55 -0700
committerEric Anholt <eric@anholt.net>2007-08-02 13:51:55 -0700
commitcf4f1a85af69c2c2e5ba9c822d30863f16ce6821 (patch)
treed1bf97f66eb3dd1ad3af4a8c0e77d1ea98989735 /linux-core/drm_bo.c
parent3c8ebd94e48589711f44d23e85d713a1ed980f37 (diff)
Add a couple of doxygen comments from reading the code.
Diffstat (limited to 'linux-core/drm_bo.c')
-rw-r--r--linux-core/drm_bo.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/linux-core/drm_bo.c b/linux-core/drm_bo.c
index a2356c8a..4ce5f480 100644
--- a/linux-core/drm_bo.c
+++ b/linux-core/drm_bo.c
@@ -705,6 +705,10 @@ static int drm_bo_evict(struct drm_buffer_object * bo, unsigned mem_type,
return ret;
}
+/**
+ * Repeatedly evict memory from the LRU for @mem_type until we create enough
+ * space, or we've evicted everything and there isn't enough space.
+ */
static int drm_bo_mem_force_space(struct drm_device * dev,
struct drm_bo_mem_reg * mem,
uint32_t mem_type, int no_wait)
@@ -791,6 +795,14 @@ static int drm_bo_mt_compatible(struct drm_mem_type_manager * man,
return 1;
}
+/**
+ * Creates space for memory region @mem according to its type.
+ *
+ * This function first searches for free space in compatible memory types in
+ * the priority order defined by the driver. If free space isn't found, then
+ * drm_bo_mem_force_space is attempted in priority order to evict and find
+ * space.
+ */
int drm_bo_mem_space(struct drm_buffer_object * bo,
struct drm_bo_mem_reg * mem, int no_wait)
{
@@ -2406,8 +2418,7 @@ int drm_bo_driver_init(struct drm_device * dev)
* Initialize the system memory buffer type.
* Other types need to be driver / IOCTL initialized.
*/
-
- ret = drm_bo_init_mm(dev, 0, 0, 0);
+ ret = drm_bo_init_mm(dev, DRM_BO_MEM_LOCAL, 0, 0);
if (ret)
goto out_unlock;