[COMMITTED] Fix ia64 build error in lll_futex_timed_wait_bitset

Message ID 20140704050506.81E4A2C3988@topped-with-meat.com
State Committed
Headers

Commit Message

Roland McGrath July 4, 2014, 5:05 a.m. UTC
  Apparently nobody had been testing ia64 with --enable-kernel=recent and
nobody tested lately after the last kernel-features.h cleanup, because
it could never have compiled.


Thanks,
Roland


	* sysdeps/unix/sysv/linux/ia64/lowlevellock.h
	(lll_futex_timed_wait_bitset): Fix syscall argument count.
  

Patch

--- a/sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h
+++ b/sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h
@@ -95,7 +95,7 @@ 
 ({									   \
    int __op = FUTEX_WAIT_BITSET | (clockbit);				   \
 									   \
-   DO_INLINE_SYSCALL(futex, 4, (long) (ftx),				   \
+   DO_INLINE_SYSCALL(futex, 6, (long) (ftx),				   \
 		     __lll_private_flag (__op, private),		   \
 		     (int) (val), (long) (timespec), NULL /* Unused.  */,  \
 		     FUTEX_BITSET_MATCH_ANY);				   \