2 * Fast Userspace Mutexes (which I call "Futexes!").
3 * (C) Rusty Russell, IBM 2002
5 * Generalized futexes, futex requeueing, misc fixes by Ingo Molnar
6 * (C) Copyright 2003 Red Hat Inc, All Rights Reserved
8 * Removed page pinning, fix privately mapped COW pages and other cleanups
9 * (C) Copyright 2003, 2004 Jamie Lokier
11 * Robust futex support started by Ingo Molnar
12 * (C) Copyright 2006 Red Hat Inc, All Rights Reserved
13 * Thanks to Thomas Gleixner for suggestions, analysis and fixes.
15 * PI-futex support started by Ingo Molnar and Thomas Gleixner
16 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
17 * Copyright (C) 2006 Timesys Corp., Thomas Gleixner <tglx@timesys.com>
19 * Thanks to Ben LaHaise for yelling "hashed waitqueues" loudly
20 * enough at me, Linus for the original (flawed) idea, Matthew
21 * Kirkwood for proof-of-concept implementation.
23 * "The futexes are also cursed."
24 * "But they come in a choice of three flavours!"
26 * This program is free software; you can redistribute it and/or modify
27 * it under the terms of the GNU General Public License as published by
28 * the Free Software Foundation; either version 2 of the License, or
29 * (at your option) any later version.
31 * This program is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 * GNU General Public License for more details.
36 * You should have received a copy of the GNU General Public License
37 * along with this program; if not, write to the Free Software
38 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
40 #include <linux/slab.h>
41 #include <linux/poll.h>
43 #include <linux/file.h>
44 #include <linux/jhash.h>
45 #include <linux/init.h>
46 #include <linux/futex.h>
47 #include <linux/mount.h>
48 #include <linux/pagemap.h>
49 #include <linux/syscalls.h>
50 #include <linux/signal.h>
51 #include <asm/futex.h>
53 #include "rtmutex_common.h"
55 #define FUTEX_HASHBITS (CONFIG_BASE_SMALL ? 4 : 8)
58 * Futexes are matched on equal values of this key.
59 * The key type depends on whether it's a shared or private mapping.
60 * Don't rearrange members without looking at hash_futex().
62 * offset is aligned to a multiple of sizeof(u32) (== 4) by definition.
63 * We set bit 0 to indicate if it's an inode-based key.
72 unsigned long address
;
84 * Priority Inheritance state:
86 struct futex_pi_state
{
88 * list of 'owned' pi_state instances - these have to be
89 * cleaned up in do_exit() if the task exits prematurely:
91 struct list_head list
;
96 struct rt_mutex pi_mutex
;
98 struct task_struct
*owner
;
105 * We use this hashed waitqueue instead of a normal wait_queue_t, so
106 * we can wake only the relevant ones (hashed queues may be shared).
108 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
109 * It is considered woken when list_empty(&q->list) || q->lock_ptr == 0.
110 * The order of wakup is always to make the first condition true, then
111 * wake up q->waiters, then make the second condition true.
114 struct list_head list
;
115 wait_queue_head_t waiters
;
117 /* Which hash list lock to use: */
118 spinlock_t
*lock_ptr
;
120 /* Key which the futex is hashed on: */
123 /* For fd, sigio sent using these: */
127 /* Optional priority inheritance state: */
128 struct futex_pi_state
*pi_state
;
129 struct task_struct
*task
;
133 * Split the global futex_lock into every hash list lock.
135 struct futex_hash_bucket
{
137 struct list_head chain
;
140 static struct futex_hash_bucket futex_queues
[1<<FUTEX_HASHBITS
];
142 /* Futex-fs vfsmount entry: */
143 static struct vfsmount
*futex_mnt
;
146 * We hash on the keys returned from get_futex_key (see below).
148 static struct futex_hash_bucket
*hash_futex(union futex_key
*key
)
150 u32 hash
= jhash2((u32
*)&key
->both
.word
,
151 (sizeof(key
->both
.word
)+sizeof(key
->both
.ptr
))/4,
153 return &futex_queues
[hash
& ((1 << FUTEX_HASHBITS
)-1)];
157 * Return 1 if two futex_keys are equal, 0 otherwise.
159 static inline int match_futex(union futex_key
*key1
, union futex_key
*key2
)
161 return (key1
->both
.word
== key2
->both
.word
162 && key1
->both
.ptr
== key2
->both
.ptr
163 && key1
->both
.offset
== key2
->both
.offset
);
167 * Get parameters which are the keys for a futex.
169 * For shared mappings, it's (page->index, vma->vm_file->f_path.dentry->d_inode,
170 * offset_within_page). For private mappings, it's (uaddr, current->mm).
171 * We can usually work out the index without swapping in the page.
173 * Returns: 0, or negative error code.
174 * The key words are stored in *key on success.
176 * Should be called with ¤t->mm->mmap_sem but NOT any spinlocks.
178 static int get_futex_key(u32 __user
*uaddr
, union futex_key
*key
)
180 unsigned long address
= (unsigned long)uaddr
;
181 struct mm_struct
*mm
= current
->mm
;
182 struct vm_area_struct
*vma
;
187 * The futex address must be "naturally" aligned.
189 key
->both
.offset
= address
% PAGE_SIZE
;
190 if (unlikely((key
->both
.offset
% sizeof(u32
)) != 0))
192 address
-= key
->both
.offset
;
195 * The futex is hashed differently depending on whether
196 * it's in a shared or private mapping. So check vma first.
198 vma
= find_extend_vma(mm
, address
);
205 if (unlikely((vma
->vm_flags
& (VM_IO
|VM_READ
)) != VM_READ
))
206 return (vma
->vm_flags
& VM_IO
) ? -EPERM
: -EACCES
;
209 * Private mappings are handled in a simple way.
211 * NOTE: When userspace waits on a MAP_SHARED mapping, even if
212 * it's a read-only handle, it's expected that futexes attach to
213 * the object not the particular process. Therefore we use
214 * VM_MAYSHARE here, not VM_SHARED which is restricted to shared
215 * mappings of _writable_ handles.
217 if (likely(!(vma
->vm_flags
& VM_MAYSHARE
))) {
218 key
->private.mm
= mm
;
219 key
->private.address
= address
;
224 * Linear file mappings are also simple.
226 key
->shared
.inode
= vma
->vm_file
->f_path
.dentry
->d_inode
;
227 key
->both
.offset
++; /* Bit 0 of offset indicates inode-based key. */
228 if (likely(!(vma
->vm_flags
& VM_NONLINEAR
))) {
229 key
->shared
.pgoff
= (((address
- vma
->vm_start
) >> PAGE_SHIFT
)
235 * We could walk the page table to read the non-linear
236 * pte, and get the page index without fetching the page
237 * from swap. But that's a lot of code to duplicate here
238 * for a rare case, so we simply fetch the page.
240 err
= get_user_pages(current
, mm
, address
, 1, 0, 0, &page
, NULL
);
243 page
->index
<< (PAGE_CACHE_SHIFT
- PAGE_SHIFT
);
251 * Take a reference to the resource addressed by a key.
252 * Can be called while holding spinlocks.
254 * NOTE: mmap_sem MUST be held between get_futex_key() and calling this
255 * function, if it is called at all. mmap_sem keeps key->shared.inode valid.
257 static inline void get_key_refs(union futex_key
*key
)
259 if (key
->both
.ptr
!= 0) {
260 if (key
->both
.offset
& 1)
261 atomic_inc(&key
->shared
.inode
->i_count
);
263 atomic_inc(&key
->private.mm
->mm_count
);
268 * Drop a reference to the resource addressed by a key.
269 * The hash bucket spinlock must not be held.
271 static void drop_key_refs(union futex_key
*key
)
273 if (key
->both
.ptr
!= 0) {
274 if (key
->both
.offset
& 1)
275 iput(key
->shared
.inode
);
277 mmdrop(key
->private.mm
);
281 static inline int get_futex_value_locked(u32
*dest
, u32 __user
*from
)
286 ret
= __copy_from_user_inatomic(dest
, from
, sizeof(u32
));
289 return ret
? -EFAULT
: 0;
293 * Fault handling. Called with current->mm->mmap_sem held.
295 static int futex_handle_fault(unsigned long address
, int attempt
)
297 struct vm_area_struct
* vma
;
298 struct mm_struct
*mm
= current
->mm
;
300 if (attempt
> 2 || !(vma
= find_vma(mm
, address
)) ||
301 vma
->vm_start
> address
|| !(vma
->vm_flags
& VM_WRITE
))
304 switch (handle_mm_fault(mm
, vma
, address
, 1)) {
320 static int refill_pi_state_cache(void)
322 struct futex_pi_state
*pi_state
;
324 if (likely(current
->pi_state_cache
))
327 pi_state
= kzalloc(sizeof(*pi_state
), GFP_KERNEL
);
332 INIT_LIST_HEAD(&pi_state
->list
);
333 /* pi_mutex gets initialized later */
334 pi_state
->owner
= NULL
;
335 atomic_set(&pi_state
->refcount
, 1);
337 current
->pi_state_cache
= pi_state
;
342 static struct futex_pi_state
* alloc_pi_state(void)
344 struct futex_pi_state
*pi_state
= current
->pi_state_cache
;
347 current
->pi_state_cache
= NULL
;
352 static void free_pi_state(struct futex_pi_state
*pi_state
)
354 if (!atomic_dec_and_test(&pi_state
->refcount
))
358 * If pi_state->owner is NULL, the owner is most probably dying
359 * and has cleaned up the pi_state already
361 if (pi_state
->owner
) {
362 spin_lock_irq(&pi_state
->owner
->pi_lock
);
363 list_del_init(&pi_state
->list
);
364 spin_unlock_irq(&pi_state
->owner
->pi_lock
);
366 rt_mutex_proxy_unlock(&pi_state
->pi_mutex
, pi_state
->owner
);
369 if (current
->pi_state_cache
)
373 * pi_state->list is already empty.
374 * clear pi_state->owner.
375 * refcount is at 0 - put it back to 1.
377 pi_state
->owner
= NULL
;
378 atomic_set(&pi_state
->refcount
, 1);
379 current
->pi_state_cache
= pi_state
;
384 * Look up the task based on what TID userspace gave us.
387 static struct task_struct
* futex_find_get_task(pid_t pid
)
389 struct task_struct
*p
;
392 p
= find_task_by_pid(pid
);
394 if (!p
|| ((current
->euid
!= p
->euid
) && (current
->euid
!= p
->uid
)))
405 * This task is holding PI mutexes at exit time => bad.
406 * Kernel cleans up PI-state, but userspace is likely hosed.
407 * (Robust-futex cleanup is separate and might save the day for userspace.)
409 void exit_pi_state_list(struct task_struct
*curr
)
411 struct list_head
*next
, *head
= &curr
->pi_state_list
;
412 struct futex_pi_state
*pi_state
;
413 struct futex_hash_bucket
*hb
;
417 * We are a ZOMBIE and nobody can enqueue itself on
418 * pi_state_list anymore, but we have to be careful
419 * versus waiters unqueueing themselves:
421 spin_lock_irq(&curr
->pi_lock
);
422 while (!list_empty(head
)) {
425 pi_state
= list_entry(next
, struct futex_pi_state
, list
);
427 hb
= hash_futex(&key
);
428 spin_unlock_irq(&curr
->pi_lock
);
430 spin_lock(&hb
->lock
);
432 spin_lock_irq(&curr
->pi_lock
);
434 * We dropped the pi-lock, so re-check whether this
435 * task still owns the PI-state:
437 if (head
->next
!= next
) {
438 spin_unlock(&hb
->lock
);
442 WARN_ON(pi_state
->owner
!= curr
);
443 WARN_ON(list_empty(&pi_state
->list
));
444 list_del_init(&pi_state
->list
);
445 pi_state
->owner
= NULL
;
446 spin_unlock_irq(&curr
->pi_lock
);
448 rt_mutex_unlock(&pi_state
->pi_mutex
);
450 spin_unlock(&hb
->lock
);
452 spin_lock_irq(&curr
->pi_lock
);
454 spin_unlock_irq(&curr
->pi_lock
);
458 lookup_pi_state(u32 uval
, struct futex_hash_bucket
*hb
, struct futex_q
*me
)
460 struct futex_pi_state
*pi_state
= NULL
;
461 struct futex_q
*this, *next
;
462 struct list_head
*head
;
463 struct task_struct
*p
;
464 pid_t pid
= uval
& FUTEX_TID_MASK
;
468 list_for_each_entry_safe(this, next
, head
, list
) {
469 if (match_futex(&this->key
, &me
->key
)) {
471 * Another waiter already exists - bump up
472 * the refcount and return its pi_state:
474 pi_state
= this->pi_state
;
476 * Userspace might have messed up non PI and PI futexes
478 if (unlikely(!pi_state
))
481 WARN_ON(!atomic_read(&pi_state
->refcount
));
482 WARN_ON(pid
&& pi_state
->owner
&&
483 pi_state
->owner
->pid
!= pid
);
485 atomic_inc(&pi_state
->refcount
);
486 me
->pi_state
= pi_state
;
493 * We are the first waiter - try to look up the real owner and attach
494 * the new pi_state to it, but bail out when TID = 0
498 p
= futex_find_get_task(pid
);
503 * We need to look at the task state flags to figure out,
504 * whether the task is exiting. To protect against the do_exit
505 * change of the task flags, we do this protected by
508 spin_lock_irq(&p
->pi_lock
);
509 if (unlikely(p
->flags
& PF_EXITING
)) {
511 * The task is on the way out. When PF_EXITPIDONE is
512 * set, we know that the task has finished the
515 int ret
= (p
->flags
& PF_EXITPIDONE
) ? -ESRCH
: -EAGAIN
;
517 spin_unlock_irq(&p
->pi_lock
);
522 pi_state
= alloc_pi_state();
525 * Initialize the pi_mutex in locked state and make 'p'
528 rt_mutex_init_proxy_locked(&pi_state
->pi_mutex
, p
);
530 /* Store the key for possible exit cleanups: */
531 pi_state
->key
= me
->key
;
533 WARN_ON(!list_empty(&pi_state
->list
));
534 list_add(&pi_state
->list
, &p
->pi_state_list
);
536 spin_unlock_irq(&p
->pi_lock
);
540 me
->pi_state
= pi_state
;
546 * The hash bucket lock must be held when this is called.
547 * Afterwards, the futex_q must not be accessed.
549 static void wake_futex(struct futex_q
*q
)
551 list_del_init(&q
->list
);
553 send_sigio(&q
->filp
->f_owner
, q
->fd
, POLL_IN
);
555 * The lock in wake_up_all() is a crucial memory barrier after the
556 * list_del_init() and also before assigning to q->lock_ptr.
558 wake_up_all(&q
->waiters
);
560 * The waiting task can free the futex_q as soon as this is written,
561 * without taking any locks. This must come last.
563 * A memory barrier is required here to prevent the following store
564 * to lock_ptr from getting ahead of the wakeup. Clearing the lock
565 * at the end of wake_up_all() does not prevent this store from
572 static int wake_futex_pi(u32 __user
*uaddr
, u32 uval
, struct futex_q
*this)
574 struct task_struct
*new_owner
;
575 struct futex_pi_state
*pi_state
= this->pi_state
;
581 spin_lock(&pi_state
->pi_mutex
.wait_lock
);
582 new_owner
= rt_mutex_next_owner(&pi_state
->pi_mutex
);
585 * This happens when we have stolen the lock and the original
586 * pending owner did not enqueue itself back on the rt_mutex.
587 * Thats not a tragedy. We know that way, that a lock waiter
588 * is on the fly. We make the futex_q waiter the pending owner.
591 new_owner
= this->task
;
594 * We pass it to the next owner. (The WAITERS bit is always
595 * kept enabled while there is PI state around. We must also
596 * preserve the owner died bit.)
598 if (!(uval
& FUTEX_OWNER_DIED
)) {
601 newval
= FUTEX_WAITERS
| new_owner
->pid
;
604 curval
= futex_atomic_cmpxchg_inatomic(uaddr
, uval
, newval
);
607 if (curval
== -EFAULT
)
612 spin_unlock(&pi_state
->pi_mutex
.wait_lock
);
617 spin_lock_irq(&pi_state
->owner
->pi_lock
);
618 WARN_ON(list_empty(&pi_state
->list
));
619 list_del_init(&pi_state
->list
);
620 spin_unlock_irq(&pi_state
->owner
->pi_lock
);
622 spin_lock_irq(&new_owner
->pi_lock
);
623 WARN_ON(!list_empty(&pi_state
->list
));
624 list_add(&pi_state
->list
, &new_owner
->pi_state_list
);
625 pi_state
->owner
= new_owner
;
626 spin_unlock_irq(&new_owner
->pi_lock
);
628 spin_unlock(&pi_state
->pi_mutex
.wait_lock
);
629 rt_mutex_unlock(&pi_state
->pi_mutex
);
634 static int unlock_futex_pi(u32 __user
*uaddr
, u32 uval
)
639 * There is no waiter, so we unlock the futex. The owner died
640 * bit has not to be preserved here. We are the owner:
643 oldval
= futex_atomic_cmpxchg_inatomic(uaddr
, uval
, 0);
646 if (oldval
== -EFAULT
)
655 * Express the locking dependencies for lockdep:
658 double_lock_hb(struct futex_hash_bucket
*hb1
, struct futex_hash_bucket
*hb2
)
661 spin_lock(&hb1
->lock
);
663 spin_lock_nested(&hb2
->lock
, SINGLE_DEPTH_NESTING
);
664 } else { /* hb1 > hb2 */
665 spin_lock(&hb2
->lock
);
666 spin_lock_nested(&hb1
->lock
, SINGLE_DEPTH_NESTING
);
671 * Wake up all waiters hashed on the physical page that is mapped
672 * to this virtual address:
674 static int futex_wake(u32 __user
*uaddr
, int nr_wake
)
676 struct futex_hash_bucket
*hb
;
677 struct futex_q
*this, *next
;
678 struct list_head
*head
;
682 down_read(¤t
->mm
->mmap_sem
);
684 ret
= get_futex_key(uaddr
, &key
);
685 if (unlikely(ret
!= 0))
688 hb
= hash_futex(&key
);
689 spin_lock(&hb
->lock
);
692 list_for_each_entry_safe(this, next
, head
, list
) {
693 if (match_futex (&this->key
, &key
)) {
694 if (this->pi_state
) {
699 if (++ret
>= nr_wake
)
704 spin_unlock(&hb
->lock
);
706 up_read(¤t
->mm
->mmap_sem
);
711 * Wake up all waiters hashed on the physical page that is mapped
712 * to this virtual address:
715 futex_wake_op(u32 __user
*uaddr1
, u32 __user
*uaddr2
,
716 int nr_wake
, int nr_wake2
, int op
)
718 union futex_key key1
, key2
;
719 struct futex_hash_bucket
*hb1
, *hb2
;
720 struct list_head
*head
;
721 struct futex_q
*this, *next
;
722 int ret
, op_ret
, attempt
= 0;
725 down_read(¤t
->mm
->mmap_sem
);
727 ret
= get_futex_key(uaddr1
, &key1
);
728 if (unlikely(ret
!= 0))
730 ret
= get_futex_key(uaddr2
, &key2
);
731 if (unlikely(ret
!= 0))
734 hb1
= hash_futex(&key1
);
735 hb2
= hash_futex(&key2
);
738 double_lock_hb(hb1
, hb2
);
740 op_ret
= futex_atomic_op_inuser(op
, uaddr2
);
741 if (unlikely(op_ret
< 0)) {
744 spin_unlock(&hb1
->lock
);
746 spin_unlock(&hb2
->lock
);
750 * we don't get EFAULT from MMU faults if we don't have an MMU,
751 * but we might get them from range checking
757 if (unlikely(op_ret
!= -EFAULT
)) {
763 * futex_atomic_op_inuser needs to both read and write
764 * *(int __user *)uaddr2, but we can't modify it
765 * non-atomically. Therefore, if get_user below is not
766 * enough, we need to handle the fault ourselves, while
767 * still holding the mmap_sem.
770 if (futex_handle_fault((unsigned long)uaddr2
,
779 * If we would have faulted, release mmap_sem,
780 * fault it in and start all over again.
782 up_read(¤t
->mm
->mmap_sem
);
784 ret
= get_user(dummy
, uaddr2
);
793 list_for_each_entry_safe(this, next
, head
, list
) {
794 if (match_futex (&this->key
, &key1
)) {
796 if (++ret
>= nr_wake
)
805 list_for_each_entry_safe(this, next
, head
, list
) {
806 if (match_futex (&this->key
, &key2
)) {
808 if (++op_ret
>= nr_wake2
)
815 spin_unlock(&hb1
->lock
);
817 spin_unlock(&hb2
->lock
);
819 up_read(¤t
->mm
->mmap_sem
);
824 * Requeue all waiters hashed on one physical page to another
827 static int futex_requeue(u32 __user
*uaddr1
, u32 __user
*uaddr2
,
828 int nr_wake
, int nr_requeue
, u32
*cmpval
)
830 union futex_key key1
, key2
;
831 struct futex_hash_bucket
*hb1
, *hb2
;
832 struct list_head
*head1
;
833 struct futex_q
*this, *next
;
834 int ret
, drop_count
= 0;
837 down_read(¤t
->mm
->mmap_sem
);
839 ret
= get_futex_key(uaddr1
, &key1
);
840 if (unlikely(ret
!= 0))
842 ret
= get_futex_key(uaddr2
, &key2
);
843 if (unlikely(ret
!= 0))
846 hb1
= hash_futex(&key1
);
847 hb2
= hash_futex(&key2
);
849 double_lock_hb(hb1
, hb2
);
851 if (likely(cmpval
!= NULL
)) {
854 ret
= get_futex_value_locked(&curval
, uaddr1
);
857 spin_unlock(&hb1
->lock
);
859 spin_unlock(&hb2
->lock
);
862 * If we would have faulted, release mmap_sem, fault
863 * it in and start all over again.
865 up_read(¤t
->mm
->mmap_sem
);
867 ret
= get_user(curval
, uaddr1
);
874 if (curval
!= *cmpval
) {
881 list_for_each_entry_safe(this, next
, head1
, list
) {
882 if (!match_futex (&this->key
, &key1
))
884 if (++ret
<= nr_wake
) {
888 * If key1 and key2 hash to the same bucket, no need to
891 if (likely(head1
!= &hb2
->chain
)) {
892 list_move_tail(&this->list
, &hb2
->chain
);
893 this->lock_ptr
= &hb2
->lock
;
899 if (ret
- nr_wake
>= nr_requeue
)
905 spin_unlock(&hb1
->lock
);
907 spin_unlock(&hb2
->lock
);
909 /* drop_key_refs() must be called outside the spinlocks. */
910 while (--drop_count
>= 0)
911 drop_key_refs(&key1
);
914 up_read(¤t
->mm
->mmap_sem
);
918 /* The key must be already stored in q->key. */
919 static inline struct futex_hash_bucket
*
920 queue_lock(struct futex_q
*q
, int fd
, struct file
*filp
)
922 struct futex_hash_bucket
*hb
;
927 init_waitqueue_head(&q
->waiters
);
929 get_key_refs(&q
->key
);
930 hb
= hash_futex(&q
->key
);
931 q
->lock_ptr
= &hb
->lock
;
933 spin_lock(&hb
->lock
);
937 static inline void __queue_me(struct futex_q
*q
, struct futex_hash_bucket
*hb
)
939 list_add_tail(&q
->list
, &hb
->chain
);
941 spin_unlock(&hb
->lock
);
945 queue_unlock(struct futex_q
*q
, struct futex_hash_bucket
*hb
)
947 spin_unlock(&hb
->lock
);
948 drop_key_refs(&q
->key
);
952 * queue_me and unqueue_me must be called as a pair, each
953 * exactly once. They are called with the hashed spinlock held.
956 /* The key must be already stored in q->key. */
957 static void queue_me(struct futex_q
*q
, int fd
, struct file
*filp
)
959 struct futex_hash_bucket
*hb
;
961 hb
= queue_lock(q
, fd
, filp
);
965 /* Return 1 if we were still queued (ie. 0 means we were woken) */
966 static int unqueue_me(struct futex_q
*q
)
968 spinlock_t
*lock_ptr
;
971 /* In the common case we don't take the spinlock, which is nice. */
973 lock_ptr
= q
->lock_ptr
;
978 * q->lock_ptr can change between reading it and
979 * spin_lock(), causing us to take the wrong lock. This
980 * corrects the race condition.
982 * Reasoning goes like this: if we have the wrong lock,
983 * q->lock_ptr must have changed (maybe several times)
984 * between reading it and the spin_lock(). It can
985 * change again after the spin_lock() but only if it was
986 * already changed before the spin_lock(). It cannot,
987 * however, change back to the original value. Therefore
988 * we can detect whether we acquired the correct lock.
990 if (unlikely(lock_ptr
!= q
->lock_ptr
)) {
991 spin_unlock(lock_ptr
);
994 WARN_ON(list_empty(&q
->list
));
999 spin_unlock(lock_ptr
);
1003 drop_key_refs(&q
->key
);
1008 * PI futexes can not be requeued and must remove themself from the
1009 * hash bucket. The hash bucket lock is held on entry and dropped here.
1011 static void unqueue_me_pi(struct futex_q
*q
, struct futex_hash_bucket
*hb
)
1013 WARN_ON(list_empty(&q
->list
));
1016 BUG_ON(!q
->pi_state
);
1017 free_pi_state(q
->pi_state
);
1020 spin_unlock(&hb
->lock
);
1022 drop_key_refs(&q
->key
);
1025 static int futex_wait(u32 __user
*uaddr
, u32 val
, unsigned long time
)
1027 struct task_struct
*curr
= current
;
1028 DECLARE_WAITQUEUE(wait
, curr
);
1029 struct futex_hash_bucket
*hb
;
1036 down_read(&curr
->mm
->mmap_sem
);
1038 ret
= get_futex_key(uaddr
, &q
.key
);
1039 if (unlikely(ret
!= 0))
1040 goto out_release_sem
;
1042 hb
= queue_lock(&q
, -1, NULL
);
1045 * Access the page AFTER the futex is queued.
1046 * Order is important:
1048 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
1049 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
1051 * The basic logical guarantee of a futex is that it blocks ONLY
1052 * if cond(var) is known to be true at the time of blocking, for
1053 * any cond. If we queued after testing *uaddr, that would open
1054 * a race condition where we could block indefinitely with
1055 * cond(var) false, which would violate the guarantee.
1057 * A consequence is that futex_wait() can return zero and absorb
1058 * a wakeup when *uaddr != val on entry to the syscall. This is
1061 * We hold the mmap semaphore, so the mapping cannot have changed
1062 * since we looked it up in get_futex_key.
1064 ret
= get_futex_value_locked(&uval
, uaddr
);
1066 if (unlikely(ret
)) {
1067 queue_unlock(&q
, hb
);
1070 * If we would have faulted, release mmap_sem, fault it in and
1071 * start all over again.
1073 up_read(&curr
->mm
->mmap_sem
);
1075 ret
= get_user(uval
, uaddr
);
1083 goto out_unlock_release_sem
;
1085 /* Only actually queue if *uaddr contained val. */
1089 * Now the futex is queued and we have checked the data, we
1090 * don't want to hold mmap_sem while we sleep.
1092 up_read(&curr
->mm
->mmap_sem
);
1095 * There might have been scheduling since the queue_me(), as we
1096 * cannot hold a spinlock across the get_user() in case it
1097 * faults, and we cannot just set TASK_INTERRUPTIBLE state when
1098 * queueing ourselves into the futex hash. This code thus has to
1099 * rely on the futex_wake() code removing us from hash when it
1103 /* add_wait_queue is the barrier after __set_current_state. */
1104 __set_current_state(TASK_INTERRUPTIBLE
);
1105 add_wait_queue(&q
.waiters
, &wait
);
1107 * !list_empty() is safe here without any lock.
1108 * q.lock_ptr != 0 is not safe, because of ordering against wakeup.
1110 if (likely(!list_empty(&q
.list
)))
1111 time
= schedule_timeout(time
);
1112 __set_current_state(TASK_RUNNING
);
1115 * NOTE: we don't remove ourselves from the waitqueue because
1116 * we are the only user of it.
1119 /* If we were woken (and unqueued), we succeeded, whatever. */
1120 if (!unqueue_me(&q
))
1125 * We expect signal_pending(current), but another thread may
1126 * have handled it for us already.
1130 out_unlock_release_sem
:
1131 queue_unlock(&q
, hb
);
1134 up_read(&curr
->mm
->mmap_sem
);
1139 * Userspace tried a 0 -> TID atomic transition of the futex value
1140 * and failed. The kernel side here does the whole locking operation:
1141 * if there are waiters then it will block, it does PI, etc. (Due to
1142 * races the kernel might see a 0 value of the futex too.)
1144 static int futex_lock_pi(u32 __user
*uaddr
, int detect
, unsigned long sec
,
1145 long nsec
, int trylock
)
1147 struct hrtimer_sleeper timeout
, *to
= NULL
;
1148 struct task_struct
*curr
= current
;
1149 struct futex_hash_bucket
*hb
;
1150 u32 uval
, newval
, curval
;
1152 int ret
, attempt
= 0;
1154 if (refill_pi_state_cache())
1157 if (sec
!= MAX_SCHEDULE_TIMEOUT
) {
1159 hrtimer_init(&to
->timer
, CLOCK_REALTIME
, HRTIMER_ABS
);
1160 hrtimer_init_sleeper(to
, current
);
1161 to
->timer
.expires
= ktime_set(sec
, nsec
);
1166 down_read(&curr
->mm
->mmap_sem
);
1168 ret
= get_futex_key(uaddr
, &q
.key
);
1169 if (unlikely(ret
!= 0))
1170 goto out_release_sem
;
1173 hb
= queue_lock(&q
, -1, NULL
);
1177 * To avoid races, we attempt to take the lock here again
1178 * (by doing a 0 -> TID atomic cmpxchg), while holding all
1179 * the locks. It will most likely not succeed.
1181 newval
= current
->pid
;
1183 pagefault_disable();
1184 curval
= futex_atomic_cmpxchg_inatomic(uaddr
, 0, newval
);
1187 if (unlikely(curval
== -EFAULT
))
1190 /* We own the lock already */
1191 if (unlikely((curval
& FUTEX_TID_MASK
) == current
->pid
)) {
1193 force_sig(SIGKILL
, current
);
1195 goto out_unlock_release_sem
;
1199 * Surprise - we got the lock. Just return
1202 if (unlikely(!curval
))
1203 goto out_unlock_release_sem
;
1206 newval
= uval
| FUTEX_WAITERS
;
1208 pagefault_disable();
1209 curval
= futex_atomic_cmpxchg_inatomic(uaddr
, uval
, newval
);
1212 if (unlikely(curval
== -EFAULT
))
1214 if (unlikely(curval
!= uval
))
1218 * We dont have the lock. Look up the PI state (or create it if
1219 * we are the first waiter):
1221 ret
= lookup_pi_state(uval
, hb
, &q
);
1223 if (unlikely(ret
)) {
1228 * Task is exiting and we just wait for the
1231 queue_unlock(&q
, hb
);
1232 up_read(&curr
->mm
->mmap_sem
);
1238 * No owner found for this futex. Check if the
1239 * OWNER_DIED bit is set to figure out whether
1240 * this is a robust futex or not.
1242 if (get_futex_value_locked(&curval
, uaddr
))
1246 * There were no waiters and the owner task lookup
1247 * failed. When the OWNER_DIED bit is set, then we
1248 * know that this is a robust futex and we actually
1249 * take the lock. This is safe as we are protected by
1250 * the hash bucket lock. We also set the waiters bit
1251 * unconditionally here, to simplify glibc handling of
1252 * multiple tasks racing to acquire the lock and
1253 * cleanup the problems which were left by the dead
1256 if (curval
& FUTEX_OWNER_DIED
) {
1258 newval
= current
->pid
|
1259 FUTEX_OWNER_DIED
| FUTEX_WAITERS
;
1261 pagefault_disable();
1262 curval
= futex_atomic_cmpxchg_inatomic(uaddr
,
1267 if (unlikely(curval
== -EFAULT
))
1269 if (unlikely(curval
!= uval
))
1274 goto out_unlock_release_sem
;
1279 * Only actually queue now that the atomic ops are done:
1284 * Now the futex is queued and we have checked the data, we
1285 * don't want to hold mmap_sem while we sleep.
1287 up_read(&curr
->mm
->mmap_sem
);
1289 WARN_ON(!q
.pi_state
);
1291 * Block on the PI mutex:
1294 ret
= rt_mutex_timed_lock(&q
.pi_state
->pi_mutex
, to
, 1);
1296 ret
= rt_mutex_trylock(&q
.pi_state
->pi_mutex
);
1297 /* Fixup the trylock return value: */
1298 ret
= ret
? 0 : -EWOULDBLOCK
;
1301 down_read(&curr
->mm
->mmap_sem
);
1302 spin_lock(q
.lock_ptr
);
1305 * Got the lock. We might not be the anticipated owner if we
1306 * did a lock-steal - fix up the PI-state in that case.
1308 if (!ret
&& q
.pi_state
->owner
!= curr
) {
1309 u32 newtid
= current
->pid
| FUTEX_WAITERS
;
1312 if (q
.pi_state
->owner
!= NULL
) {
1313 spin_lock_irq(&q
.pi_state
->owner
->pi_lock
);
1314 WARN_ON(list_empty(&q
.pi_state
->list
));
1315 list_del_init(&q
.pi_state
->list
);
1316 spin_unlock_irq(&q
.pi_state
->owner
->pi_lock
);
1318 newtid
|= FUTEX_OWNER_DIED
;
1320 q
.pi_state
->owner
= current
;
1322 spin_lock_irq(¤t
->pi_lock
);
1323 WARN_ON(!list_empty(&q
.pi_state
->list
));
1324 list_add(&q
.pi_state
->list
, ¤t
->pi_state_list
);
1325 spin_unlock_irq(¤t
->pi_lock
);
1328 * We own it, so we have to replace the pending owner
1329 * TID. This must be atomic as we have to preserve the
1330 * owner died bit here.
1332 ret
= get_futex_value_locked(&uval
, uaddr
);
1334 newval
= (uval
& FUTEX_OWNER_DIED
) | newtid
;
1336 pagefault_disable();
1337 curval
= futex_atomic_cmpxchg_inatomic(uaddr
,
1341 if (curval
== -EFAULT
)
1349 * Catch the rare case, where the lock was released
1350 * when we were on the way back before we locked
1353 if (q
.pi_state
->owner
== curr
&&
1354 rt_mutex_trylock(&q
.pi_state
->pi_mutex
)) {
1358 * Paranoia check. If we did not take the lock
1359 * in the trylock above, then we should not be
1360 * the owner of the rtmutex, neither the real
1361 * nor the pending one:
1363 if (rt_mutex_owner(&q
.pi_state
->pi_mutex
) == curr
)
1364 printk(KERN_ERR
"futex_lock_pi: ret = %d "
1365 "pi-mutex: %p pi-state %p\n", ret
,
1366 q
.pi_state
->pi_mutex
.owner
,
1370 /* Unqueue and drop the lock */
1371 unqueue_me_pi(&q
, hb
);
1372 up_read(&curr
->mm
->mmap_sem
);
1374 if (!detect
&& ret
== -EDEADLK
&& 0)
1375 force_sig(SIGKILL
, current
);
1377 return ret
!= -EINTR
? ret
: -ERESTARTNOINTR
;
1379 out_unlock_release_sem
:
1380 queue_unlock(&q
, hb
);
1383 up_read(&curr
->mm
->mmap_sem
);
1388 * We have to r/w *(int __user *)uaddr, but we can't modify it
1389 * non-atomically. Therefore, if get_user below is not
1390 * enough, we need to handle the fault ourselves, while
1391 * still holding the mmap_sem.
1393 * ... and hb->lock. :-) --ANK
1395 queue_unlock(&q
, hb
);
1398 ret
= futex_handle_fault((unsigned long)uaddr
, attempt
);
1400 goto out_release_sem
;
1401 goto retry_unlocked
;
1404 up_read(&curr
->mm
->mmap_sem
);
1406 ret
= get_user(uval
, uaddr
);
1407 if (!ret
&& (uval
!= -EFAULT
))
1414 * Userspace attempted a TID -> 0 atomic transition, and failed.
1415 * This is the in-kernel slowpath: we look up the PI state (if any),
1416 * and do the rt-mutex unlock.
1418 static int futex_unlock_pi(u32 __user
*uaddr
)
1420 struct futex_hash_bucket
*hb
;
1421 struct futex_q
*this, *next
;
1423 struct list_head
*head
;
1424 union futex_key key
;
1425 int ret
, attempt
= 0;
1428 if (get_user(uval
, uaddr
))
1431 * We release only a lock we actually own:
1433 if ((uval
& FUTEX_TID_MASK
) != current
->pid
)
1436 * First take all the futex related locks:
1438 down_read(¤t
->mm
->mmap_sem
);
1440 ret
= get_futex_key(uaddr
, &key
);
1441 if (unlikely(ret
!= 0))
1444 hb
= hash_futex(&key
);
1446 spin_lock(&hb
->lock
);
1449 * To avoid races, try to do the TID -> 0 atomic transition
1450 * again. If it succeeds then we can return without waking
1453 if (!(uval
& FUTEX_OWNER_DIED
)) {
1454 pagefault_disable();
1455 uval
= futex_atomic_cmpxchg_inatomic(uaddr
, current
->pid
, 0);
1459 if (unlikely(uval
== -EFAULT
))
1462 * Rare case: we managed to release the lock atomically,
1463 * no need to wake anyone else up:
1465 if (unlikely(uval
== current
->pid
))
1469 * Ok, other tasks may need to be woken up - check waiters
1470 * and do the wakeup if necessary:
1474 list_for_each_entry_safe(this, next
, head
, list
) {
1475 if (!match_futex (&this->key
, &key
))
1477 ret
= wake_futex_pi(uaddr
, uval
, this);
1479 * The atomic access to the futex value
1480 * generated a pagefault, so retry the
1481 * user-access and the wakeup:
1488 * No waiters - kernel unlocks the futex:
1490 if (!(uval
& FUTEX_OWNER_DIED
)) {
1491 ret
= unlock_futex_pi(uaddr
, uval
);
1497 spin_unlock(&hb
->lock
);
1499 up_read(¤t
->mm
->mmap_sem
);
1505 * We have to r/w *(int __user *)uaddr, but we can't modify it
1506 * non-atomically. Therefore, if get_user below is not
1507 * enough, we need to handle the fault ourselves, while
1508 * still holding the mmap_sem.
1510 * ... and hb->lock. :-) --ANK
1512 spin_unlock(&hb
->lock
);
1515 ret
= futex_handle_fault((unsigned long)uaddr
, attempt
);
1518 goto retry_unlocked
;
1520 up_read(¤t
->mm
->mmap_sem
);
1522 ret
= get_user(uval
, uaddr
);
1523 if (!ret
&& (uval
!= -EFAULT
))
1529 static int futex_close(struct inode
*inode
, struct file
*filp
)
1531 struct futex_q
*q
= filp
->private_data
;
1539 /* This is one-shot: once it's gone off you need a new fd */
1540 static unsigned int futex_poll(struct file
*filp
,
1541 struct poll_table_struct
*wait
)
1543 struct futex_q
*q
= filp
->private_data
;
1546 poll_wait(filp
, &q
->waiters
, wait
);
1549 * list_empty() is safe here without any lock.
1550 * q->lock_ptr != 0 is not safe, because of ordering against wakeup.
1552 if (list_empty(&q
->list
))
1553 ret
= POLLIN
| POLLRDNORM
;
1558 static const struct file_operations futex_fops
= {
1559 .release
= futex_close
,
1564 * Signal allows caller to avoid the race which would occur if they
1565 * set the sigio stuff up afterwards.
1567 static int futex_fd(u32 __user
*uaddr
, int signal
)
1572 static unsigned long printk_interval
;
1574 if (printk_timed_ratelimit(&printk_interval
, 60 * 60 * 1000)) {
1575 printk(KERN_WARNING
"Process `%s' used FUTEX_FD, which "
1576 "will be removed from the kernel in June 2007\n",
1581 if (!valid_signal(signal
))
1584 ret
= get_unused_fd();
1587 filp
= get_empty_filp();
1593 filp
->f_op
= &futex_fops
;
1594 filp
->f_path
.mnt
= mntget(futex_mnt
);
1595 filp
->f_path
.dentry
= dget(futex_mnt
->mnt_root
);
1596 filp
->f_mapping
= filp
->f_path
.dentry
->d_inode
->i_mapping
;
1599 err
= __f_setown(filp
, task_pid(current
), PIDTYPE_PID
, 1);
1603 filp
->f_owner
.signum
= signal
;
1606 q
= kmalloc(sizeof(*q
), GFP_KERNEL
);
1613 down_read(¤t
->mm
->mmap_sem
);
1614 err
= get_futex_key(uaddr
, &q
->key
);
1616 if (unlikely(err
!= 0)) {
1617 up_read(¤t
->mm
->mmap_sem
);
1623 * queue_me() must be called before releasing mmap_sem, because
1624 * key->shared.inode needs to be referenced while holding it.
1626 filp
->private_data
= q
;
1628 queue_me(q
, ret
, filp
);
1629 up_read(¤t
->mm
->mmap_sem
);
1631 /* Now we map fd to filp, so userspace can access it */
1632 fd_install(ret
, filp
);
1643 * Support for robust futexes: the kernel cleans up held futexes at
1646 * Implementation: user-space maintains a per-thread list of locks it
1647 * is holding. Upon do_exit(), the kernel carefully walks this list,
1648 * and marks all locks that are owned by this thread with the
1649 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
1650 * always manipulated with the lock held, so the list is private and
1651 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
1652 * field, to allow the kernel to clean up if the thread dies after
1653 * acquiring the lock, but just before it could have added itself to
1654 * the list. There can only be one such pending lock.
1658 * sys_set_robust_list - set the robust-futex list head of a task
1659 * @head: pointer to the list-head
1660 * @len: length of the list-head, as userspace expects
1663 sys_set_robust_list(struct robust_list_head __user
*head
,
1667 * The kernel knows only one size for now:
1669 if (unlikely(len
!= sizeof(*head
)))
1672 current
->robust_list
= head
;
1678 * sys_get_robust_list - get the robust-futex list head of a task
1679 * @pid: pid of the process [zero for current task]
1680 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
1681 * @len_ptr: pointer to a length field, the kernel fills in the header size
1684 sys_get_robust_list(int pid
, struct robust_list_head __user
* __user
*head_ptr
,
1685 size_t __user
*len_ptr
)
1687 struct robust_list_head __user
*head
;
1691 head
= current
->robust_list
;
1693 struct task_struct
*p
;
1697 p
= find_task_by_pid(pid
);
1701 if ((current
->euid
!= p
->euid
) && (current
->euid
!= p
->uid
) &&
1702 !capable(CAP_SYS_PTRACE
))
1704 head
= p
->robust_list
;
1708 if (put_user(sizeof(*head
), len_ptr
))
1710 return put_user(head
, head_ptr
);
1719 * Process a futex-list entry, check whether it's owned by the
1720 * dying task, and do notification if so:
1722 int handle_futex_death(u32 __user
*uaddr
, struct task_struct
*curr
, int pi
)
1724 u32 uval
, nval
, mval
;
1727 if (get_user(uval
, uaddr
))
1730 if ((uval
& FUTEX_TID_MASK
) == curr
->pid
) {
1732 * Ok, this dying thread is truly holding a futex
1733 * of interest. Set the OWNER_DIED bit atomically
1734 * via cmpxchg, and if the value had FUTEX_WAITERS
1735 * set, wake up a waiter (if any). (We have to do a
1736 * futex_wake() even if OWNER_DIED is already set -
1737 * to handle the rare but possible case of recursive
1738 * thread-death.) The rest of the cleanup is done in
1741 mval
= (uval
& FUTEX_WAITERS
) | FUTEX_OWNER_DIED
;
1742 nval
= futex_atomic_cmpxchg_inatomic(uaddr
, uval
, mval
);
1744 if (nval
== -EFAULT
)
1751 * Wake robust non-PI futexes here. The wakeup of
1752 * PI futexes happens in exit_pi_state():
1755 if (uval
& FUTEX_WAITERS
)
1756 futex_wake(uaddr
, 1);
1763 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
1765 static inline int fetch_robust_entry(struct robust_list __user
**entry
,
1766 struct robust_list __user
* __user
*head
,
1769 unsigned long uentry
;
1771 if (get_user(uentry
, (unsigned long __user
*)head
))
1774 *entry
= (void __user
*)(uentry
& ~1UL);
1781 * Walk curr->robust_list (very carefully, it's a userspace list!)
1782 * and mark any locks found there dead, and notify any waiters.
1784 * We silently return on any sign of list-walking problem.
1786 void exit_robust_list(struct task_struct
*curr
)
1788 struct robust_list_head __user
*head
= curr
->robust_list
;
1789 struct robust_list __user
*entry
, *pending
;
1790 unsigned int limit
= ROBUST_LIST_LIMIT
, pi
, pip
;
1791 unsigned long futex_offset
;
1794 * Fetch the list head (which was registered earlier, via
1795 * sys_set_robust_list()):
1797 if (fetch_robust_entry(&entry
, &head
->list
.next
, &pi
))
1800 * Fetch the relative futex offset:
1802 if (get_user(futex_offset
, &head
->futex_offset
))
1805 * Fetch any possibly pending lock-add first, and handle it
1808 if (fetch_robust_entry(&pending
, &head
->list_op_pending
, &pip
))
1812 handle_futex_death((void __user
*)pending
+ futex_offset
, curr
, pip
);
1814 while (entry
!= &head
->list
) {
1816 * A pending lock might already be on the list, so
1817 * don't process it twice:
1819 if (entry
!= pending
)
1820 if (handle_futex_death((void __user
*)entry
+ futex_offset
,
1824 * Fetch the next entry in the list:
1826 if (fetch_robust_entry(&entry
, &entry
->next
, &pi
))
1829 * Avoid excessively long or circular lists:
1838 long do_futex(u32 __user
*uaddr
, int op
, u32 val
, unsigned long timeout
,
1839 u32 __user
*uaddr2
, u32 val2
, u32 val3
)
1845 ret
= futex_wait(uaddr
, val
, timeout
);
1848 ret
= futex_wake(uaddr
, val
);
1851 /* non-zero val means F_SETOWN(getpid()) & F_SETSIG(val) */
1852 ret
= futex_fd(uaddr
, val
);
1855 ret
= futex_requeue(uaddr
, uaddr2
, val
, val2
, NULL
);
1857 case FUTEX_CMP_REQUEUE
:
1858 ret
= futex_requeue(uaddr
, uaddr2
, val
, val2
, &val3
);
1861 ret
= futex_wake_op(uaddr
, uaddr2
, val
, val2
, val3
);
1864 ret
= futex_lock_pi(uaddr
, val
, timeout
, val2
, 0);
1866 case FUTEX_UNLOCK_PI
:
1867 ret
= futex_unlock_pi(uaddr
);
1869 case FUTEX_TRYLOCK_PI
:
1870 ret
= futex_lock_pi(uaddr
, 0, timeout
, val2
, 1);
1879 asmlinkage
long sys_futex(u32 __user
*uaddr
, int op
, u32 val
,
1880 struct timespec __user
*utime
, u32 __user
*uaddr2
,
1884 unsigned long timeout
= MAX_SCHEDULE_TIMEOUT
;
1887 if (utime
&& (op
== FUTEX_WAIT
|| op
== FUTEX_LOCK_PI
)) {
1888 if (copy_from_user(&t
, utime
, sizeof(t
)) != 0)
1890 if (!timespec_valid(&t
))
1892 if (op
== FUTEX_WAIT
)
1893 timeout
= timespec_to_jiffies(&t
) + 1;
1900 * requeue parameter in 'utime' if op == FUTEX_REQUEUE.
1902 if (op
== FUTEX_REQUEUE
|| op
== FUTEX_CMP_REQUEUE
)
1903 val2
= (u32
) (unsigned long) utime
;
1905 return do_futex(uaddr
, op
, val
, timeout
, uaddr2
, val2
, val3
);
1908 static int futexfs_get_sb(struct file_system_type
*fs_type
,
1909 int flags
, const char *dev_name
, void *data
,
1910 struct vfsmount
*mnt
)
1912 return get_sb_pseudo(fs_type
, "futex", NULL
, 0xBAD1DEA, mnt
);
1915 static struct file_system_type futex_fs_type
= {
1917 .get_sb
= futexfs_get_sb
,
1918 .kill_sb
= kill_anon_super
,
1921 static int __init
init(void)
1923 int i
= register_filesystem(&futex_fs_type
);
1928 futex_mnt
= kern_mount(&futex_fs_type
);
1929 if (IS_ERR(futex_mnt
)) {
1930 unregister_filesystem(&futex_fs_type
);
1931 return PTR_ERR(futex_mnt
);
1934 for (i
= 0; i
< ARRAY_SIZE(futex_queues
); i
++) {
1935 INIT_LIST_HEAD(&futex_queues
[i
].chain
);
1936 spin_lock_init(&futex_queues
[i
].lock
);