diff options
author | dchagin <dchagin@FreeBSD.org> | 2011-02-13 18:41:40 +0000 |
---|---|---|
committer | dchagin <dchagin@FreeBSD.org> | 2011-02-13 18:41:40 +0000 |
commit | d9864e44841f837237afc17765768d21933a21bd (patch) | |
tree | fa1c4c06505178e0b0365a1c51cd788a5dda8f22 /sys/compat/linux/linux_futex.c | |
parent | 24386b339af087345d307e303980325cd1c6d525 (diff) | |
download | FreeBSD-src-d9864e44841f837237afc17765768d21933a21bd.zip FreeBSD-src-d9864e44841f837237afc17765768d21933a21bd.tar.gz |
Stop printing the LOR, as this is expected behavior.
Diffstat (limited to 'sys/compat/linux/linux_futex.c')
-rw-r--r-- | sys/compat/linux/linux_futex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_futex.c b/sys/compat/linux/linux_futex.c index b663d53..acdf90a 100644 --- a/sys/compat/linux/linux_futex.c +++ b/sys/compat/linux/linux_futex.c @@ -88,7 +88,7 @@ struct futex_list futex_list; #define FUTEX_LOCK(f) sx_xlock(&(f)->f_lck) #define FUTEX_UNLOCK(f) sx_xunlock(&(f)->f_lck) -#define FUTEX_INIT(f) sx_init_flags(&(f)->f_lck, "ftlk", 0) +#define FUTEX_INIT(f) sx_init_flags(&(f)->f_lck, "ftlk", SX_DUPOK) #define FUTEX_DESTROY(f) sx_destroy(&(f)->f_lck) #define FUTEX_ASSERT_LOCKED(f) sx_assert(&(f)->f_lck, SA_XLOCKED) |