The problem is, that fuse_kernel.h defines
#include <sys/types.h> #define __u64 uint64_t #define __s64 int64_t #define __u32 uint32_t #define __s32 int32_t #define __u16 uint16_t
Confusing the heck out of later kernel includes.
But it works on all other architectures, so it probably should on work on aarch64 as well.
The problem is, that fuse_kernel.h defines
#include <sys/types.h>
#define __u64 uint64_t
#define __s64 int64_t
#define __u32 uint32_t
#define __s32 int32_t
#define __u16 uint16_t
Confusing the heck out of later kernel includes.
But it works on all other architectures, so it probably should on work on aarch64 as well.