Re: [PATCH] linux-user: Fix build failure caused by missing __u64 on musl

2024-10-22 Thread Richard Henderson
On 10/22/24 05:29, Yao Zi wrote: Commit 9651cead2f ("linux-user: add openat2 support in linux-user") ships a definition of struct open_how_ver0 while assuming type __u64 is available in code, which is not the case when building QEMU on musl. Let's replaces __u64 with uint64_t. Fixes: 9651cead2f

Re: [PATCH] linux-user: Fix build failure caused by missing __u64 on musl

2024-10-22 Thread Laurent Vivier
Le 22/10/2024 à 14:29, Yao Zi a écrit : Commit 9651cead2f ("linux-user: add openat2 support in linux-user") ships a definition of struct open_how_ver0 while assuming type __u64 is available in code, which is not the case when building QEMU on musl. Let's replaces __u64 with uint64_t. Fixes: 9651

[PATCH] linux-user: Fix build failure caused by missing __u64 on musl

2024-10-22 Thread Yao Zi
Commit 9651cead2f ("linux-user: add openat2 support in linux-user") ships a definition of struct open_how_ver0 while assuming type __u64 is available in code, which is not the case when building QEMU on musl. Let's replaces __u64 with uint64_t. Fixes: 9651cead2f ("linux-user: add openat2 support i