Displaying 2 results from an estimated 2 matches for "child_list".
2014 Sep 26
0
[RFC PATCH 1/7] android: Support creating sync fence from drm fences
...;
+ seq_printf(s, "%d %s %s", obj->context, obj->name,
+ obj->ops->driver_name);
if (obj->ops->timeline_value_str) {
char value[64];
@@ -136,7 +137,7 @@ static void sync_print_obj(struct seq_file *s, struct sync_timeline *obj)
list_for_each(pos, &obj->child_list_head) {
struct sync_pt *pt =
container_of(pos, struct sync_pt, child_list);
- sync_print_pt(s, pt, false);
+ sync_print_pt(s, &pt->base, false);
}
spin_unlock_irqrestore(&obj->child_list_lock, flags);
}
@@ -151,11 +152,7 @@ static void sync_print_fence(struct seq_file *s...
2014 Sep 26
14
[RFC] Explicit synchronization for Nouveau
Hi guys,
I'd like to start a new thread about explicit fence synchronization. This time
with a Nouveau twist. :-)
First, let me define what I understand by implicit/explicit sync:
Implicit synchronization
* Fences are attached to buffers
* Kernel manages fences automatically based on buffer read/write access
Explicit synchronization
* Fences are passed around independently
* Kernel takes