1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/*
*
* (C) COPYRIGHT 2011 ARM Limited. All rights reserved.
*
* This program is free software and is provided to you under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
*
* A copy of the licence is included with the program, and can also be obtained from Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include <osk/mali_osk.h>
#if MALI_LICENSE_IS_GPL == 0
/* Wrapper function to allow flushing in Non-GPL driver */
void oskp_work_func_wrapper( struct work_struct *work )
{
osk_workq_work *osk_work = CONTAINER_OF( work, osk_workq_work, os_work );
osk_workq *parent_wq;
u32 val;
unsigned long flags;
parent_wq = osk_work->parent_wq;
osk_work->actual_fn( osk_work );
/* work and osk_work could disappear from this point on */
/* parent_wq of course shouldn't disappear *yet*, because it must itself flush this function before term */
spin_lock_irqsave( &parent_wq->active_items_lock, flags );
val = --(parent_wq->nr_active_items);
/* The operations above and below must form an atomic operation themselves,
* hence the lock. See osk_workq_flush() for why */
if ( val == 0 )
{
wake_up( &parent_wq->waitq_zero_active_items );
}
spin_unlock_irqrestore( &parent_wq->active_items_lock, flags );
/* parent_wq may've now disappeared */
}
#endif /* MALI_LICENSE_IS_GPL == 0 */
|