Hello, The ioctl() and clone() system call wrappers for AArch64 are currently written to use a conditional branch to reach the sycall error handler when the relevant system call returns an error value. The use of conditional branch for this purpose is inappropriate due to the limited range of these instructions. The generated syscall wrappers take care to use the unconditional branch form, which has greater range. This patch corrects the behavior of both wrappers. I shall commit this patch shortly. /Marcus Proposed ChangeLog: 2013-05-12 Marcus Shawcroft * sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Do not call sycall_error directly with a confitional branch. * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Do not call sycall_error directly with a confitional branch.