Re: [Intel-gfx] [PATCH 01/13] staging/android/sync: Support sync points created from dma-fences

2015-12-17 Thread Jesse Barnes
spin_unlock_irqrestore(&obj->child_list_lock, flags); > } > @@ -153,11 +159,7 @@ static void sync_print_fence(struct seq_file *s, struct > sync_fence *fence) > sync_status_str(atomic_read(&fence->status))); > > for (i = 0; i < fence->num_fences; ++i) { > - struct sync_pt *pt = > - container_of(fence->cbs[i].sync_pt, > - struct sync_pt, base); > - > - sync_print_pt(s, pt, true); > + sync_print_pt(s, fence->cbs[i].sync_pt, true); > } > > spin_lock_irqsave(&fence->wq.lock, flags); > Reviewed-by: Jesse Barnes ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 02/13] staging/android/sync: add sync_fence_create_dma

2015-12-17 Thread Jesse Barnes
Maarten Lankhorst > Signed-off-by: Tvrtko Ursulin > Cc: Maarten Lankhorst > Cc: Daniel Vetter > Cc: Jesse Barnes > Cc: de...@driverdev.osuosl.org > Cc: Riley Andrews > Cc: Greg Kroah-Hartman > Cc: Arve Hjønnevåg > --- > drivers/staging/android/sync.c

Re: [PATCH 2/2] android: add sync_fence_create_dma

2014-08-15 Thread Jesse Barnes
add new api calls. I have some code that uses them, but I need a userspace user to push my stuff. :) I'm working on the latter bit too in Mesa, and we have demand from Android, so we should get some users shortly. -- Jesse Barnes, Intel Open S

Re: [PATCH 2/2] android: add sync_fence_create_dma

2014-08-14 Thread Jesse Barnes
On Thu, 14 Aug 2014 11:54:52 +0200 Maarten Lankhorst wrote: > This allows users of dma fences to create a android fence. > > Signed-off-by: Maarten Lankhorst > Cc: Daniel Vetter > Cc: Jesse Barnes > --- > drivers/staging/android/sync.c | 24 --