aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drm_mm.h
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2010-07-02 10:02:14 -0400
committerDave Airlie <airlied@redhat.com>2010-07-06 22:27:53 -0400
commitd1024ce91ff4c2c4ccbf692d204c71cbf215157a (patch)
tree70bef4a1ad212c81020d2deadeb5aaca02df4aa1 /include/drm/drm_mm.h
parentca31efa89ae16c66966b8d5a5df3ae5cbffa61de (diff)
drm: sane naming for drm_mm.c
Yeah, I've kinda noticed that fl_entry is the free stack. Still give it (and the memory node list ml_entry) decent names. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Acked-by: Thomas Hellstrom <thellstrom@vmwgfx.com> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm/drm_mm.h')
-rw-r--r--include/drm/drm_mm.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/include/drm/drm_mm.h b/include/drm/drm_mm.h
index da94071b1703..e8740cc185cf 100644
--- a/include/drm/drm_mm.h
+++ b/include/drm/drm_mm.h
@@ -42,8 +42,8 @@
42#endif 42#endif
43 43
44struct drm_mm_node { 44struct drm_mm_node {
45 struct list_head fl_entry; 45 struct list_head free_stack;
46 struct list_head ml_entry; 46 struct list_head node_list;
47 int free; 47 int free;
48 unsigned long start; 48 unsigned long start;
49 unsigned long size; 49 unsigned long size;
@@ -51,8 +51,11 @@ struct drm_mm_node {
51}; 51};
52 52
53struct drm_mm { 53struct drm_mm {
54 struct list_head fl_entry; 54 /* List of free memory blocks, most recently freed ordered. */
55 struct list_head ml_entry; 55 struct list_head free_stack;
56 /* List of all memory nodes, ordered according to the (increasing) start
57 * address of the memory node. */
58 struct list_head node_list;
56 struct list_head unused_nodes; 59 struct list_head unused_nodes;
57 int num_unused; 60 int num_unused;
58 spinlock_t unused_lock; 61 spinlock_t unused_lock;