Comment 12 for bug 1755499

Revision history for this message
Colin Ian King (colin-king) wrote :

Looks like the wrapper in xfstests-bld/attr/libattr/syscalls.c returns the dreaded ENOSYS becuase XATTR_SYSCALLS is not defined. Silent and deadly.

#if HAVE_XATTR_SYSCALLS
# define SYSCALL(args...) syscall(args)
#else
# define SYSCALL(args...) ( errno = ENOSYS, -1 )
#endif