Subversion Repositories HelenOS

Rev

Rev 2071 | Rev 2745 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2071 Rev 2087
1
/*
1
/*
2
 * Copyright (c) 2006 Jakub Jermar
2
 * Copyright (c) 2006 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup sync
29
/** @addtogroup sync
30
 * @{
30
 * @{
31
 */
31
 */
32
 
32
 
33
/**
33
/**
34
 * @file
34
 * @file
35
 * @brief   Kernel backend for futexes.
35
 * @brief   Kernel backend for futexes.
36
 */
36
 */
37
 
37
 
38
#include <synch/futex.h>
38
#include <synch/futex.h>
39
#include <synch/rwlock.h>
39
#include <synch/rwlock.h>
40
#include <synch/spinlock.h>
40
#include <synch/spinlock.h>
41
#include <synch/synch.h>
41
#include <synch/synch.h>
42
#include <mm/frame.h>
42
#include <mm/frame.h>
43
#include <mm/page.h>
43
#include <mm/page.h>
44
#include <mm/slab.h>
44
#include <mm/slab.h>
45
#include <proc/thread.h>
45
#include <proc/thread.h>
46
#include <proc/task.h>
46
#include <proc/task.h>
47
#include <genarch/mm/page_pt.h>
47
#include <genarch/mm/page_pt.h>
48
#include <genarch/mm/page_ht.h>
48
#include <genarch/mm/page_ht.h>
49
#include <adt/hash_table.h>
49
#include <adt/hash_table.h>
50
#include <adt/list.h>
50
#include <adt/list.h>
51
#include <arch.h>
51
#include <arch.h>
52
#include <align.h>
52
#include <align.h>
53
#include <panic.h>
53
#include <panic.h>
54
#include <errno.h>
54
#include <errno.h>
55
#include <print.h>
55
#include <print.h>
56
 
56
 
57
#define FUTEX_HT_SIZE   1024    /* keep it a power of 2 */
57
#define FUTEX_HT_SIZE   1024    /* keep it a power of 2 */
58
 
58
 
59
static void futex_initialize(futex_t *futex);
59
static void futex_initialize(futex_t *futex);
60
 
60
 
61
static futex_t *futex_find(uintptr_t paddr);
61
static futex_t *futex_find(uintptr_t paddr);
62
static index_t futex_ht_hash(unative_t *key);
62
static index_t futex_ht_hash(unative_t *key);
63
static bool futex_ht_compare(unative_t *key, count_t keys, link_t *item);
63
static bool futex_ht_compare(unative_t *key, count_t keys, link_t *item);
64
static void futex_ht_remove_callback(link_t *item);
64
static void futex_ht_remove_callback(link_t *item);
65
 
65
 
66
/**
66
/**
67
 * Read-write lock protecting global futex hash table.
67
 * Read-write lock protecting global futex hash table.
68
 * It is also used to serialize access to all futex_t structures.
68
 * It is also used to serialize access to all futex_t structures.
69
 * Must be acquired before the task futex B+tree lock.
69
 * Must be acquired before the task futex B+tree lock.
70
 */
70
 */
71
static rwlock_t futex_ht_lock;
71
static rwlock_t futex_ht_lock;
72
 
72
 
73
/** Futex hash table. */
73
/** Futex hash table. */
74
static hash_table_t futex_ht;
74
static hash_table_t futex_ht;
75
 
75
 
76
/** Futex hash table operations. */
76
/** Futex hash table operations. */
77
static hash_table_operations_t futex_ht_ops = {
77
static hash_table_operations_t futex_ht_ops = {
78
    .hash = futex_ht_hash,
78
    .hash = futex_ht_hash,
79
    .compare = futex_ht_compare,
79
    .compare = futex_ht_compare,
80
    .remove_callback = futex_ht_remove_callback
80
    .remove_callback = futex_ht_remove_callback
81
};
81
};
82
 
82
 
83
/** Initialize futex subsystem. */
83
/** Initialize futex subsystem. */
84
void futex_init(void)
84
void futex_init(void)
85
{
85
{
86
    rwlock_initialize(&futex_ht_lock);
86
    rwlock_initialize(&futex_ht_lock);
87
    hash_table_create(&futex_ht, FUTEX_HT_SIZE, 1, &futex_ht_ops);
87
    hash_table_create(&futex_ht, FUTEX_HT_SIZE, 1, &futex_ht_ops);
88
}
88
}
89
 
89
 
90
/** Initialize kernel futex structure.
90
/** Initialize kernel futex structure.
91
 *
91
 *
92
 * @param futex Kernel futex structure.
92
 * @param futex Kernel futex structure.
93
 */
93
 */
94
void futex_initialize(futex_t *futex)
94
void futex_initialize(futex_t *futex)
95
{
95
{
96
    waitq_initialize(&futex->wq);
96
    waitq_initialize(&futex->wq);
97
    link_initialize(&futex->ht_link);
97
    link_initialize(&futex->ht_link);
98
    futex->paddr = 0;
98
    futex->paddr = 0;
99
    futex->refcount = 1;
99
    futex->refcount = 1;
100
}
100
}
101
 
101
 
102
/** Sleep in futex wait queue.
102
/** Sleep in futex wait queue.
103
 *
103
 *
104
 * @param uaddr Userspace address of the futex counter.
104
 * @param uaddr Userspace address of the futex counter.
105
 * @param usec If non-zero, number of microseconds this thread is willing to sleep.
105
 * @param usec If non-zero, number of microseconds this thread is willing to
-
 
106
 *     sleep.
106
 * @param flags Select mode of operation.
107
 * @param flags Select mode of operation.
107
 *
108
 *
108
 * @return One of ESYNCH_TIMEOUT, ESYNCH_OK_ATOMIC and ESYNCH_OK_BLOCKED. See synch.h.
109
 * @return One of ESYNCH_TIMEOUT, ESYNCH_OK_ATOMIC and ESYNCH_OK_BLOCKED. See
109
 *     If there is no physical mapping for uaddr ENOENT is returned.
110
 *     synch.h. If there is no physical mapping for uaddr ENOENT is returned.
110
 */
111
 */
111
unative_t sys_futex_sleep_timeout(uintptr_t uaddr, uint32_t usec, int flags)
112
unative_t sys_futex_sleep_timeout(uintptr_t uaddr, uint32_t usec, int flags)
112
{
113
{
113
    futex_t *futex;
114
    futex_t *futex;
114
    uintptr_t paddr;
115
    uintptr_t paddr;
115
    pte_t *t;
116
    pte_t *t;
116
    ipl_t ipl;
117
    ipl_t ipl;
117
   
118
   
118
    ipl = interrupts_disable();
119
    ipl = interrupts_disable();
119
 
120
 
120
    /*
121
    /*
121
     * Find physical address of futex counter.
122
     * Find physical address of futex counter.
122
     */
123
     */
123
    page_table_lock(AS, true);
124
    page_table_lock(AS, true);
124
    t = page_mapping_find(AS, ALIGN_DOWN(uaddr, PAGE_SIZE));
125
    t = page_mapping_find(AS, ALIGN_DOWN(uaddr, PAGE_SIZE));
125
    if (!t || !PTE_VALID(t) || !PTE_PRESENT(t)) {
126
    if (!t || !PTE_VALID(t) || !PTE_PRESENT(t)) {
126
        page_table_unlock(AS, true);
127
        page_table_unlock(AS, true);
127
        interrupts_restore(ipl);
128
        interrupts_restore(ipl);
128
        return (unative_t) ENOENT;
129
        return (unative_t) ENOENT;
129
    }
130
    }
130
    paddr = PTE_GET_FRAME(t) + (uaddr - ALIGN_DOWN(uaddr, PAGE_SIZE));
131
    paddr = PTE_GET_FRAME(t) + (uaddr - ALIGN_DOWN(uaddr, PAGE_SIZE));
131
    page_table_unlock(AS, true);
132
    page_table_unlock(AS, true);
132
   
133
   
133
    interrupts_restore(ipl);   
134
    interrupts_restore(ipl);   
134
 
135
 
135
    futex = futex_find(paddr);
136
    futex = futex_find(paddr);
136
   
137
   
137
    return (unative_t) waitq_sleep_timeout(&futex->wq, usec, flags | SYNCH_FLAGS_INTERRUPTIBLE);
138
    return (unative_t) waitq_sleep_timeout(&futex->wq, usec, flags |
-
 
139
        SYNCH_FLAGS_INTERRUPTIBLE);
138
}
140
}
139
 
141
 
140
/** Wakeup one thread waiting in futex wait queue.
142
/** Wakeup one thread waiting in futex wait queue.
141
 *
143
 *
142
 * @param uaddr Userspace address of the futex counter.
144
 * @param uaddr Userspace address of the futex counter.
143
 *
145
 *
144
 * @return ENOENT if there is no physical mapping for uaddr.
146
 * @return ENOENT if there is no physical mapping for uaddr.
145
 */
147
 */
146
unative_t sys_futex_wakeup(uintptr_t uaddr)
148
unative_t sys_futex_wakeup(uintptr_t uaddr)
147
{
149
{
148
    futex_t *futex;
150
    futex_t *futex;
149
    uintptr_t paddr;
151
    uintptr_t paddr;
150
    pte_t *t;
152
    pte_t *t;
151
    ipl_t ipl;
153
    ipl_t ipl;
152
   
154
   
153
    ipl = interrupts_disable();
155
    ipl = interrupts_disable();
154
   
156
   
155
    /*
157
    /*
156
     * Find physical address of futex counter.
158
     * Find physical address of futex counter.
157
     */
159
     */
158
    page_table_lock(AS, true);
160
    page_table_lock(AS, true);
159
    t = page_mapping_find(AS, ALIGN_DOWN(uaddr, PAGE_SIZE));
161
    t = page_mapping_find(AS, ALIGN_DOWN(uaddr, PAGE_SIZE));
160
    if (!t || !PTE_VALID(t) || !PTE_PRESENT(t)) {
162
    if (!t || !PTE_VALID(t) || !PTE_PRESENT(t)) {
161
        page_table_unlock(AS, true);
163
        page_table_unlock(AS, true);
162
        interrupts_restore(ipl);
164
        interrupts_restore(ipl);
163
        return (unative_t) ENOENT;
165
        return (unative_t) ENOENT;
164
    }
166
    }
165
    paddr = PTE_GET_FRAME(t) + (uaddr - ALIGN_DOWN(uaddr, PAGE_SIZE));
167
    paddr = PTE_GET_FRAME(t) + (uaddr - ALIGN_DOWN(uaddr, PAGE_SIZE));
166
    page_table_unlock(AS, true);
168
    page_table_unlock(AS, true);
167
   
169
   
168
    interrupts_restore(ipl);
170
    interrupts_restore(ipl);
169
 
171
 
170
    futex = futex_find(paddr);
172
    futex = futex_find(paddr);
171
       
173
       
172
    waitq_wakeup(&futex->wq, WAKEUP_FIRST);
174
    waitq_wakeup(&futex->wq, WAKEUP_FIRST);
173
   
175
   
174
    return 0;
176
    return 0;
175
}
177
}
176
 
178
 
177
/** Find kernel address of the futex structure corresponding to paddr.
179
/** Find kernel address of the futex structure corresponding to paddr.
178
 *
180
 *
179
 * If the structure does not exist already, a new one is created.
181
 * If the structure does not exist already, a new one is created.
180
 *
182
 *
181
 * @param paddr Physical address of the userspace futex counter.
183
 * @param paddr Physical address of the userspace futex counter.
182
 *
184
 *
183
 * @return Address of the kernel futex structure.
185
 * @return Address of the kernel futex structure.
184
 */
186
 */
185
futex_t *futex_find(uintptr_t paddr)
187
futex_t *futex_find(uintptr_t paddr)
186
{
188
{
187
    link_t *item;
189
    link_t *item;
188
    futex_t *futex;
190
    futex_t *futex;
189
    btree_node_t *leaf;
191
    btree_node_t *leaf;
190
   
192
   
191
    /*
193
    /*
192
     * Find the respective futex structure
194
     * Find the respective futex structure
193
     * or allocate new one if it does not exist already.
195
     * or allocate new one if it does not exist already.
194
     */
196
     */
195
    rwlock_read_lock(&futex_ht_lock);
197
    rwlock_read_lock(&futex_ht_lock);
196
    item = hash_table_find(&futex_ht, &paddr);
198
    item = hash_table_find(&futex_ht, &paddr);
197
    if (item) {
199
    if (item) {
198
        futex = hash_table_get_instance(item, futex_t, ht_link);
200
        futex = hash_table_get_instance(item, futex_t, ht_link);
199
 
201
 
200
        /*
202
        /*
201
         * See if the current task knows this futex.
203
         * See if the current task knows this futex.
202
         */
204
         */
203
        mutex_lock(&TASK->futexes_lock);
205
        mutex_lock(&TASK->futexes_lock);
204
        if (!btree_search(&TASK->futexes, paddr, &leaf)) {
206
        if (!btree_search(&TASK->futexes, paddr, &leaf)) {
205
            /*
207
            /*
206
             * The futex is new to the current task.
208
             * The futex is new to the current task.
207
             * However, we only have read access.
209
             * However, we only have read access.
208
             * Gain write access and try again.
210
             * Gain write access and try again.
209
             */
211
             */
210
            mutex_unlock(&TASK->futexes_lock);
212
            mutex_unlock(&TASK->futexes_lock);
211
            goto gain_write_access;
213
            goto gain_write_access;
212
        }
214
        }
213
        mutex_unlock(&TASK->futexes_lock);
215
        mutex_unlock(&TASK->futexes_lock);
214
 
216
 
215
        rwlock_read_unlock(&futex_ht_lock);
217
        rwlock_read_unlock(&futex_ht_lock);
216
    } else {
218
    } else {
217
gain_write_access:
219
gain_write_access:
218
        /*
220
        /*
219
         * Upgrade to writer is not currently supported,
221
         * Upgrade to writer is not currently supported,
220
         * therefore, it is necessary to release the read lock
222
         * therefore, it is necessary to release the read lock
221
         * and reacquire it as a writer.
223
         * and reacquire it as a writer.
222
         */
224
         */
223
        rwlock_read_unlock(&futex_ht_lock);
225
        rwlock_read_unlock(&futex_ht_lock);
224
 
226
 
225
        rwlock_write_lock(&futex_ht_lock);
227
        rwlock_write_lock(&futex_ht_lock);
226
        /*
228
        /*
227
         * Avoid possible race condition by searching
229
         * Avoid possible race condition by searching
228
         * the hash table once again with write access.
230
         * the hash table once again with write access.
229
         */
231
         */
230
        item = hash_table_find(&futex_ht, &paddr);
232
        item = hash_table_find(&futex_ht, &paddr);
231
        if (item) {
233
        if (item) {
232
            futex = hash_table_get_instance(item, futex_t, ht_link);
234
            futex = hash_table_get_instance(item, futex_t, ht_link);
233
           
235
           
234
            /*
236
            /*
235
             * See if this futex is known to the current task.
237
             * See if this futex is known to the current task.
236
             */
238
             */
237
            mutex_lock(&TASK->futexes_lock);
239
            mutex_lock(&TASK->futexes_lock);
238
            if (!btree_search(&TASK->futexes, paddr, &leaf)) {
240
            if (!btree_search(&TASK->futexes, paddr, &leaf)) {
239
                /*
241
                /*
240
                 * The futex is new to the current task.
242
                 * The futex is new to the current task.
241
                 * Upgrade its reference count and put it to the
243
                 * Upgrade its reference count and put it to the
242
                 * current task's B+tree of known futexes.
244
                 * current task's B+tree of known futexes.
243
                 */
245
                 */
244
                futex->refcount++;
246
                futex->refcount++;
245
                btree_insert(&TASK->futexes, paddr, futex, leaf);
247
                btree_insert(&TASK->futexes, paddr, futex,
-
 
248
                    leaf);
246
            }
249
            }
247
            mutex_unlock(&TASK->futexes_lock);
250
            mutex_unlock(&TASK->futexes_lock);
248
   
251
   
249
            rwlock_write_unlock(&futex_ht_lock);
252
            rwlock_write_unlock(&futex_ht_lock);
250
        } else {
253
        } else {
251
            futex = (futex_t *) malloc(sizeof(futex_t), 0);
254
            futex = (futex_t *) malloc(sizeof(futex_t), 0);
252
            futex_initialize(futex);
255
            futex_initialize(futex);
253
            futex->paddr = paddr;
256
            futex->paddr = paddr;
254
            hash_table_insert(&futex_ht, &paddr, &futex->ht_link);
257
            hash_table_insert(&futex_ht, &paddr, &futex->ht_link);
255
           
258
           
256
            /*
259
            /*
257
             * This is the first task referencing the futex.
260
             * This is the first task referencing the futex.
258
             * It can be directly inserted into its
261
             * It can be directly inserted into its
259
             * B+tree of known futexes.
262
             * B+tree of known futexes.
260
             */
263
             */
261
            mutex_lock(&TASK->futexes_lock);
264
            mutex_lock(&TASK->futexes_lock);
262
            btree_insert(&TASK->futexes, paddr, futex, NULL);
265
            btree_insert(&TASK->futexes, paddr, futex, NULL);
263
            mutex_unlock(&TASK->futexes_lock);
266
            mutex_unlock(&TASK->futexes_lock);
264
           
267
           
265
            rwlock_write_unlock(&futex_ht_lock);
268
            rwlock_write_unlock(&futex_ht_lock);
266
        }
269
        }
267
    }
270
    }
268
   
271
   
269
    return futex;
272
    return futex;
270
}
273
}
271
 
274
 
272
/** Compute hash index into futex hash table.
275
/** Compute hash index into futex hash table.
273
 *
276
 *
274
 * @param key Address where the key (i.e. physical address of futex counter) is stored.
277
 * @param key Address where the key (i.e. physical address of futex counter) is
-
 
278
 *     stored.
275
 *
279
 *
276
 * @return Index into futex hash table.
280
 * @return Index into futex hash table.
277
 */
281
 */
278
index_t futex_ht_hash(unative_t *key)
282
index_t futex_ht_hash(unative_t *key)
279
{
283
{
280
    return *key & (FUTEX_HT_SIZE-1);
284
    return *key & (FUTEX_HT_SIZE-1);
281
}
285
}
282
 
286
 
283
/** Compare futex hash table item with a key.
287
/** Compare futex hash table item with a key.
284
 *
288
 *
285
 * @param key Address where the key (i.e. physical address of futex counter) is stored.
289
 * @param key Address where the key (i.e. physical address of futex counter) is
-
 
290
 *     stored.
286
 *
291
 *
287
 * @return True if the item matches the key. False otherwise.
292
 * @return True if the item matches the key. False otherwise.
288
 */
293
 */
289
bool futex_ht_compare(unative_t *key, count_t keys, link_t *item)
294
bool futex_ht_compare(unative_t *key, count_t keys, link_t *item)
290
{
295
{
291
    futex_t *futex;
296
    futex_t *futex;
292
 
297
 
293
    ASSERT(keys == 1);
298
    ASSERT(keys == 1);
294
 
299
 
295
    futex = hash_table_get_instance(item, futex_t, ht_link);
300
    futex = hash_table_get_instance(item, futex_t, ht_link);
296
    return *key == futex->paddr;
301
    return *key == futex->paddr;
297
}
302
}
298
 
303
 
299
/** Callback for removal items from futex hash table.
304
/** Callback for removal items from futex hash table.
300
 *
305
 *
301
 * @param item Item removed from the hash table.
306
 * @param item Item removed from the hash table.
302
 */
307
 */
303
void futex_ht_remove_callback(link_t *item)
308
void futex_ht_remove_callback(link_t *item)
304
{
309
{
305
    futex_t *futex;
310
    futex_t *futex;
306
 
311
 
307
    futex = hash_table_get_instance(item, futex_t, ht_link);
312
    futex = hash_table_get_instance(item, futex_t, ht_link);
308
    free(futex);
313
    free(futex);
309
}
314
}
310
 
315
 
311
/** Remove references from futexes known to the current task. */
316
/** Remove references from futexes known to the current task. */
312
void futex_cleanup(void)
317
void futex_cleanup(void)
313
{
318
{
314
    link_t *cur;
319
    link_t *cur;
315
   
320
   
316
    rwlock_write_lock(&futex_ht_lock);
321
    rwlock_write_lock(&futex_ht_lock);
317
    mutex_lock(&TASK->futexes_lock);
322
    mutex_lock(&TASK->futexes_lock);
318
 
323
 
-
 
324
    for (cur = TASK->futexes.leaf_head.next;
319
    for (cur = TASK->futexes.leaf_head.next; cur != &TASK->futexes.leaf_head; cur = cur->next) {
325
        cur != &TASK->futexes.leaf_head; cur = cur->next) {
320
        btree_node_t *node;
326
        btree_node_t *node;
321
        int i;
327
        int i;
322
       
328
       
323
        node = list_get_instance(cur, btree_node_t, leaf_link);
329
        node = list_get_instance(cur, btree_node_t, leaf_link);
324
        for (i = 0; i < node->keys; i++) {
330
        for (i = 0; i < node->keys; i++) {
325
            futex_t *ftx;
331
            futex_t *ftx;
326
            uintptr_t paddr = node->key[i];
332
            uintptr_t paddr = node->key[i];
327
           
333
           
328
            ftx = (futex_t *) node->value[i];
334
            ftx = (futex_t *) node->value[i];
329
            if (--ftx->refcount == 0)
335
            if (--ftx->refcount == 0)
330
                hash_table_remove(&futex_ht, &paddr, 1);
336
                hash_table_remove(&futex_ht, &paddr, 1);
331
        }
337
        }
332
    }
338
    }
333
   
339
   
334
    mutex_unlock(&TASK->futexes_lock);
340
    mutex_unlock(&TASK->futexes_lock);
335
    rwlock_write_unlock(&futex_ht_lock);
341
    rwlock_write_unlock(&futex_ht_lock);
336
}
342
}
337
 
343
 
338
/** @}
344
/** @}
339
 */
345
 */
340
 
346