blob: e350e54a4249d8fbb99f14c2f11dabbb26cfe913 (
plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
// IBM_PROLOG_BEGIN_TAG
// This is an automatically generated prolog.
//
// $Source: src/kernel/futexmgr.C $
//
// IBM CONFIDENTIAL
//
// COPYRIGHT International Business Machines Corp. 2011
//
// p1
//
// Object Code Only (OCO) source materials
// Licensed Internal Code Source Materials
// IBM HostBoot Licensed Internal Code
//
// The source code for this program is not published or other-
// wise divested of its trade secrets, irrespective of what has
// been deposited with the U.S. Copyright Office.
//
// Origin: 30
//
// IBM_PROLOG_END
/**
* @file futexmgr.C
* @brief Definition for kernel side futex management
*/
#include <assert.h>
#include <errno.h>
#include <kernel/task.H>
#include <kernel/cpumgr.H>
#include <kernel/scheduler.H>
#include <kernel/futexmgr.H>
#include <util/singleton.H>
//-----------------------------------------------------------------------------
uint64_t FutexManager::wait(task_t* i_task, uint64_t * i_addr, uint64_t i_val)
{
return Singleton<FutexManager>::instance()._wait(i_task, i_addr, i_val);
}
//-----------------------------------------------------------------------------
uint64_t FutexManager::wake(uint64_t * i_addr, uint64_t i_count)
{
return Singleton<FutexManager>::instance()._wake(i_addr, i_count);
}
//-----------------------------------------------------------------------------
uint64_t FutexManager::_wait(task_t* i_task, uint64_t * i_addr, uint64_t i_val)
{
uint64_t rc = 0;
iv_lock.lock();
if(unlikely(*i_addr != i_val))
{
// some other thread has modified the futex
// bail-out retry required.
iv_lock.unlock();
rc = EWOULDBLOCK;
}
else
{
_FutexWait_t * waiter = new _FutexWait_t();
waiter->key = i_addr;
waiter->task = i_task;
// Now add the futex/task it to the wait queue
iv_list.insert(waiter);
iv_lock.unlock();
CpuManager::getCurrentCPU()->scheduler->setNextRunnable();
}
return rc;
}
//-----------------------------------------------------------------------------
uint64_t FutexManager::_wake(uint64_t * i_addr, uint64_t i_count)
{
uint64_t started = 0;
// Remove task(s) from futex queue
// Put it/them on the run queue
iv_lock.lock();
while(started < i_count)
{
_FutexWait_t * waiter = iv_list.find(i_addr);
if(waiter == NULL)
{
break;
}
task_t * wait_task = waiter->task;
iv_list.erase(waiter);
// This means we had a waiter in the queue, but that waiter had
// a Null task assigned to it. This should NEVER happen
kassert(wait_task != NULL);
wait_task->cpu->scheduler->addTask(wait_task);
++started;
}
iv_lock.unlock();
return started;
}
|