From: Maarten Lankhorst Date: Tue, 1 Jul 2014 10:57:37 +0000 (+0200) Subject: reservation: add support for fences to enable cross-device synchronisation X-Git-Tag: submit/tizen/20141121.110247~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cecb2c3999b03bde7efc958fa7174a9e9f56a2ad;p=platform%2Fkernel%2Flinux-3.10.git reservation: add support for fences to enable cross-device synchronisation Signed-off-by: Maarten Lankhorst Acked-by: Sumit Semwal Acked-by: Daniel Vetter Reviewed-by: Rob Clark Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/reservation.h b/include/linux/reservation.h index 813dae9..f3f5746 100644 --- a/include/linux/reservation.h +++ b/include/linux/reservation.h @@ -6,7 +6,7 @@ * Copyright (C) 2012 Texas Instruments * * Authors: - * Rob Clark + * Rob Clark * Maarten Lankhorst * Thomas Hellstrom * @@ -40,22 +40,40 @@ #define _LINUX_RESERVATION_H #include +#include +#include extern struct ww_class reservation_ww_class; struct reservation_object { struct ww_mutex lock; + + struct fence *fence_excl; + struct fence **fence_shared; + u32 fence_shared_count, fence_shared_max; }; static inline void reservation_object_init(struct reservation_object *obj) { ww_mutex_init(&obj->lock, &reservation_ww_class); + + obj->fence_shared_count = obj->fence_shared_max = 0; + obj->fence_shared = NULL; + obj->fence_excl = NULL; } static inline void reservation_object_fini(struct reservation_object *obj) { + int i; + + if (obj->fence_excl) + fence_put(obj->fence_excl); + for (i = 0; i < obj->fence_shared_count; ++i) + fence_put(obj->fence_shared[i]); + kfree(obj->fence_shared); + ww_mutex_destroy(&obj->lock); }